/* Design Core Hub — Homepage V9
   Standalone homepage stylesheet built from the approved visual sketch.
   This file intentionally does not depend on the older homepage layers. */

:root{
  --bg:#04111f;
  --bg-2:#061827;
  --surface:#071c30;
  --surface-2:#0a223a;
  --surface-3:#0c2946;
  --line:rgba(127,180,233,.16);
  --line-strong:rgba(70,157,255,.34);
  --text:#f7fbff;
  --copy:#aebed1;
  --muted:#758aa1;
  --blue:#1f7cff;
  --blue-2:#4ea5ff;
  --cyan:#75c9ff;
  --green:#6fd49a;
  --container:min(1320px,calc(100vw - 84px));
  --r:14px;
  --shadow:0 24px 70px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  color:var(--text);
  background:
    radial-gradient(circle at 78% 3%,rgba(28,102,210,.17),transparent 28%),
    radial-gradient(circle at 5% 32%,rgba(18,78,144,.09),transparent 26%),
    var(--bg);
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  pointer-events:none;
  opacity:.34;
  background:
    linear-gradient(90deg,rgba(92,145,201,.025) 1px,transparent 1px),
    linear-gradient(rgba(92,145,201,.022) 1px,transparent 1px);
  background-size:64px 64px;
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
img{display:block;max-width:100%}
svg{stroke-width:1.9}
.v9-shell{width:var(--container);margin-inline:auto}
.v9-page{overflow:hidden}

/* header */
.v9-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:72px;
  border-bottom:1px solid rgba(129,180,231,.08);
  background:rgba(4,15,27,.86);
  backdrop-filter:blur(20px) saturate(130%);
}
.v9-header-inner{
  width:var(--container);
  height:100%;
  margin-inline:auto;
  display:grid;
  grid-template-columns:220px 1fr 320px;
  align-items:center;
  gap:24px;
}
.v9-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
}
.v9-mark{
  position:relative;
  width:31px;
  height:31px;
}
.v9-mark::before,
.v9-mark::after{
  content:"";
  position:absolute;
  inset:auto;
  border-radius:5px;
  background:linear-gradient(135deg,#62b8ff,#1f77ff);
}
.v9-mark::before{
  width:22px;height:22px;left:3px;top:4px;
  clip-path:polygon(0 0,68% 0,100% 50%,68% 100%,0 100%,0 68%,58% 68%,72% 50%,58% 32%,0 32%);
}
.v9-mark::after{
  width:8px;height:8px;left:3px;top:11px;background:#dff2ff;
}
.v9-brand strong{
  font-family:Manrope,sans-serif;
  font-size:14px;
  font-weight:800;
  letter-spacing:-.035em;
}
.v9-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:32px;
}
.v9-nav a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:#c7d5e4;
  font-size:11px;
  font-weight:600;
  transition:.2s ease;
}
.v9-nav a:hover{color:#fff}
.v9-nav svg{width:12px;height:12px}
.v9-head-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:13px;
}
.v9-search{
  display:grid;
  place-items:center;
  width:34px;height:34px;
  color:#dae7f5;
  border-radius:50%;
}
.v9-search:hover{background:rgba(255,255,255,.05)}
.v9-search svg{width:17px;height:17px}
.v9-head-sep{width:1px;height:28px;background:rgba(156,191,226,.18)}
.v9-signin{
  color:#d9e4ef;
  font-size:11px;
  font-weight:600;
}
.v9-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 17px;
  border:1px solid rgba(131,183,235,.2);
  border-radius:9px;
  font-size:10px;
  font-weight:750;
  transition:transform .22s ease,border-color .22s ease,background .22s ease,box-shadow .22s ease;
}
.v9-btn:hover{transform:translateY(-2px)}
.v9-btn-primary{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,#2e86ff,#1668f3);
  box-shadow:0 12px 28px rgba(31,124,255,.27);
}
.v9-btn-primary:hover{box-shadow:0 16px 36px rgba(31,124,255,.35)}
.v9-btn-ghost{
  color:#eef7ff;
  background:rgba(255,255,255,.015);
}
.v9-btn-ghost:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(111,186,255,.4);
}
.v9-btn svg{width:15px;height:15px}
.v9-menu{
  display:none;
  place-items:center;
  width:38px;height:38px;
  border:1px solid var(--line);
  border-radius:10px;
  color:#fff;
  background:transparent;
}
.v9-mobile-nav{
  display:none;
  position:absolute;
  left:20px;right:20px;top:64px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#071726;
  box-shadow:var(--shadow);
}
.v9-mobile-nav.open{display:grid}
.v9-mobile-nav a{
  padding:12px 13px;
  border-bottom:1px solid rgba(127,180,233,.08);
  color:#dce7f2;
  font-size:13px;
}
.v9-mobile-nav a:last-child{border-bottom:0}

