/* ============================================================
   Clairvoyant Research — Design System
   Premium, high-trust B2B. Brand-aligned: Satoshi + Montserrat,
   teal (#14b8a6) → blue (#2563eb) gradient, navy (#0F172A).
   ============================================================ */

/* ---------- Brand fonts (self-hosted) ---------- */
@font-face { font-family:"Satoshi"; src:url("fonts/Satoshi-Light.woff2") format("woff2"), url("fonts/Satoshi-Light.otf") format("opentype");     font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:"Satoshi"; src:url("fonts/Satoshi-Regular.woff2") format("woff2"), url("fonts/Satoshi-Regular.otf") format("opentype"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Satoshi"; src:url("fonts/Satoshi-Medium.woff2") format("woff2"), url("fonts/Satoshi-Medium.otf") format("opentype");   font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Satoshi"; src:url("fonts/Satoshi-Bold.woff2") format("woff2"), url("fonts/Satoshi-Bold.otf") format("opentype");       font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"Satoshi"; src:url("fonts/Satoshi-Black.woff2") format("woff2"), url("fonts/Satoshi-Black.otf") format("opentype");     font-weight:900; font-style:normal; font-display:swap; }
@font-face { font-family:"Montserrat"; src:url("fonts/Montserrat-Medium.woff2") format("woff2"), url("fonts/Montserrat-Medium.ttf") format("truetype");     font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Montserrat"; src:url("fonts/Montserrat-SemiBold.woff2") format("woff2"), url("fonts/Montserrat-SemiBold.ttf") format("truetype"); font-weight:600; font-style:normal; font-display:swap; }

:root {
  /* --- Neutrals / ink (brand navy family) --- */
  --ink:        #0f172a;   /* headings, brand navy */
  --ink-soft:   #1e293b;
  --body:       #47546b;   /* body copy */
  --muted:      #64748b;   /* secondary text */
  --faint:      #94a3b8;

  /* --- Surfaces --- */
  --bg:         #ffffff;
  --bg-soft:    #f6f8fc;
  --bg-tint:    #eef3fb;
  --line:       #e7ecf3;
  --line-2:     #d8e0ea;

  /* --- Brand blue (#2563eb) --- */
  --brand:      #2563eb;
  --brand-600:  #1d4fd8;
  --brand-700:  #1a44bd;
  --brand-400:  #5b82f0;
  --brand-tint: #eaf1ff;
  --brand-tint2:#f3f7ff;

  /* --- Deep navy (dark sections) --- */
  --navy:       #0a0f1e;
  --navy-2:     #0f172a;
  --navy-3:     #14224a;

  /* --- Accents --- */
  --teal:       #14b8a6;
  --teal-tint:  #e6faf6;
  --green:      #14a34a;
  --amber:      #f4a723;

  /* --- Brand gradient --- */
  --gradient:   linear-gradient(120deg, #14b8a6, #2563eb);

  /* --- Depth --- */
  --sh-xs: 0 1px 2px rgba(11,18,32,.05);
  --sh-sm: 0 1px 3px rgba(11,18,32,.06), 0 1px 2px rgba(11,18,32,.04);
  --sh-md: 0 8px 24px rgba(11,18,32,.07), 0 2px 6px rgba(11,18,32,.04);
  --sh-lg: 0 24px 60px rgba(11,18,32,.12), 0 8px 24px rgba(11,18,32,.06);
  --sh-xl: 0 40px 90px rgba(11,18,32,.16), 0 12px 32px rgba(11,18,32,.08);
  --sh-brand: 0 14px 34px rgba(36,86,229,.28);

  /* --- Radii --- */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-2xl:40px;

  /* --- Type --- */
  --display: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sans:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1200px;
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.68;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--brand-tint); color: var(--brand-700); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container-tight { max-width: 920px; }
section { position: relative; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(52px, 6vw, 80px) 0; }
.soft { background: var(--bg-soft); }
/* Hairline delineation between stacked sections */
.hero + .section, .hero + .section-sm,
.page-hero + .section, .page-hero + .section-sm,
.section + .section, .section + .section-sm,
.section-sm + .section, .section-sm + .section-sm { border-top: 1px solid var(--line); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.15rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.95rem, 3.8vw, 3rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); letter-spacing: -0.018em; line-height: 1.25; }
h4 { font-size: 1.06rem; letter-spacing: -0.01em; }
p  { color: var(--body); }
strong, b { color: var(--ink-soft); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
}
.eyebrow.solo::before { background: var(--brand); width: 7px; height: 7px; border-radius: 50%; }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 62px); }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.lead { font-size: 1.18rem; color: var(--muted); line-height: 1.6; }
.section-head.center .lead { margin-inline: auto; max-width: 620px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 1rem; font-weight: 550;
  padding: 13px 24px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg { width: 18px; height: 18px; transition: transform .2s ease; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(36,86,229,.34); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); box-shadow: var(--sh-xs); }
