/* ==========================================================================
   Orbit Interactive — Design System
   Headings: Ubuntu · Body: Inter
   Ink #3f3f3f · Blue #2766a7
   ========================================================================== */

/* ---------- Self-hosted webfonts (works offline; Google Fonts link is a fallback) ---------- */
@font-face { font-family:'Ubuntu'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/ubuntu-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Ubuntu'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/ubuntu-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Ubuntu'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/ubuntu-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('../fonts/inter-latin-700-normal.woff2') format('woff2'); }

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ink:            #3f3f3f;
  --ink-900:        #2b2b2b;
  --ink-950:        #1e1e1e;
  --blue:           #2766a7;
  --blue-700:       #1f5288;
  --blue-800:       #17406b;
  --blue-100:       #e8f0f9;
  --blue-050:       #f4f8fc;

  /* Neutrals */
  --white:          #ffffff;
  --surface:        #f7f9fb;
  --surface-2:      #eef2f6;
  --border:         #e2e8f0;
  --border-strong:  #cbd5e1;
  --muted:          #64707d;
  --muted-2:        #8a95a1;

  /* Accents (used sparingly, for data + status) */
  --teal:           #0f9b8e;
  --amber:          #d98324;

  /* Type */
  --font-head: 'Ubuntu', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.89rem);
  --step-0:  clamp(1rem, 0.97rem + 0.16vw, 1.075rem);
  --step-1:  clamp(1.18rem, 1.11rem + 0.34vw, 1.38rem);
  --step-2:  clamp(1.42rem, 1.29rem + 0.63vw, 1.8rem);
  --step-3:  clamp(1.72rem, 1.48rem + 1.15vw, 2.4rem);
  --step-4:  clamp(2.05rem, 1.65rem + 1.95vw, 3.2rem);
  --step-5:  clamp(2.25rem, 1.72rem + 2.5vw, 3.5rem);

  /* Space */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;

  /* Shape */
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 26px; --r-full: 999px;

  /* Elevation — soft, never heavy */
  --sh-1: 0 1px 2px rgba(31,45,61,.05), 0 1px 3px rgba(31,45,61,.04);
  --sh-2: 0 2px 4px rgba(31,45,61,.04), 0 8px 20px rgba(31,45,61,.06);
  --sh-3: 0 4px 8px rgba(31,45,61,.05), 0 18px 40px rgba(31,45,61,.09);
  --sh-blue: 0 8px 24px rgba(39,102,167,.22);

  --maxw: 1200px;
  --maxw-narrow: 760px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-700); }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2rem); }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--surface { background: var(--surface); }