/* shared */
.v9-eyebrow{
  display:flex;
  align-items:center;
  gap:8px;
  color:#74bff5;
  font-size:8px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.v9-eyebrow::before{
  content:"";
  width:20px;height:1px;
  background:#54aff0;
}
.v9-title{
  margin:7px 0 0;
  font-family:Manrope,sans-serif;
  font-size:clamp(30px,2.5vw,43px);
  line-height:1.03;
  letter-spacing:-.045em;
}
.v9-copy{
  margin:12px 0 0;
  color:var(--copy);
  font-size:13px;
  line-height:1.65;
}
.v9-section{
  position:relative;
  padding:58px 0 60px;
  border-top:1px solid var(--line);
}
.v9-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:25px;
}
.v9-section-link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-bottom:3px;
  color:#63b4ff;
  font-size:9px;
  font-weight:700;
}
.v9-section-link svg{width:14px;height:14px}

/* hero */
.v9-hero{
  position:relative;
  min-height:520px;
  padding:28px 0 0;
}
.v9-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 74% 31%,rgba(35,120,236,.13),transparent 31%),
    linear-gradient(130deg,rgba(12,48,83,.12),transparent 36%);
}
.v9-hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(430px,.82fr) minmax(640px,1.18fr);
  gap:54px;
  align-items:center;
  min-height:452px;
}
.v9-hero-copy{
  display:grid;
  align-content:center;
  gap:18px;
  padding:20px 0 30px;
}
.v9-hero h1{
  max-width:600px;
  margin:0;
  font-family:Manrope,sans-serif;
  font-size:clamp(54px,4.55vw,73px);
  line-height:.975;
  letter-spacing:-.064em;
  text-wrap:balance;
}
.v9-hero h1 span{color:#84ccfb}
.v9-hero .v9-copy{max-width:515px;margin-top:-1px}
.v9-hero-actions{display:flex;flex-wrap:wrap;gap:10px}
.v9-hero-actions .v9-btn{min-height:46px}
.v9-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  max-width:600px;
  margin-top:5px;
}
.v9-proof-item{
  display:grid;
  grid-template-columns:32px 1fr;
  gap:8px;
  align-items:center;
}
.v9-proof-icon{
  display:grid;
  place-items:center;
  width:32px;height:32px;
  border:1px solid rgba(82,165,243,.25);
  border-radius:50%;
  color:#77c4ff;
  background:rgba(41,102,164,.09);
}
.v9-proof-icon svg{width:15px;height:15px}
.v9-proof strong{
  display:block;
  font-size:9px;
  font-weight:700;
}
.v9-proof small{
  display:block;
  margin-top:2px;
  color:#71869d;
  font-size:7.5px;
}
.v9-hero-visual{
  position:relative;
  min-height:446px;
  margin-right:-38px;
}
.v9-hero-photo{
  position:absolute;
  inset:0;
  overflow:hidden;
  border:1px solid rgba(94,169,240,.16);
  border-radius:18px 0 0 18px;
  background:#081725;
  box-shadow:0 32px 80px rgba(0,0,0,.28);
}
.v9-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(3,12,21,.24),transparent 26%,transparent 82%,rgba(3,12,21,.08)),
    linear-gradient(180deg,transparent 60%,rgba(3,12,21,.34));
  pointer-events:none;
}
.v9-hero-photo img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  transform:scale(1.015);
}
.v9-screen-card{
  position:absolute;
  z-index:4;
  top:20%;
  left:42%;
  width:39%;
  padding:16px 17px 15px;
  border:1px solid rgba(117,190,255,.2);
  border-radius:13px;
  background:rgba(5,17,31,.86);
  box-shadow:0 18px 54px rgba(0,0,0,.3);
  backdrop-filter:blur(14px);
}
.v9-screen-card small{
  display:block;
  color:#72baf4;
  font-size:7px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.v9-screen-card strong{
  display:block;
  margin-top:5px;
  font-family:Manrope,sans-serif;
  font-size:19px;
  letter-spacing:-.04em;
}
.v9-screen-card span{
  display:block;
  margin-top:5px;
  color:#93a8bc;
  font-size:8px;
  line-height:1.45;
}
.v9-float{
  position:absolute;
  z-index:5;
  display:grid;
  grid-template-columns:35px 1fr;
  gap:9px;
  align-items:center;
  min-width:160px;
  padding:11px 12px;
  border:1px solid rgba(113,183,245,.25);
  border-radius:12px;
  background:rgba(6,25,43,.9);
  box-shadow:0 18px 48px rgba(0,0,0,.26);
  backdrop-filter:blur(12px);
}
.v9-float.left{left:-18px;top:26%}
.v9-float.right{right:5px;top:38%}
.v9-float-icon{
  display:grid;
  place-items:center;
  width:35px;height:35px;
  color:#69bbff;
  border-radius:10px;
  background:rgba(31,124,255,.16);
}
.v9-float-icon svg{width:17px;height:17px}
.v9-float strong{display:block;font-size:11px}
.v9-float small{display:block;margin-top:2px;color:#8799ab;font-size:7.5px}
.v9-float b{font-size:13px}
.v9-hero-note{
  position:absolute;
  z-index:4;
  right:18px;
  bottom:26px;
  transform:rotate(-6deg);
  color:#eef7ff;
  font-family:cursive;
  font-size:15px;
  font-weight:500;
  opacity:.88;
}

/* logos strip */
.v9-brand-strip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(5,19,33,.25);
}
.v9-brand-row{
  min-height:84px;
  display:grid;
  grid-template-columns:1.6fr repeat(7,1fr);
  gap:18px;
  align-items:center;
}
.v9-brand-label{
  color:#768a9f;
  font-size:7.5px;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.v9-brand-name{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  color:#c3cfdb;
  font-family:Manrope,sans-serif;
  font-size:11px;
  font-weight:700;
  white-space:nowrap;
  opacity:.86;
}
.v9-brand-name svg{width:17px;height:17px}

/* services */
.v9-services-grid{
  display:grid;
  grid-template-columns:minmax(310px,.7fr) minmax(650px,1.3fr);
  gap:58px;
  align-items:start;
}
.v9-services-copy{padding-top:8px}
.v9-services-copy .v9-title{max-width:410px}
.v9-services-copy .v9-copy{max-width:405px}
.v9-services-copy .v9-btn{margin-top:20px}
.v9-service-cards{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}
.v9-service-card{
  grid-column:span 2;
  min-height:158px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:12px;
  background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(255,255,255,.006)),rgba(8,27,46,.84);
  transition:.25s ease;
}
.v9-service-card:nth-child(4),
.v9-service-card:nth-child(5){grid-column:span 3}
.v9-service-card:hover{transform:translateY(-3px);border-color:var(--line-strong)}
.v9-service-top{display:flex;align-items:center;justify-content:space-between}
.v9-service-icon{
  display:grid;
  place-items:center;
  width:38px;height:38px;
  color:#6cc0ff;
  border:1px solid rgba(91,173,250,.18);
  border-radius:10px;
  background:rgba(34,108,182,.11);
}
.v9-service-icon svg{width:19px;height:19px}
.v9-service-brand{font-family:Manrope,sans-serif;font-size:17px;font-weight:800}
.v9-arrow{
  display:grid;
  place-items:center;
  width:30px;height:30px;
  border:1px solid rgba(120,180,234,.18);
  border-radius:50%;
  color:#9dcef7;
  background:rgba(255,255,255,.018);
}
.v9-arrow svg{width:13px;height:13px}
.v9-service-card h3{
  margin:17px 0 0;
  font-family:Manrope,sans-serif;
  font-size:13px;
  letter-spacing:-.02em;
}
.v9-service-card p{
  margin:6px 0 0;
  color:#889cb1;
  font-size:9.5px;
  line-height:1.5;
}

/* theme cards */
.v9-themes{background:rgba(3,12,22,.16)}
.v9-card-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.v9-showcase-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(8,27,46,.82);
  transition:.25s ease;
}
.v9-showcase-card:hover{transform:translateY(-3px);border-color:var(--line-strong)}
.v9-showcase-media{
  position:relative;
  overflow:hidden;
  aspect-ratio:1.52;
  border-bottom:1px solid var(--line);
  background:#071624;
}
.v9-showcase-media img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.v9-showcase-card:hover .v9-showcase-media img{transform:scale(1.035)}
.v9-pill{
  position:absolute;
  left:10px;bottom:9px;
  padding:4px 7px;
  border:1px solid rgba(148,202,249,.16);
  border-radius:999px;
  background:rgba(4,18,32,.8);
  color:#cfeaff;
  font-size:7px;
  font-weight:700;
}
.v9-showcase-body{
  display:grid;
  grid-template-columns:1fr 30px;
  align-items:end;
  gap:10px;
  padding:12px 12px 13px;
}
.v9-showcase-body h3{
  margin:0;
  font-family:Manrope,sans-serif;
  font-size:12px;
  letter-spacing:-.02em;
}
.v9-showcase-body span{
  display:block;
  margin-top:2px;
  color:#8ba0b6;
  font-size:8px;
}
.v9-showcase-body p{
  margin:6px 0 0;
  color:#92a6bb;
  font-size:8.5px;
  line-height:1.45;
}