.btn-ghost:hover { border-color: var(--faint); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: .93rem; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--brand-600); font-weight: 550; font-size: 1rem;
}
.textlink svg { width: 17px; height: 17px; transition: transform .2s ease; }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-xs); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }
.footer-logo { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .96rem; font-weight: 500; color: var(--body);
  padding: 8px 14px; border-radius: 100px; transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--brand-600); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px; position: relative;
}
.nav-toggle span { position: absolute; left: 11px; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease, top .25s ease; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav.open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  height: calc(100dvh - var(--nav-h)); z-index: 190;
  background: #ffffff;
  backdrop-filter: blur(20px);
  padding: 20px 24px 40px;
  flex-direction: column;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  overflow-y: auto;
}
.nav.open .mobile-menu { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a.m-link { font-family: var(--display); font-size: 1.5rem; font-weight: 500; color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--line); letter-spacing: -0.02em; }
.mobile-menu a.m-link:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 22px; width: 100%; }

/* ---------- Hero ---------- */
.hero { padding: clamp(60px, 7vw, 96px) 0 clamp(72px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -10% 0 auto 0; height: 620px; z-index: -2;
  background:
    radial-gradient(900px 460px at 82% -6%, rgba(36,86,229,.13), transparent 62%),
    radial-gradient(680px 420px at 4% 2%, rgba(23,182,196,.08), transparent 58%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -3; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(760px 460px at 74% 12%, #000, transparent 72%);
          mask-image: radial-gradient(760px 460px at 74% 12%, #000, transparent 72%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.hero h1 { margin: 22px 0 22px; }
.hero .lead { font-size: 1.2rem; color: var(--body); max-width: 520px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-proof { margin-top: 40px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: .92rem; }
.hero-proof .stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; }
.hero-proof .divider { width: 1px; height: 18px; background: var(--line-2); }

/* Badge chip */
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-xs);
  padding: 6px 6px 6px 14px; border-radius: 100px; font-size: .84rem; font-weight: 500; color: var(--ink-soft);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(23,163,74,.15); }
.chip .chip-tag { background: var(--brand-tint); color: var(--brand-600); font-weight: 600; font-size: .74rem; padding: 3px 10px; border-radius: 100px; }

/* Hero visual — AI interview mock */
.hero-visual { position: relative; }
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-xl); padding: 22px; position: relative; z-index: 2;
}
.mock-bar { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.mock-avatar { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(140deg, var(--brand), var(--teal)); display: grid; place-items: center; color: #fff; box-shadow: var(--sh-sm); }
.mock-avatar svg { width: 21px; height: 21px; }
.mock-name { font-weight: 600; font-size: .96rem; color: var(--ink); }
.mock-status { font-size: .8rem; color: var(--green); display: flex; align-items: center; gap: 7px; margin-top: 1px; }
.mock-status::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(23,163,74,.16); }
.bubble { max-width: 84%; padding: 12px 16px; border-radius: 16px; font-size: .93rem; line-height: 1.5; margin-bottom: 11px; }
.bubble.ai { background: var(--bg-tint); color: var(--ink-soft); border-bottom-left-radius: 5px; }
.bubble.me { background: var(--brand); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.mock-wave { display: flex; align-items: flex-end; gap: 4px; height: 30px; margin-top: 8px; padding-left: 2px; }
.mock-wave span { width: 3px; border-radius: 3px; background: var(--brand-400); animation: wave 1.1s ease-in-out infinite; }
.mock-wave span:nth-child(1){height:9px;animation-delay:0s}
.mock-wave span:nth-child(2){height:20px;animation-delay:.1s}
.mock-wave span:nth-child(3){height:28px;animation-delay:.2s}
.mock-wave span:nth-child(4){height:15px;animation-delay:.3s}
.mock-wave span:nth-child(5){height:24px;animation-delay:.4s}
.mock-wave span:nth-child(6){height:11px;animation-delay:.5s}
.mock-wave span:nth-child(7){height:18px;animation-delay:.6s}
@keyframes wave { 0%,100%{transform:scaleY(.4)} 50%{transform:scaleY(1)} }

.float-card {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--sh-lg); padding: 13px 16px; display: flex; align-items: center; gap: 12px; z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.float-card .fc-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.float-card .fc-icon svg { width: 19px; height: 19px; }
.float-card .fc-title { font-size: .84rem; font-weight: 600; color: var(--ink); }
.float-card .fc-sub { font-size: .74rem; color: var(--muted); }
.float-1 { top: -20px; right: -16px; animation-delay: 0s; }
.float-2 { bottom: -22px; left: -20px; animation-delay: 1.6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-8px) } }

/* ---------- Trust bar ---------- */
.trustbar { border-block: 1px solid var(--line); background: var(--bg-soft); }
.trustbar .container { padding-block: 34px; }
.trust-label { text-align: center; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 22px; }
.trust-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-tag { display: inline-flex; align-items: center; gap: 9px; font-weight: 550; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); padding: 10px 18px; border-radius: 100px; font-size: .94rem; box-shadow: var(--sh-xs); }
.trust-tag svg { width: 17px; height: 17px; color: var(--brand); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px;
  position: relative; transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--line-2); }