.section--blue-tint { background: linear-gradient(180deg, var(--blue-050), var(--white)); }
.section--dark { background: var(--ink-900); color: #dfe3e8; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--60 { grid-template-columns: 1.15fr 0.85fr; }
@media (max-width: 940px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--60 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
}

/* ---------- Typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-4);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }
.section--dark .eyebrow { color: #7fb0e0; }
.section--dark .eyebrow::before { background: #7fb0e0; }

.lede { font-size: var(--step-1); color: var(--muted); line-height: 1.6; }
.section--dark .lede { color: #b9c2cc; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.muted { color: var(--muted); }
.mt-3 { margin-top: var(--sp-3); } .mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); } .mt-6 { margin-top: var(--sp-6); }
.mb-4 { margin-bottom: var(--sp-4); } .mb-5 { margin-bottom: var(--sp-5); }
.prose p + p { margin-top: var(--sp-4); }
.prose h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose ul { margin-top: var(--sp-4); display: grid; gap: .65rem; }
.prose ul li { position: relative; padding-left: 1.75rem; color: var(--muted); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 0 4px var(--blue-100);
}
.prose ul li strong { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  padding: .82rem 1.5rem; border-radius: var(--r-full);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn--primary:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--onDark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--onDark:hover { background: #fff; color: var(--ink-900); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .95rem; }
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--border); box-shadow: 0 1px 14px rgba(31,45,61,.05); }
.topbar { background: var(--ink-900); color: #c9d1d9; font-size: .82rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; flex-wrap: wrap; }
.topbar a { color: #c9d1d9; }
.topbar a:hover { color: #fff; }
.topbar-items { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.topbar-badge { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 760px) { .topbar { display: none; } }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .8rem; border-radius: var(--r-sm);
  font-weight: 500; font-size: .95rem; color: var(--ink);
}
.nav-links > li > a:hover, .nav-links > li.is-active > a { background: var(--blue-050); color: var(--blue); }
.nav-links .caret { width: 9px; height: 9px; margin-top: 1px; transition: transform .2s ease; }
.nav-links > li:hover .caret { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: min(760px, 88vw); background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-3);
  padding: 1.25rem; opacity: 0; visibility: hidden; transition: all .2s ease;
  display: grid; grid-template-columns: 1fr 1fr; gap: .35rem;
}
.nav-links > li:hover .mega, .nav-links > li:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega a { display: flex; gap: .8rem; padding: .7rem .8rem; border-radius: var(--r-md); align-items: flex-start; }
.mega a:hover { background: var(--surface); }
.mega .mi { width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px; background: var(--blue-100); display: grid; place-items: center; color: var(--blue); }
.mega .mi svg { width: 17px; height: 17px; }
.mega strong { display: block; font-size: .93rem; color: var(--ink-900); font-weight: 600; }
.mega span { display: block; font-size: .8rem; color: var(--muted); line-height: 1.45; }
.mega-foot { grid-column: 1 / -1; margin-top: .5rem; padding-top: .9rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .87rem; }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--border-strong); border-radius: var(--r-sm); padding: .5rem .6rem; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-toggle span + span { margin-top: 5px; }

@media (max-width: 1080px) {
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: block; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.drawer.is-open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(20,26,33,.5); backdrop-filter: blur(2px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 88vw);
  background: #fff; padding: 1.25rem; overflow-y: auto;
  box-shadow: -20px 0 50px rgba(0,0,0,.18);
}
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.drawer__head img { height: 36px; }
.drawer__close { background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--muted); padding: .2rem .5rem; }
.drawer a.d-link { display: block; padding: .78rem .5rem; border-bottom: 1px solid var(--border); color: var(--ink); font-weight: 500; }
.drawer .d-sub a { padding-left: 1.4rem; font-size: .92rem; color: var(--muted); font-weight: 400; }
.drawer .d-head { font-family: var(--font-head); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin: 1.25rem .5rem .4rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 6.5rem); background: var(--white); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(720px 420px at 78% -8%, rgba(39,102,167,.14), transparent 62%),
    radial-gradient(560px 380px at 2% 105%, rgba(63,63,63,.07), transparent 60%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero h1 { margin-bottom: var(--sp-5); max-width: 17ch; }
.hero .lede { max-width: 56ch; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.pill {
  display: inline-flex; align-items: flex-start; gap: .55rem;
  background: var(--blue-100); color: var(--blue-800);
  padding: .4rem .95rem .4rem .55rem; border-radius: var(--r-full);
  font-size: .84rem; font-weight: 600; margin-bottom: var(--sp-5);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(15,155,142,.2); margin-top: .48em; flex-shrink: 0; }

.hero-proof { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 1.4rem 2.6rem; margin-top: clamp(2rem, 4vw, 3rem); padding-top: clamp(1.5rem, 3vw, 2.2rem); border-top: 1px solid var(--border); }
.hero-proof div strong { display: block; font-family: var(--font-head); font-size: var(--step-2); color: var(--ink-900); line-height: 1.1; }
.hero-proof div span { font-size: .87rem; color: var(--muted); }

/* Hero visual card */
.hero-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--sh-3); padding: 1.35rem; }
.hero-card__bar { display: flex; align-items: center; gap: .45rem; margin-bottom: 1.1rem; }
.hero-card__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.hero-card__bar span { margin-left: auto; font-size: .74rem; color: var(--muted-2); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-bottom: 1rem; }
.kpi {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: .8rem .85rem;
}
.kpi b { display: block; font-family: var(--font-head); font-size: 1.32rem; color: var(--ink-900); line-height: 1.15; }
.kpi small { display: block; font-size: .72rem; color: var(--muted); letter-spacing: .03em; text-transform: uppercase; font-weight: 600; margin-bottom: .3rem; }
.kpi em { font-style: normal; font-size: .74rem; font-weight: 600; color: var(--teal); }
.chart { height: 132px; width: 100%; }
.chart-legend { display: flex; gap: 1.1rem; margin-top: .75rem; font-size: .76rem; color: var(--muted); }
.chart-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: .35rem; }