/* process */
.v9-process-grid{
  display:grid;
  grid-template-columns:minmax(310px,.66fr) minmax(700px,1.34fr);
  gap:52px;
  align-items:center;
}
.v9-process-copy .v9-title{max-width:410px}
.v9-process-copy .v9-copy{max-width:380px}
.v9-process-copy .v9-btn{margin-top:18px}
.v9-steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.v9-steps::before{
  content:"";
  position:absolute;
  top:46px;
  left:20px;right:20px;
  height:1px;
  background:linear-gradient(90deg,rgba(77,158,235,.08),rgba(77,158,235,.32),rgba(77,158,235,.08));
}
.v9-step{position:relative;z-index:2}
.v9-step-no{
  display:block;
  margin-bottom:14px;
  color:#6f8ead;
  font-family:Manrope,sans-serif;
  font-size:11px;
  font-weight:700;
}
.v9-step-icon{
  display:grid;
  place-items:center;
  width:36px;height:36px;
  margin-bottom:14px;
  border:1px solid rgba(104,181,247,.25);
  border-radius:50%;
  color:#6dc1ff;
  background:#0a1d31;
  box-shadow:0 0 0 6px var(--bg);
}
.v9-step-icon svg{width:16px;height:16px}
.v9-step h3{margin:0;font-family:Manrope,sans-serif;font-size:10.5px}
.v9-step p{margin:6px 0 0;color:#8499b0;font-size:8.5px;line-height:1.5}

/* work */
.v9-work{background:rgba(5,20,35,.18)}
.v9-work .v9-showcase-media{aspect-ratio:1.4}
.v9-work .v9-showcase-body{align-items:center}
.v9-work .v9-showcase-body p{display:none}

/* why */
.v9-why{
  display:grid;
  grid-template-columns:minmax(310px,.66fr) minmax(700px,1.34fr);
  gap:52px;
  align-items:center;
}
.v9-why-copy .v9-title{max-width:410px}
.v9-why-copy .v9-copy{max-width:390px}
.v9-benefits{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.v9-benefit{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  min-height:108px;
  padding:17px 18px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.v9-benefit svg{width:20px;height:20px;color:#4eaaff}
.v9-benefit strong{display:block;font-size:10px}
.v9-benefit p{margin:4px 0 0;color:#8196ad;font-size:8.3px;line-height:1.45}

/* cta */
.v9-cta{padding:46px 0 50px}
.v9-cta-panel{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:38px;
  align-items:center;
  min-height:176px;
  padding:30px 40px;
  border:1px solid rgba(48,137,255,.5);
  border-radius:13px;
  background:
    radial-gradient(circle at 84% 45%,rgba(28,105,226,.23),transparent 28%),
    linear-gradient(120deg,rgba(9,31,53,.96),rgba(5,22,39,.98));
  box-shadow:inset 0 0 56px rgba(44,120,225,.08),0 20px 58px rgba(0,0,0,.18);
}
.v9-cta-panel::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.12;
  background:
    linear-gradient(145deg,transparent 0 45%,rgba(84,159,241,.2) 45% 46%,transparent 46%),
    linear-gradient(35deg,transparent 0 64%,rgba(84,159,241,.16) 64% 65%,transparent 65%);
}
.v9-cta-copy,.v9-cta-side{position:relative;z-index:2}
.v9-cta h2{
  max-width:520px;
  margin:6px 0 0;
  font-family:Manrope,sans-serif;
  font-size:clamp(29px,2.7vw,42px);
  line-height:1.03;
  letter-spacing:-.046em;
}
.v9-cta-side p{
  max-width:470px;
  margin:0;
  color:#a2b5c8;
  font-size:9.5px;
  line-height:1.6;
}
.v9-cta-actions{display:flex;flex-wrap:wrap;gap:9px;margin-top:14px}

/* footer */
.v9-footer{
  border-top:1px solid var(--line);
  background:#03101b;
}
.v9-footer-main{
  display:grid;
  grid-template-columns:1.45fr repeat(4,minmax(120px,.8fr));
  gap:40px;
  padding:40px 0 29px;
  border-bottom:1px solid var(--line);
}
.v9-footer-about{max-width:290px}
.v9-footer-about p{
  max-width:255px;
  margin:12px 0 0;
  color:#8498ad;
  font-size:8.5px;
  line-height:1.55;
}
.v9-socials{display:flex;gap:7px;margin-top:15px}
.v9-socials a{
  display:grid;
  place-items:center;
  width:27px;height:27px;
  color:#d0ddea;
  border:1px solid var(--line);
  border-radius:50%;
  font-size:8px;
}
.v9-footer-col h4{
  margin:1px 0 11px;
  font-size:9px;
  font-weight:700;
}
.v9-footer-col a{
  display:block;
  width:max-content;
  margin:0 0 7px;
  color:#8095aa;
  font-size:8.5px;
}
.v9-footer-col a:hover{color:#fff}
.v9-footer-bottom{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#667d95;
  font-size:7.5px;
}
.v9-footer-links{display:flex;align-items:center;gap:22px}
.v9-top{
  display:grid;
  place-items:center;
  width:27px;height:27px;
  border:1px solid var(--line);
  border-radius:50%;
  color:#b8c9da;
}
.v9-top svg{width:13px;height:13px}

/* motion */
[data-reveal]{
  opacity:0;
  transform:translate3d(0,20px,0);
  transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .78s cubic-bezier(.16,1,.3,1);
}
[data-reveal].in{opacity:1;transform:none}

/* responsive */
@media(max-width:1180px){
  :root{--container:min(100% - 48px,1320px)}
  .v9-header-inner{grid-template-columns:190px 1fr 265px}
  .v9-nav{gap:20px}
  .v9-hero-grid{grid-template-columns:minmax(360px,.8fr) minmax(520px,1.2fr);gap:36px}
  .v9-hero h1{font-size:clamp(50px,5.6vw,68px)}
  .v9-hero-visual{min-height:420px}
  .v9-services-grid,.v9-process-grid,.v9-why{gap:38px}
}
@media(max-width:980px){
  :root{--container:min(100% - 36px,1320px)}
  .v9-header-inner{grid-template-columns:1fr auto}
  .v9-nav,.v9-search,.v9-head-sep,.v9-signin,.v9-head-actions>.v9-btn{display:none}
  .v9-menu{display:grid}
  .v9-head-actions{display:flex}
  .v9-hero-grid,.v9-services-grid,.v9-process-grid,.v9-why,.v9-cta-panel{grid-template-columns:1fr}
  .v9-hero{padding-top:24px}
  .v9-hero-copy{max-width:720px}
  .v9-hero-visual{min-height:540px;margin-right:0}
  .v9-hero-photo{border-radius:18px}
  .v9-brand-row{grid-template-columns:repeat(4,1fr);padding:20px 0;gap:18px}
  .v9-brand-label{grid-column:1/-1;text-align:center}
  .v9-service-cards{margin-top:12px}
  .v9-card-grid{grid-template-columns:repeat(2,1fr)}
  .v9-process-copy,.v9-why-copy{max-width:650px}
  .v9-footer-main{grid-template-columns:1.4fr repeat(2,1fr)}
}
@media(max-width:700px){
  :root{--container:calc(100% - 28px)}
  .v9-header{height:66px}
  .v9-section{padding:48px 0 52px}
  .v9-title{font-size:clamp(29px,9vw,40px)}
  .v9-section-head{align-items:start;display:grid;gap:12px}
  .v9-hero{min-height:0;padding-top:18px}
  .v9-hero-grid{min-height:0;gap:20px}
  .v9-hero h1{font-size:clamp(43px,13vw,58px)}
  .v9-hero-actions .v9-btn{flex:1 1 170px}
  .v9-proof{grid-template-columns:1fr}
  .v9-hero-visual{min-height:355px}
  .v9-screen-card{left:12%;width:64%}
  .v9-float{display:none}
  .v9-brand-row{grid-template-columns:repeat(2,1fr)}
  .v9-service-cards{grid-template-columns:1fr}
  .v9-service-card,.v9-service-card:nth-child(4),.v9-service-card:nth-child(5){grid-column:1}
  .v9-card-grid{grid-template-columns:1fr}
  .v9-steps{grid-template-columns:1fr}
  .v9-steps::before{left:18px;right:auto;top:12px;bottom:12px;width:1px;height:auto}
  .v9-step{display:grid;grid-template-columns:36px 1fr;column-gap:14px}
  .v9-step-no{grid-column:2;margin:0 0 2px}
  .v9-step-icon{grid-column:1;grid-row:1/span 3;margin:0}
  .v9-step h3,.v9-step p{grid-column:2}
  .v9-benefits{grid-template-columns:1fr}
  .v9-cta-panel{padding:25px 22px}
  .v9-cta-actions .v9-btn{flex:1 1 160px}
  .v9-footer-main{grid-template-columns:1fr 1fr;gap:26px 22px}
  .v9-footer-about{grid-column:1/-1;max-width:100%}
  .v9-footer-bottom{align-items:flex-start;flex-direction:column;padding:18px 0}
}
@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important}
  [data-reveal]{opacity:1!important;transform:none!important;transition:none!important}
}


/* ==========================================================================
   V11 review pass — true full-width desktop layout
   The reference uses narrow viewport gutters, not a 1320px centered canvas.
   ========================================================================== */
@media (min-width:1181px){
  :root{
    --container:calc(100vw - 80px);
  }

  .v9-header-inner{
    grid-template-columns:200px minmax(0,1fr) 300px;
  }

  .v9-nav{
    gap:clamp(24px,1.7vw,34px);
  }

  .v9-hero{
    min-height:560px;
  }

  .v9-hero-grid{
    grid-template-columns:minmax(430px,.68fr) minmax(0,1.32fr);
    gap:clamp(48px,4vw,78px);
    min-height:500px;
  }

  .v9-hero-copy{
    max-width:640px;
  }

  .v9-hero-visual{
    min-height:500px;
    margin-right:0;
  }

  .v9-hero-photo{
    border-radius:18px;
  }

  .v9-services-grid,
  .v9-process-grid,
  .v9-why{
    grid-template-columns:minmax(340px,.58fr) minmax(0,1.42fr);
    gap:clamp(52px,4.2vw,82px);
  }

  .v9-card-grid{
    gap:16px;
  }

  .v9-brand-row{
    gap:24px;
  }

  .v9-service-card p,
  .v9-showcase-body p{
    font-size:10.5px;
  }

  .v9-service-card h3,
  .v9-showcase-body h3{
    font-size:13px;
  }

  .v9-footer-main{
    gap:clamp(44px,4vw,76px);
  }
}

@media (min-width:1600px){
  .v9-title{
    font-size:46px;
  }

  .v9-copy{
    font-size:14px;
  }

  .v9-service-card{
    min-height:172px;
    padding:20px;
  }

  .v9-showcase-body{
    padding:14px 14px 15px;
  }

  .v9-step p,
  .v9-benefit p{
    font-size:9.5px;
  }

  .v9-footer-about p,
  .v9-footer-col a{
    font-size:9.5px;
  }
}


/* ==========================================================================
   V12 responsive audit
   Fixes sticky-header clipping, small text, touch targets and narrow widths.
   ========================================================================== */
.v9-page{
  overflow:clip;
}

.v9-btn{font-size:11px}
.v9-eyebrow{font-size:9px}
.v9-section-link{font-size:10px}
.v9-proof strong{font-size:10px}
.v9-proof small{font-size:9px}
.v9-screen-card small{font-size:8px}
.v9-screen-card span{font-size:9px}
.v9-float small{font-size:9px}
.v9-brand-label{font-size:9px}
.v9-service-card p{font-size:10.5px}
.v9-showcase-body span{font-size:9.5px}
.v9-showcase-body p{font-size:10px}
.v9-pill{font-size:8px}
.v9-step p{font-size:9.5px}
.v9-benefit p{font-size:9.5px}
.v9-cta-side p{font-size:11px}
.v9-footer-about p,
.v9-footer-col a,
.v9-footer-bottom{font-size:10px}
.v9-footer-col h4{font-size:10px}
.v9-socials a{width:32px;height:32px;font-size:9px}
.v9-menu{width:44px;height:44px}
.v9-mobile-nav a{
  display:flex;
  align-items:center;
  min-height:44px;
}

@media(max-width:1080px){
  .v9-header-inner{
    grid-template-columns:1fr auto;
  }
  .v9-nav,
  .v9-search,
  .v9-head-sep,
  .v9-signin,
  .v9-head-actions>.v9-btn{
    display:none;
  }
  .v9-menu{display:grid}
  .v9-head-actions{display:flex}
}

@media(max-width:700px){
  .v9-copy{font-size:14px}
  .v9-service-card p,
  .v9-showcase-body p,
  .v9-step p,
  .v9-benefit p{font-size:10px}
  .v9-showcase-body span{font-size:9.5px}
  .v9-cta-side p{font-size:11px}
}

@media(max-width:460px){
  .v9-footer-main{
    grid-template-columns:1fr;
  }
  .v9-footer-about{
    grid-column:auto;
  }
  .v9-footer-links{
    flex-wrap:wrap;
    gap:12px 18px;
  }
  .v9-brand-row{
    grid-template-columns:1fr 1fr;
  }
}


/* ==========================================================================
   V13 fluid typography system
   Responsive type now scales smoothly instead of jumping between tiny px sizes.
   ========================================================================== */
:root{
  --v13-type-micro:clamp(.72rem,.69rem + .12vw,.80rem);
  --v13-type-xs:clamp(.78rem,.73rem + .20vw,.90rem);
  --v13-type-sm:clamp(.86rem,.80rem + .24vw,1rem);
  --v13-type-base:clamp(.95rem,.88rem + .28vw,1.10rem);
  --v13-type-md:clamp(1.05rem,.96rem + .36vw,1.25rem);
  --v13-type-lg:clamp(1.18rem,1.05rem + .50vw,1.50rem);
  --v13-h2:clamp(2rem,1.62rem + 1.55vw,3.25rem);
  --v13-hero:clamp(3rem,2.15rem + 3.55vw,5.35rem);
}

body{
  font-size:var(--v13-type-base);
}

.v9-brand strong{
  font-size:clamp(.92rem,.86rem + .20vw,1.05rem);
}

.v9-nav a,
.v9-signin{
  font-size:var(--v13-type-xs);
}

.v9-btn{
  font-size:var(--v13-type-xs);
}

.v9-mobile-nav a{
  font-size:var(--v13-type-sm);
}

.v9-eyebrow,
.v9-brand-label,
.v9-pill{
  font-size:var(--v13-type-micro);
}

.v9-title{
  font-size:var(--v13-h2);
}

.v9-copy{
  font-size:var(--v13-type-base);
}

.v9-section-link{
  font-size:var(--v13-type-xs);
}

.v9-hero h1{
  font-size:var(--v13-hero);
}

.v9-proof strong,
.v9-float strong,
.v9-step h3,
.v9-benefit strong{
  font-size:var(--v13-type-xs);
}

.v9-proof small,
.v9-screen-card small,
.v9-screen-card span,
.v9-float small,
.v9-brand-name,
.v9-showcase-body span,
.v9-step-no{
  font-size:var(--v13-type-micro);
}

.v9-screen-card strong{
  font-size:clamp(1.15rem,1.02rem + .55vw,1.55rem);
}

.v9-float b{
  font-size:var(--v13-type-md);
}

.v9-hero-note{
  font-size:clamp(.92rem,.84rem + .35vw,1.18rem);
}

.v9-service-brand{
  font-size:var(--v13-type-lg);
}

.v9-service-card h3,
.v9-showcase-body h3{
  font-size:var(--v13-type-sm);
}

.v9-service-card p,
.v9-showcase-body p,
.v9-step p,
.v9-benefit p{
  font-size:var(--v13-type-xs);
  line-height:1.58;
}

.v9-cta h2{
  font-size:clamp(2rem,1.62rem + 1.60vw,3.20rem);
}

.v9-cta-side p{
  font-size:var(--v13-type-sm);
}

.v9-footer-about p,
.v9-footer-col a,
.v9-footer-bottom{
  font-size:var(--v13-type-xs);
}

.v9-footer-col h4{
  font-size:var(--v13-type-sm);
}

.v9-socials a{
  font-size:var(--v13-type-micro);
}

@media(max-width:700px){
  .v9-hero h1{
    font-size:clamp(2.7rem,10.5vw,4rem);
  }

  .v9-title{
    font-size:clamp(1.9rem,7.4vw,2.65rem);
  }

  .v9-copy,
  .v9-cta-side p{
    font-size:clamp(.95rem,3.6vw,1.05rem);
  }
}


/* V13 component text coverage */
.v9-service-card,
.v9-showcase-card,
.v9-step,
.v9-benefit{
  font-size:var(--v13-type-sm);
}