.step-num { font-family: var(--display); font-size: .82rem; font-weight: 600; color: var(--brand-600); letter-spacing: .14em; }
.step-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(150deg, var(--brand-tint), var(--brand-tint2)); border: 1px solid var(--brand-tint); display: grid; place-items: center; color: var(--brand-600); margin: 16px 0 20px; }
.step-icon svg { width: 25px; height: 25px; }
.step h3 { margin-bottom: 9px; }
.step p { font-size: 1rem; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5.5vw, 76px); align-items: center; }
.split.rev .split-visual { order: 2; }
.split h2 { margin-bottom: 18px; }
.split > div > .eyebrow { margin-bottom: 18px; }
.feature-list { list-style: none; margin-top: 28px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--brand-tint); color: var(--brand-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.feature-list .ck svg { width: 15px; height: 15px; }
.feature-list span { color: var(--body); }

/* Panels */
.panel { background: linear-gradient(165deg, var(--brand-tint2), #fff); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 40px); box-shadow: var(--sh-md); }
.panel-dark {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 100% 0%, var(--navy-3), var(--navy-2) 55%, var(--navy));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl); padding: clamp(28px, 4vw, 40px); box-shadow: var(--sh-lg); color: #fff;
}
.panel-dark::before {
  content:""; position:absolute; inset:0; opacity:.4;
  background: radial-gradient(500px 260px at 15% 0%, rgba(75,116,236,.4), transparent 60%);
}
.panel-dark > * { position: relative; z-index: 1; }

/* Interview flow diagram */
.flow { display: grid; gap: 12px; }
.flow-node { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 16px 18px; }
.flow-node .q { font-weight: 500; font-size: .98rem; color: #fff; }
.flow-node.ai-q { background: rgba(36,86,229,.18); border-color: rgba(75,116,236,.42); }
.flow-branch { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.flow-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.55); margin-bottom: 8px; font-weight: 600; }
.flow-tag.blue { color: #9fb8ff; }
.flow-mini { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 12px 14px; font-size: .89rem; color: rgba(255,255,255,.8); line-height: 1.45; }

/* Payment card */
.pay-card { display: grid; gap: 14px; }
.pay-row { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 15px 18px; box-shadow: var(--sh-xs); }
.pay-row .pr-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.pay-row .pr-ic svg { width: 20px; height: 20px; }
.pay-row .pr-title { font-weight: 600; color: var(--ink); font-size: .98rem; }
.pay-row .pr-sub { font-size: .84rem; color: var(--muted); }
.pay-row .pr-amt { margin-left: auto; font-weight: 600; color: var(--green); font-size: .9rem; background: rgba(23,163,74,.1); padding: 5px 12px; border-radius: 100px; }

/* ---------- Testimonials ---------- */
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.tcard .stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.tcard blockquote { font-family: var(--display); font-size: 1.28rem; color: var(--ink); line-height: 1.42; letter-spacing: -0.015em; margin-bottom: 26px; font-weight: 500; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tcard .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--brand), var(--teal)); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 1.05rem; }
.tcard .who .n { font-weight: 600; color: var(--ink); font-size: .98rem; }
.tcard .who .r { font-size: .87rem; color: var(--muted); }