/* ---------- Logo strip ---------- */
.logo-strip { border-block: 1px solid var(--border); background: var(--white); }
.logo-strip .wrap { padding-block: 1.9rem; }
.logo-strip p { text-align: center; font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 1.3rem; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2.4rem; }
.logo-row span {
  font-family: var(--font-head); font-weight: 500; font-size: 1.02rem;
  color: #97a2ae; letter-spacing: -.01em; transition: color .2s ease;
}
.logo-row span:hover { color: var(--ink); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card { position: relative; }
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--border-strong); }
.card h3 { font-size: var(--step-1); margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card .link-arrow { margin-top: auto; padding-top: 1.1rem; }
.card__icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--blue-100); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 1.05rem;
}
.card__icon svg { width: 22px; height: 22px; }
.card--feature { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.card--flat { border: 1px solid var(--border); background: var(--surface); }
.card--flat:hover { transform: none; box-shadow: none; }

.tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--blue); background: var(--blue-100); padding: .25rem .6rem; border-radius: var(--r-full); margin-bottom: .8rem; align-self: flex-start; }
.tag--new { color: #0b7a6f; background: #e2f5f2; }
.card > .tag { position: absolute; top: 1.15rem; right: 1.15rem; margin: 0; }

/* ---------- Answer block (AEO) ---------- */
.answer {
  background: var(--blue-050); border: 1px solid #d5e4f3;
  border-left: 4px solid var(--blue);
  border-radius: var(--r-md); padding: 1.35rem 1.5rem;
  margin-block: var(--sp-5);
}
.answer h2, .answer h3, .answer p.answer__q {
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 700;
  color: var(--blue-800); margin-bottom: .55rem; letter-spacing: 0;
}
.answer p { color: var(--ink); font-size: 1rem; }
.answer p + p { margin-top: .7rem; }

/* ---------- Stats ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stat-band div { background: #fff; padding: clamp(1.4rem, 3vw, 2.1rem) 1.25rem; text-align: center; }
.stat-band strong { display: block; font-family: var(--font-head); font-size: var(--step-3); color: var(--blue); line-height: 1.1; }
.stat-band span { display: block; font-size: .88rem; color: var(--muted); margin-top: .35rem; }
.section--dark .stat-band { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.14); }
.section--dark .stat-band div { background: var(--ink-900); }
.section--dark .stat-band strong { color: #7fb0e0; }
.section--dark .stat-band span { color: #aab4bf; }
@media (max-width: 720px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; grid-template-columns: repeat(4, 1fr); }
.steps > li { counter-increment: s; background: #fff; padding: clamp(1.4rem, 2.6vw, 1.9rem); }
.steps > li::before {
  content: "0" counter(s); display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.5rem; color: var(--blue); opacity: .35; margin-bottom: .7rem;
}
.steps h3 { font-size: 1.06rem; margin-bottom: .45rem; }
.steps p { font-size: .92rem; color: var(--muted); }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Checklist ---------- */
.checks { display: grid; gap: .8rem; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; font-size: .97rem; }
.checks li::before {
  content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue); font-size: .74rem; font-weight: 700;
  display: grid; place-items: center; margin-top: .18em;
}
.section--dark .checks li::before { background: rgba(127,176,224,.18); color: #9cc5ea; }
.checks--2 { grid-template-columns: 1fr 1fr; gap: .8rem 2rem; }
@media (max-width: 700px) { .checks--2 { grid-template-columns: 1fr; } }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { text-align: left; padding: .95rem 1.15rem; border-bottom: 1px solid var(--border); font-size: .94rem; vertical-align: top; }
th { font-family: var(--font-head); font-size: .84rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); background: var(--surface); font-weight: 700; }
tbody tr:last-child td { border-bottom: none; }
td strong { color: var(--ink-900); }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(1.4rem, 2.6vw, 1.9rem); height: 100%; display: flex; flex-direction: column; }
.quote__stars { color: var(--amber); letter-spacing: .12em; font-size: .9rem; margin-bottom: .85rem; }
.quote p { font-size: 1.01rem; color: var(--ink); line-height: 1.6; }
.quote footer { margin-top: auto; padding-top: 1.15rem; display: flex; align-items: center; gap: .75rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: .95rem; flex-shrink: 0; }
.quote footer b { display: block; font-size: .93rem; color: var(--ink-900); }
.quote footer span { display: block; font-size: .82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq details[open] { border-color: var(--blue); box-shadow: var(--sh-1); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 3.2rem 1.1rem 1.35rem; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 1.03rem; color: var(--ink-900); line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.3rem; top: 1.45rem;
  width: 11px; height: 11px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.62rem; }
.faq .faq__a { padding: 0 1.35rem 1.25rem; color: var(--muted); font-size: .97rem; }
.faq .faq__a p + p { margin-top: .7rem; }
.faq .faq__a ul { margin-top: .6rem; display: grid; gap: .4rem; }
.faq .faq__a ul li { padding-left: 1.1rem; position: relative; }
.faq .faq__a ul li::before { content: "•"; position: absolute; left: .2rem; color: var(--blue); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink-900); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 85% 15%, rgba(39,102,167,.42), transparent 62%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-4); }
.cta-band p { color: #b9c2cc; font-size: var(--step-1); max-width: 54ch; }
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: center; }
@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; } }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--sh-2); padding: clamp(1.5rem, 3vw, 2.2rem); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: .38rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .95rem; border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm); background: #fff; font-size: .96rem; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-100);
}
.field textarea { min-height: 118px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .9rem; }