/* ---------- Use case cards ---------- */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ucard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, border-color .25s ease; }
.ucard:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--line-2); }
.ucard .ic { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(150deg, var(--brand-tint), #fff); border: 1px solid var(--brand-tint); display: grid; place-items: center; color: var(--brand-600); margin-bottom: 20px; }
.ucard .ic svg { width: 26px; height: 26px; }
.ucard h3 { margin-bottom: 9px; }
.ucard p { font-size: 1rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat { text-align: center; padding: 40px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs); }
.stat .big { font-family: var(--display); font-size: clamp(2.2rem, 4.4vw, 3.1rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1; background: linear-gradient(130deg, var(--brand), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-weight: 500; margin-top: 10px; font-size: 1rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item[open] { box-shadow: var(--sh-sm); border-color: var(--line-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; font-family: var(--display); font-weight: 500; color: var(--ink); font-size: 1.08rem; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .25s ease; color: var(--brand); }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item .ans { padding: 0 24px 24px; color: var(--body); font-size: 1.02rem; max-width: 680px; }

/* ---------- CTA band ---------- */
.cta-inner {
  position: relative; overflow: hidden;
  background: radial-gradient(130% 130% at 0% 0%, var(--navy-3), var(--navy-2) 52%, var(--navy));
  border-radius: var(--r-2xl); padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px); text-align: center; color: #fff;
  box-shadow: var(--sh-lg);
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 22% -10%, rgba(75,116,236,.4), transparent 60%),
              radial-gradient(500px 320px at 88% 120%, rgba(23,182,196,.28), transparent 60%);
}
.cta-inner::after {
  content:""; position:absolute; inset:0; opacity:.3;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 75%);
          mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 75%);
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.78); font-size: 1.16rem; max-width: 600px; margin: 0 auto 32px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: clamp(56px, 7vw, 92px) 0 clamp(40px, 5vw, 60px); text-align: center; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(760px 380px at 50% -30%, rgba(36,86,229,.11), transparent 62%); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { margin: 0 auto 18px; max-width: 900px; }
.page-hero p { font-size: 1.2rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, border-color .25s ease; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--line-2); }
.post:hover .post-thumb .glyph { transform: scale(1.06) rotate(-3deg); }
.post-thumb { height: 172px; background: linear-gradient(140deg, var(--navy-2), var(--brand)); position: relative; overflow: hidden; }
.post-thumb.v2 { background: linear-gradient(140deg, var(--navy-3), var(--teal)); }
.post-thumb.v3 { background: linear-gradient(140deg, var(--brand-700), #6a5cff); }
.post-thumb.v4 { background: linear-gradient(140deg, var(--navy), var(--brand)); }
.post-thumb .glyph { position: absolute; right: -8px; bottom: -8px; opacity: .24; color:#fff; transition: transform .3s ease; }
.post-thumb .glyph svg { width: 128px; height: 128px; }
.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-date { font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.post h3 { margin: 11px 0 16px; }
.post-meta { margin-top: auto; display: flex; align-items: center; gap: 11px; padding-top: 18px; border-top: 1px solid var(--line); }
.post-meta .a { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(140deg, var(--brand), var(--teal)); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: .78rem; }
.post-meta .an { font-weight: 600; color: var(--ink); font-size: .87rem; }
.post-meta .ar { font-size: .77rem; color: var(--muted); }
.blog-grid.featured { grid-template-columns: 1fr; margin-bottom: 24px; }
.featured .post { flex-direction: row; }
.featured .post-thumb { width: 44%; height: auto; min-height: 280px; flex-shrink: 0; }
.featured .post-body { padding: clamp(28px, 4vw, 46px); justify-content: center; }
.badge { align-self: flex-start; background: var(--brand-tint); color: var(--brand-600); font-weight: 600; font-size: .74rem; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.featured .post h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

/* ---------- About: mission + values + leadership ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { padding: 30px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.value .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand-600); display: grid; place-items: center; margin-bottom: 18px; }
.value .ic svg { width: 22px; height: 22px; }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { font-size: .98rem; }

.leader { display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 4vw, 52px); align-items: start; max-width: 940px; margin-inline: auto; }
.leader-photo { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-md); aspect-ratio: 1; background: linear-gradient(150deg, var(--brand-tint), #fff); display: flex; align-items: center; justify-content: center; }
.leader-photo .init { font-family: var(--display); font-size: 4.2rem; font-weight: 600; line-height: 1; background: linear-gradient(140deg, var(--brand), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.leader h3 { font-size: 1.7rem; }
.leader .role { color: var(--brand-600); font-weight: 600; margin-bottom: 20px; }
.leader p + p { margin-top: 14px; }
.leader .creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.leader .cred { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 550; color: var(--ink-soft); background: var(--bg-soft); border: 1px solid var(--line); padding: 8px 14px; border-radius: 100px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 40px); box-shadow: var(--sh-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .89rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--bg-soft);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-400); background: #fff; box-shadow: 0 0 0 4px var(--brand-tint); }
.field textarea { resize: vertical; min-height: 132px; }
.contact-side .ci { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 26px; }
.contact-side .ci-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--brand-tint); color: var(--brand-600); display: grid; place-items: center; flex-shrink: 0; }
.contact-side .ci-ic svg { width: 22px; height: 22px; }
.contact-side .ci h4 { font-size: 1.06rem; margin-bottom: 3px; }
.contact-side .ci a, .contact-side .ci p { color: var(--body); font-size: 1rem; }
.contact-side .ci a:hover { color: var(--brand-600); }
.form-note { font-size: .86rem; text-align: center; margin-top: 16px; color: var(--muted); }
/* Honeypot — visually hidden from people, present for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
/* Submit states */
.contact-form button[disabled] { opacity: .65; cursor: progress; }
.form-status { display: none; margin-top: 14px; font-size: .9rem; line-height: 1.5; border-radius: 12px; padding: 12px 15px; }
.form-status.err { display: block; background: #fdecec; color: #b3261e; border: 1px solid #f6cbc7; }
.form-status.err a { color: #b3261e; font-weight: 700; text-decoration: underline; }
/* Success state (replaces the form on submit) */
.form-sent { text-align: center; padding: clamp(28px, 5vw, 52px) 12px; }
.form-sent .ck { width: 60px; height: 60px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-600); display: grid; place-items: center; margin: 0 auto 20px; }
.form-sent .ck svg { width: 30px; height: 30px; }
.form-sent h3 { margin-bottom: 8px; }
.form-sent p { color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.68); padding: clamp(56px, 6vw, 80px) 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-about { font-size: .96rem; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-tag { font-family: var(--display); font-size: .9rem; color: rgba(255,255,255,.42); margin-top: 18px; letter-spacing: .01em; }
.footer h5 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; font-weight: 600; font-family: var(--sans); }
.footer-col a { display: block; color: rgba(255,255,255,.66); font-size: .95rem; margin-bottom: 12px; transition: color .15s ease; width: fit-content; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: .87rem; color: rgba(255,255,255,.48); flex-wrap: wrap; gap: 14px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: rgba(255,255,255,.75); transition: background .15s ease, color .15s ease, transform .15s ease; }
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Trust rating badge ---------- */
.trust-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-xs); border-radius: 100px; padding: 8px 18px; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.trust-badge .stars { color: var(--amber); letter-spacing: 2px; }
.trust-badge .score { font-family: var(--display); font-weight: 700; }
.trust-badge .tp { color: var(--muted); font-weight: 500; }

/* ---------- Testimonial carousel ---------- */
.carousel { max-width: 860px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.4,.0,.2,1); will-change: transform; }
.tslide { min-width: 100%; padding: 6px; }
.tcard-lg {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-md); padding: clamp(32px, 5vw, 52px); text-align: center;
  display: flex; flex-direction: column; align-items: center; min-height: 100%;
}
.tcard-lg .stars { color: var(--amber); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 22px; }
.tcard-lg blockquote {
  font-family: var(--display); font-weight: 500; color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.4; letter-spacing: -0.02em;
  margin-bottom: 30px; max-width: 680px;
}
.tcard-lg .who { display: flex; align-items: center; gap: 13px; }
.tcard-lg .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--display); font-size: 1.1rem; }
.tcard-lg .who .n { font-weight: 700; font-family: var(--display); color: var(--ink); font-size: 1rem; text-align: left; }
.tcard-lg .who .r { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.tcard-lg .who .r svg { width: 14px; height: 14px; color: #00b67a; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.carousel-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff;
  color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: var(--sh-xs);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.carousel-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: var(--brand-400); color: var(--brand-600); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots { display: flex; gap: 9px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line-2); cursor: pointer; padding: 0; transition: background .2s ease, width .2s ease; }
.carousel-dot.active { background: var(--brand); width: 24px; border-radius: 100px; }

/* ---------- Testimonial grid ---------- */
.tgrid6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.qcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-sm); min-height: 236px;
  display: flex; flex-direction: column;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.qcard:hover { background: var(--bg-soft); border-color: var(--line-2); box-shadow: var(--sh-md); transform: translateY(-2px); }
.qcard .stars { color: var(--amber); letter-spacing: 2px; font-size: .95rem; margin-bottom: 14px; }
.qcard blockquote { flex: 1; font-family: var(--display); font-weight: 500; color: var(--ink); font-size: 1.08rem; line-height: 1.45; letter-spacing: -0.012em; }
.qcard .who { margin-top: 22px; padding-left: 14px; border-left: 3px solid var(--brand); }
.qcard .who .n { font-weight: 700; font-family: var(--display); color: var(--ink); font-size: .92rem; }
.qcard .who .r { font-size: .82rem; color: var(--muted); margin-top: 1px; }

/* ---------- Who it's for (tabs) ---------- */
.whofor-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: clamp(32px, 4vw, 48px); }
.whofor-tab {
  font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-xs);
  padding: 12px 26px; border-radius: 100px; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.whofor-tab:hover { border-color: var(--line-2); color: var(--ink); }
.whofor-tab.active { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--sh-brand); }
.whofor-panels { display: grid; }
.whofor-panel { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(8px); pointer-events: none; transition: opacity .3s ease, transform .3s ease, visibility .3s ease; }
.whofor-panel.active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

/* ---------- Hero proof link ---------- */
.proof-link { color: inherit; transition: color .15s ease; }
.proof-link:hover { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Article (blog post) ---------- */
.article-hero { padding: clamp(52px, 6vw, 84px) 0 clamp(28px, 3vw, 40px); }
.article-hero::before { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(720px 340px at 30% -30%, rgba(20,184,166,.10), transparent 60%), radial-gradient(600px 320px at 90% -20%, rgba(37,99,235,.10), transparent 62%); }
.article-back { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--muted); font-size: .92rem; margin-bottom: 22px; transition: color .15s ease, gap .18s ease; }
.article-back:hover { color: var(--brand-600); gap: 11px; }
.article-back svg { width: 16px; height: 16px; }
.article-head { max-width: 760px; }
.article-eyebrow { color: var(--brand-600); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.article-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 16px; letter-spacing: -0.03em; }
.article-sub { font-size: 1.2rem; color: var(--muted); }
.article-byline { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-byline .a { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--display); }
.article-byline .an { font-weight: 700; font-family: var(--display); color: var(--ink); font-size: .95rem; }
.article-byline .ad { font-size: .85rem; color: var(--muted); }
.article-body { max-width: 720px; padding-bottom: clamp(40px, 5vw, 72px); }
.article-body > * { margin: 0; }
.article-body p { font-size: 1.14rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.35em; }
.article-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 1.7em 0 .6em; letter-spacing: -0.025em; }
.article-body h3 { font-size: 1.28rem; margin: 1.5em 0 .5em; }
.article-body ul, .article-body ol { margin: 0 0 1.35em; padding-left: 1.3em; }
.article-body li { font-size: 1.14rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: .5em; }
.article-body blockquote { margin: 1.5em 0; padding: 6px 0 6px 26px; border-left: 3px solid var(--teal); font-family: var(--display); font-weight: 500; font-size: 1.35rem; line-height: 1.4; color: var(--ink); letter-spacing: -0.02em; }
.article-body a { color: var(--brand-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.post-nav { display: flex; justify-content: space-between; gap: 16px; max-width: 720px; margin-top: 8px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.post-nav a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-soft); font-size: .95rem; transition: color .15s ease; }
.post-nav a:hover { color: var(--brand-600); }
.post-nav a.next { margin-left: auto; }
.post-nav svg { width: 16px; height: 16px; }

/* Article layout with sidebar */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.article-main { min-width: 0; }
.article-aside { display: grid; gap: 18px; align-self: start; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-xs); }
.aside-card h4 { font-size: 1rem; margin-bottom: 14px; }
.author-card .ac-top { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.author-card .a { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--display); flex-shrink: 0; }
.author-card .an { font-weight: 700; font-family: var(--display); color: var(--ink); font-size: .95rem; }
.author-card .ad { font-size: .83rem; color: var(--muted); }
.author-card p { font-size: .92rem; line-height: 1.6; margin-bottom: 14px; }
.cta-card { background: linear-gradient(160deg, var(--brand-tint2), #fff); border-color: var(--brand-tint); }
.cta-card p { font-size: .92rem; line-height: 1.6; margin-bottom: 16px; color: var(--body); }
.cta-card .btn { width: 100%; }
.more-list { display: grid; gap: 16px; }
.more-post { display: block; }
.more-post .mp-date { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.more-post .mp-title { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: .95rem; line-height: 1.3; transition: color .15s ease; }
.more-post:hover .mp-title { color: var(--brand-600); }
@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-aside { position: static; grid-template-columns: 1fr 1fr; }
  .article-aside .cta-card { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .article-aside { grid-template-columns: 1fr; }
}

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding-bottom: clamp(40px, 5vw, 64px); }
.legal .updated { color: var(--muted); font-size: .92rem; margin-bottom: 8px; }
.legal h2 { font-size: 1.4rem; margin: 1.9em 0 .5em; letter-spacing: -0.02em; }
.legal h2:first-of-type { margin-top: .4em; }
.legal h3 { font-size: 1.12rem; margin: 1.4em 0 .4em; color: var(--ink-soft); }
.legal p { font-size: 1rem; line-height: 1.75; color: var(--body); margin-bottom: 1em; }
.legal ul { margin: 0 0 1.1em; padding-left: 1.25em; }
.legal li { font-size: 1rem; line-height: 1.7; color: var(--body); margin-bottom: .45em; }
.legal a { color: var(--brand-600); font-weight: 600; word-break: break-word; }
.legal strong { color: var(--ink-soft); font-weight: 600; }
.legal .table-wrap { overflow-x: auto; margin: 1.2em 0 1.6em; border: 1px solid var(--line); border-radius: var(--r-sm); -webkit-overflow-scrolling: touch; }
.legal table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: .92rem; }
.legal thead th { background: var(--bg-soft); text-align: left; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: .82rem; letter-spacing: -0.01em; padding: 13px 16px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.legal tbody td { padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--body); line-height: 1.6; vertical-align: top; }
.legal tbody tr:last-child td { border-bottom: none; }
.legal tbody tr:nth-child(even) { background: #fbfcfe; }
.legal tbody td:first-child { font-weight: 600; color: var(--ink-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .hero .lead { max-width: none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split.rev .split-visual { order: 0; }
  .steps, .cards3, .values { grid-template-columns: 1fr; gap: 18px; }
  .tgrid6 { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .leader { grid-template-columns: 1fr; gap: 30px; max-width: 540px; text-align: center; justify-items: center; }
  .leader-photo { width: 200px; }
  .leader .creds { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .featured .post { flex-direction: column; }
  .featured .post-thumb { width: 100%; min-height: 200px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: flex; }
  body.menu-open { overflow: hidden; }
  .stats, .tgrid, .tgrid6, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-cta .btn { width: 100%; }
  .tcard blockquote { font-size: 1.15rem; }
}
@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .float-card { padding: 10px 12px; }
  .float-1 { right: -4px; }
  .float-2 { left: -4px; }
}
/* Testimonials on mobile: swipe between two pages of three (3 + 3) */
@media (max-width: 760px) {
  .tgrid6 {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-rows: repeat(3, auto);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 4px 2px 14px;
  }
  .tgrid6 > .qcard { scroll-snap-align: start; min-height: 0; }
}