/* ---------- Breadcrumb ---------- */
.crumbs { padding-block: 1rem; font-size: .85rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }
.crumbs li::after { content: "/"; margin-left: .45rem; color: var(--border-strong); }
.crumbs li:last-child::after { display: none; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-block: clamp(2.75rem, 6vw, 4.5rem); background: linear-gradient(180deg, var(--blue-050) 0%, var(--white) 100%); border-bottom: 1px solid var(--border); }
.page-hero h1 { max-width: 20ch; margin-bottom: var(--sp-5); }
.page-hero .lede { max-width: 60ch; }

/* ---------- Blog ---------- */
.post { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.post:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.post__thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-800) 100%); display: grid; place-items: center; color: rgba(255,255,255,.9); font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; text-align: center; padding: 1.25rem; }
.post__body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-size: .8rem; color: var(--muted-2); margin-bottom: .55rem; letter-spacing: .02em; }
.post h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.post p { font-size: .93rem; color: var(--muted); }
.post .link-arrow { margin-top: auto; padding-top: 1rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.15rem; text-align: center; }
.team-card .avatar { width: 54px; height: 54px; margin: 0 auto .7rem; font-size: 1.1rem; }
.team-card b { display: block; font-size: .97rem; color: var(--ink-900); }
.team-card span { font-size: .82rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-950); color: #a8b2bd; padding-block: clamp(3rem, 6vw, 4.5rem) 0; font-size: .93rem; }
.site-footer a { color: #a8b2bd; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.75rem; }
@media (max-width: 940px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 46px; margin-bottom: 1.15rem; }
.footer-brand p { max-width: 34ch; line-height: 1.65; }
.footer-col h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1.05rem; font-weight: 700; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-contact { display: grid; gap: .7rem; margin-top: 1.35rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .25em; color: #6f7c89; }
.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: all .18s ease; }
.socials a:hover { background: var(--blue); border-color: var(--blue); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.35rem; }
.footer-badges span { font-size: .76rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-full); padding: .3rem .75rem; color: #c2ccd7; }

/* ---------- Utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.center { text-align: center; }
.divider { height: 1px; background: var(--border); border: 0; margin-block: var(--sp-6); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

@media (max-width: 620px) { .hero-proof { grid-template-columns: repeat(2, auto); } }
.brand img { height: 38px; }
.footer-brand img { height: 40px; }

/* ==========================================================================
   v2 — brand logos, infographics, gradients, GSAP-driven motion
   ========================================================================== */

/* ---------- Gradient & texture backgrounds ---------- */
.section--mesh {
  position: relative;
  background:
    radial-gradient(900px 520px at 8% -10%, rgba(39,102,167,.13), transparent 60%),
    radial-gradient(760px 480px at 96% 8%, rgba(15,155,142,.10), transparent 58%),
    radial-gradient(700px 500px at 55% 108%, rgba(107,79,168,.09), transparent 60%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}
.section--grid { position: relative; }
.section--grid::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(39,102,167,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,102,167,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000 30%, transparent 78%);
}
.section--grid > .wrap { position: relative; z-index: 1; }

.section--brand {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue) 55%, #3d86c6 100%);
  color: #e8f0f9; position: relative; overflow: hidden;
}
.section--brand::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 420px at 88% 6%, rgba(255,255,255,.16), transparent 62%);
  pointer-events: none;
}
.section--brand > .wrap { position: relative; z-index: 1; }
.section--brand h2, .section--brand h3, .section--brand h4 { color: #fff; }
.section--brand .lede { color: rgba(255,255,255,.86); }
.section--brand .eyebrow { color: #ffd166; }
.section--brand .eyebrow::before { background: #ffd166; }
.section--brand .stat-band { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.22); }
.section--brand .stat-band div { background: transparent; backdrop-filter: blur(2px); }
.section--brand .stat-band strong { color: #fff; }
.section--brand .stat-band span { color: rgba(255,255,255,.8); }
.section--brand .checks li::before { background: rgba(255,255,255,.2); color: #fff; }

.section--ink {
  background:
    radial-gradient(760px 460px at 82% 10%, rgba(39,102,167,.42), transparent 62%),
    radial-gradient(600px 400px at 8% 96%, rgba(15,155,142,.22), transparent 60%),
    var(--ink-950);
  color: #cfd6dd;
}
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lede { color: #a9b4bf; }
.section--ink .eyebrow { color: #7fb0e0; }
.section--ink .eyebrow::before { background: #7fb0e0; }
.section--ink .card { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.12); }
.section--ink .card h3 { color: #fff; }
.section--ink .card p { color: #a9b4bf; }
.section--ink .card__icon { background: rgba(127,176,224,.16); color: #9cc5ea; }
.section--ink .stat-band { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.14); }
.section--ink .stat-band div { background: rgba(20,24,29,.6); }
.section--ink .stat-band strong { color: #7fb0e0; }
.section--ink .stat-band span { color: #a9b4bf; }
.section--ink .checks li::before { background: rgba(127,176,224,.18); color: #9cc5ea; }

/* ---------- Brand logos ---------- */
.blogo { fill: var(--bc); flex-shrink: 0; }
.blogo--mono { fill: #9aa5b1; transition: fill .25s ease; }

.mq { overflow: hidden; padding-block: .35rem 1.5rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.mq__track { display: flex; width: max-content; gap: 2.6rem; will-change: transform; }
.mq__item {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: #7a8794;
  white-space: nowrap; transition: color .22s ease;
}
.mq__item .blogo { opacity: 1; transition: transform .25s ease, filter .25s ease; }
.mq__item:hover { color: var(--ink-900); }
.mq__item:hover .blogo { transform: translateY(-2px) scale(1.12); filter: drop-shadow(0 3px 6px rgba(31,45,61,.22)); }

.bgrid { display: grid; grid-template-columns: repeat(var(--bg-cols, 4), 1fr); gap: .5rem; }
.bgrid__cell {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  padding: .85rem .4rem; border-radius: var(--r-md); background: #fff;
  border: 1px solid var(--border); text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bgrid__cell span { font-size: .71rem; color: var(--muted); font-weight: 600; letter-spacing: .01em; line-height: 1.2; }
.bgrid__cell .blogo { opacity: 1; transition: transform .22s ease; }
.bgrid__cell:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--border-strong); }
.bgrid__cell:hover .blogo { transform: scale(1.1); }
@media (max-width: 520px) { .bgrid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Growth engine ---------- */
.engine { position: relative; }
.engine > svg { width: 100%; max-width: 460px; margin-inline: auto; overflow: visible; }
.ge__seg { transform-origin: 200px 200px; }
.ge__lab { font-family: var(--font-head); font-weight: 700; font-size: 15px; fill: #fff; letter-spacing: .04em; }
.ge__hub { filter: drop-shadow(0 10px 26px rgba(31,45,61,.12)); }
.ge__ct { font-family: var(--font-body); font-size: 12px; font-weight: 700; fill: var(--muted); letter-spacing: .16em; text-transform: uppercase; }
.ge__cm { font-family: var(--font-head); font-size: 21px; font-weight: 700; fill: var(--ink-900); }
.ge__cs { font-family: var(--font-head); font-size: 27px; font-weight: 700; fill: var(--blue); }
.ge__cb { font-family: var(--font-body); font-size: 11.5px; fill: var(--muted); letter-spacing: .04em; }
.engine__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1.25rem; }
.engine__card {
  background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--ec);
  border-radius: var(--r-md); padding: .75rem .9rem;
}
.engine__card b { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--ink-900); }
.engine__card span { display: block; font-size: .8rem; color: var(--muted); line-height: 1.45; margin-top: .12rem; }
@media (max-width: 560px) { .engine__cards { grid-template-columns: 1fr; } }

/* ---------- Donut + legend ---------- */
.dstat { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.1rem, 2.4vw, 1.9rem); align-items: center; }
.donut svg { width: 100%; max-width: 330px; margin-inline: auto; overflow: visible; display: block; }
.dn__hub { filter: drop-shadow(0 10px 26px rgba(39,102,167,.28)); }
.dn__v { font-family: var(--font-head); font-size: 42px; font-weight: 700; fill: #fff; letter-spacing: -.02em; }
.dn__s { font-family: var(--font-body); font-size: 13px; font-weight: 600; fill: rgba(255,255,255,.85); letter-spacing: .02em; }

.dlegend { display: grid; gap: .55rem; align-content: center; }
.dlegend li {
  display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: .7rem;
  padding: .7rem .95rem; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); font-size: .88rem;
}
.dlegend i { width: 12px; height: 12px; border-radius: 4px; }
.dlegend span { color: var(--muted); line-height: 1.3; }
.dlegend b { font-family: var(--font-head); color: var(--ink-900); font-size: .95rem; }
@media (max-width: 1080px) { .dstat { grid-template-columns: 1fr; } .donut svg { max-width: 300px; } }

/* ---------- Sparkline ---------- */
.spark { width: 100%; height: 66px; margin-top: .5rem; }

/* ---------- Featured case study ---------- */
.fcase {
  display: grid; grid-template-columns: 1.08fr .92fr;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-2); overflow: hidden;
}
.fcase__body { padding: clamp(1.6rem, 3.4vw, 2.6rem); }
.fcase__eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: .5rem; }
.fcase__body h3 { font-size: var(--step-3); }
.fcase__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border-left: 1px solid var(--border);
}
.fcase__q { background: linear-gradient(180deg, #fbfdfe, #fff); padding: clamp(1.2rem, 2.6vw, 1.9rem); display: flex; flex-direction: column; justify-content: center; }
.fcase__q strong { font-family: var(--font-head); font-size: clamp(2.1rem, 4vw, 3rem); color: var(--teal); line-height: 1; }
.fcase__q > span { font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; line-height: 1.45; }
.fcase__lab { font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.fcase__q--logo { align-items: flex-start; }
.fcase__logo {
  display: inline-flex; align-items: center; font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; color: #1a1a1a; padding: .55rem 1rem; border-radius: 6px; letter-spacing: -.01em;
}
@media (max-width: 940px) { .fcase { grid-template-columns: 1fr; } .fcase__stats { border-left: 0; border-top: 1px solid var(--border); } }

/* ---------- Integrations card ---------- */
.intcard {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: linear-gradient(155deg, #f2f7fc 0%, #ffffff 48%, #f4fbfa 100%);
  border: 1px solid #dbe6f2; border-radius: var(--r-xl);
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 3.4vw, 2.6rem) clamp(1.8rem, 4vw, 2.6rem);
  margin-top: 34px;
}
.intcard__badge {
  position: absolute; top: -34px; left: 50%; transform: translateX(-50%);
  width: 68px; height: 68px; border-radius: 50%; background: var(--blue); color: #fff;
  display: grid; place-items: center; box-shadow: 0 0 0 9px rgba(39,102,167,.14), var(--sh-blue);
}
.intcard__badge svg { width: 30px; height: 30px; }
.intcard__kicker { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--blue); margin-bottom: .3rem; }
.intcard__kicker b { color: var(--ink-900); }
@media (max-width: 900px) { .intcard { grid-template-columns: 1fr; } }

/* ---------- Blue CTA band ---------- */
.cband-wrap { padding-block: clamp(2.5rem, 5vw, 4rem); }
.cband {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 2rem;
  background: linear-gradient(120deg, #1f5288 0%, #2766a7 52%, #3a7cc0 100%);
  border-radius: var(--r-xl); color: #fff;
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.6rem, 4vw, 3.4rem);
}
.cband__squiggle { position: absolute; top: -40px; right: -30px; width: min(420px, 46%); height: auto; pointer-events: none; }
.cband__inner { position: relative; z-index: 2; }
.cband h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); max-width: 18ch; }
.cband__sub { margin-top: .9rem; font-size: clamp(1.02rem, 1.5vw, 1.22rem); font-weight: 600; color: rgba(255,255,255,.94); max-width: 46ch; }
.cband .hl { position: relative; color: #ffd166; white-space: nowrap; }
.cband .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8c40-6 90-7 196-3' stroke='%23ffd166' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M6 11c46-5 98-6 190-2' stroke='%23ffd166' stroke-width='2' fill='none' stroke-linecap='round' opacity='.75'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}
.cband__form { display: flex; margin-top: 1.9rem; max-width: 560px; border-radius: var(--r-sm); overflow: hidden; box-shadow: 0 12px 30px rgba(9,32,58,.28); }
.cband__form input {
  flex: 1; min-width: 0; padding: 1rem 1.15rem; border: 0; background: #fff; font-size: 1rem;
}
.cband__form input:focus { outline: 3px solid #ffd166; outline-offset: -3px; }
.cband__form .btn {
  border-radius: 0; background: #3a7cc0; color: #fff; box-shadow: none;
  border: 0; padding-inline: 1.6rem; font-size: 1rem;
}
.cband__form .btn:hover { background: #ffd166; color: var(--ink-900); transform: none; }
.cband__note { margin-top: .9rem; font-size: .84rem; color: rgba(255,255,255,.72); }
.cband__art { position: relative; z-index: 2; }
.cband__art svg { width: 100%; max-width: 260px; margin-left: auto; overflow: visible; }
.cband__artt { font-family: var(--font-head); font-size: 40px; font-weight: 700; fill: #fff; }
.cband__arts { font-family: var(--font-body); font-size: 12px; font-weight: 600; fill: rgba(255,255,255,.82); letter-spacing: .06em; text-transform: uppercase; }
.cband__orbit { transform-origin: 130px 130px; }
@media (max-width: 860px) { .cband { grid-template-columns: 1fr; } .cband__art { display: none; } .cband__form { flex-direction: column; box-shadow: none; gap: .6rem; background: transparent; } .cband__form input { border-radius: var(--r-sm); } .cband__form .btn { border-radius: var(--r-sm); } }

/* ---------- Visibility bar chart ---------- */
.vchart { display: grid; gap: .9rem; }
.vbar { display: grid; grid-template-columns: 150px 1fr 52px; align-items: center; gap: 1rem; }
.vbar__l { font-size: .92rem; font-weight: 600; color: var(--ink); }
.vbar__t { height: 13px; border-radius: var(--r-full); background: var(--surface-2); overflow: hidden; }
.vbar__t i { display: block; height: 100%; width: var(--pct); border-radius: var(--r-full); background: linear-gradient(90deg, #9fbcd9, #7fa9d0); transform-origin: left; }
.vbar__v { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--muted); text-align: right; }
.vbar--you .vbar__l { color: var(--blue-800); }
.vbar--you .vbar__t i { background: linear-gradient(90deg, var(--blue), #0f9b8e); }
.vbar--you .vbar__v { color: var(--blue); }
.section--ink .vbar__l { color: #dfe4ea; }
.section--ink .vbar__t { background: rgba(255,255,255,.12); }
.section--ink .vbar--you .vbar__l, .section--ink .vbar--you .vbar__v { color: #9cc5ea; }
@media (max-width: 620px) { .vbar { grid-template-columns: 104px 1fr 44px; gap: .6rem; } .vbar__l { font-size: .82rem; } }

/* ---------- Funnel ---------- */
.fnl { display: grid; gap: 1.15rem; }
.fnl__row { display: block; }
.fnl__bar {
  width: var(--fw); min-width: 140px; height: 62px; border-radius: var(--r-md);
  background: var(--fc); color: #fff; display: flex; align-items: center; padding-inline: 1.25rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  transform-origin: left center; box-shadow: var(--sh-1);
}
.fnl__sub { font-size: .9rem; color: var(--muted); margin-top: .45rem; padding-left: .15rem; max-width: 46ch; }
@media (max-width: 700px) { .fnl__bar { width: 100%; height: 52px; } }

/* ---------- Scroll progress ---------- */
.scrollbar-top {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 300;
  background: linear-gradient(90deg, var(--blue), #0f9b8e); transform: scaleX(0); transform-origin: left;
}

/* ---------- Motion base state (GSAP takes over) ---------- */
.js-anim [data-anim], .js-anim [data-anim-group] > * { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .js-anim [data-anim], .js-anim [data-anim-group] > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- Hero visual stack ---------- */
.hero--v2 { padding-block: clamp(3rem, 6.5vw, 5.5rem); }
.hero--v2 .hero-grid { grid-template-columns: 1.02fr .98fr; align-items: center; }
.hero-float {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--sh-3); padding: .7rem .9rem;
  display: flex; align-items: center; gap: .6rem; z-index: 3;
}
.hero-float b { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink-900); line-height: 1.1; display: block; }
.hero-float small { font-size: .72rem; color: var(--muted); font-weight: 600; }
.hero-float .hf-i { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.hero-stage { position: relative; }
.hf--a { top: 2%; left: -2%; }
.hf--b { bottom: 20%; left: -4%; }
@media (max-width: 1100px) { .hf--a, .hf--b { position: static; margin: .6rem auto 0; width: fit-content; } }
.footer-badges span { display: inline-flex; align-items: center; gap: .42rem; }
.footer-badges .blogo { opacity: 1; }
.section--brand .card h3 { color: var(--ink-900); }
.section--brand .card p { color: var(--muted); }
.section--brand .card .link-arrow { color: var(--blue); }
.section--brand .card__icon { background: var(--blue-100); color: var(--blue); }
.fcase__logo { border: 1px solid rgba(0,0,0,.08); }

/* ---------- v2 responsive corrections ---------- */
body { overflow-x: hidden; }
@media (max-width: 940px) {
  .hero--v2 .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { margin-top: 2rem; }
}
@media (max-width: 1100px) {
  .hero-float { position: static; margin: 0 auto .7rem; width: fit-content; }
  .hero-stage { display: flex; flex-direction: column; }
  .hero-stage .engine { order: -1; }
  .hero-stage .hero-float { order: 1; }
}
@media (max-width: 640px) {
  .fcase__stats { grid-template-columns: 1fr; }
  .intcard { margin-top: 30px; }
  .cband { padding-inline: 1.4rem; }
}

/* Brand marks: true colours everywhere. Pure-black marks get a hairline lift on white. */
.mq__item .blogo[aria-label="TikTok"], .bgrid__cell .blogo[aria-label="TikTok"] { fill: #111; }
.mq__item, .bgrid__cell span { color: var(--muted); }
.mq__item { color: var(--ink); font-weight: 600; }

/* Donut section balance: give the graphic more room, let the card breathe */
.dsection .split { grid-template-columns: 1.12fr .88fr; align-items: stretch; gap: clamp(2rem, 4vw, 3.5rem); }
.dsection .split > .card { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 940px) { .dsection .split { grid-template-columns: 1fr; } }

/* ---------- Donut panel: fills the column height beside a tall card ---------- */
.dpanel {
  display: flex; flex-direction: column; justify-content: center; height: 100%;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--sh-1);
}
.dpanel__k {
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted-2); text-align: center; margin-bottom: 1.1rem;
}
.dpanel__f {
  margin-top: 1.35rem; padding-top: 1.15rem; border-top: 1px solid var(--border);
  font-size: .82rem; color: var(--muted); text-align: center; line-height: 1.55;
}
.dstat--stack { grid-template-columns: 1fr; gap: 1.35rem; }
.dstat--stack .donut svg { max-width: 268px; }
.dstat--stack .dlegend { grid-template-columns: 1fr 1fr; gap: .55rem; }
@media (max-width: 520px) { .dstat--stack .dlegend { grid-template-columns: 1fr; } }

/* ---------- Google Premier Partner badge ---------- */
.gbadge {
  display: inline-flex; flex-direction: column; align-items: center; gap: .7rem;
  text-decoration: none; transition: transform .22s ease;
}
.gbadge img {
  border-radius: var(--r-md); background: #fff;
  box-shadow: 0 2px 6px rgba(31,45,61,.08), 0 14px 34px rgba(31,45,61,.12);
  transition: box-shadow .22s ease;
}
.gbadge:hover { transform: translateY(-4px); }
.gbadge:hover img { box-shadow: 0 4px 10px rgba(31,45,61,.10), 0 22px 46px rgba(39,102,167,.24); }
.gbadge__v {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--blue); letter-spacing: .01em;
}
.gbadge__v svg { width: 13px; height: 13px; }
.gbadge:hover .gbadge__v { color: var(--blue-700); text-decoration: underline; }

.gband {
  background:
    radial-gradient(760px 420px at 12% 0%, rgba(66,133,244,.12), transparent 62%),
    radial-gradient(620px 400px at 92% 100%, rgba(52,168,83,.10), transparent 60%),
    linear-gradient(180deg, #ffffff, #f7f9fb);
  border-block: 1px solid var(--border);
}
.gband__inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
}
.gband__badge { position: relative; }
.gband__badge::before {
  content: ""; position: absolute; inset: -22px; border-radius: 50%;
  background: radial-gradient(circle, rgba(66,133,244,.16), transparent 68%);
  z-index: -1;
}
.gband__body h2 { font-size: var(--step-3); }
.gband .btn svg { width: 14px; height: 14px; }
@media (max-width: 860px) {
  .gband__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .gband__body .eyebrow { justify-content: center; }
  .gband .checks li { text-align: left; }
  .gband .btn-row { justify-content: center; }
}

/* Highlighted credential links in topbar and footer */
.topbar-badge--hl {
  display: inline-flex; align-items: center; gap: .45rem;
  color: #fff !important; font-weight: 600;
}
.topbar-badge--hl .tb-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4285F4;
  box-shadow: 0 0 0 3px rgba(66,133,244,.28);
}
.topbar-badge--hl:hover { text-decoration: underline; }
.footer-badges .fb-hl {
  display: inline-flex; align-items: center; gap: .42rem;
  font-size: .76rem; padding: .3rem .75rem; border-radius: var(--r-full);
  border: 1px solid rgba(66,133,244,.5); background: rgba(66,133,244,.14); color: #dbe8fb;
}
.footer-badges .fb-hl:hover { background: rgba(66,133,244,.26); color: #fff; }
