/* =============================================================
   AIWO Tribe  -  World-Class Website
   Design System & Components  ·  "AIWO Longevity Spectrum"
   Built in the voice of the Creative & Content Head.
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Foundations */
  --ink: #0B0F17;
  --white: #FFFFFF;
  --mist: #F5F8FC;
  --cloud: #EDF2F8;
  --line: #E1E8F2;
  --slate: #5B6B85;
  --graphite: #1B2230;

  /* Primary - the Vitality Gradient */
  --teal: #00C2A8;
  --indigo: #4A29C9;
  --primary-solid: #3A2BC0;
  --teal-tint: #E6FBF7;
  --indigo-tint: #ECE8FB;
  --grad: linear-gradient(120deg, #00C2A8 0%, #4A29C9 100%);
  --grad-soft: linear-gradient(120deg, rgba(0,194,168,.14) 0%, rgba(74,41,201,.14) 100%);
  --grad-bright: linear-gradient(120deg, #14E0C2 0%, #6A45F0 100%);

  /* Secondary - warm energy */
  --coral: #FF6B4A;
  --amber-deep: #FF9E2C;
  --coral-tint: #FFE9E3;

  /* Tertiary - vibrant spectrum (data, categories) */
  --sky: #2BA8FF;
  --violet: #7A3FF2;
  --magenta: #E0218A;
  --mint: #2FD08A;
  --amber: #FFB020;
  --cobalt: #3858E9;

  /* Semantic */
  --success: #1FB47A;
  --info: #2BA8FF;
  --warning: #FFB020;
  --danger: #E0454B;

  /* Type */
  --font-display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radius */
  --r-card: 20px;
  --r-btn: 12px;
  --r-pill: 999px;
  --r-media: 24px;

  /* Elevation */
  --shadow-sm: 0 8px 24px -12px rgba(11,15,23,.14);
  --shadow: 0 20px 60px -20px rgba(11,15,23,.18);
  --shadow-lg: 0 40px 90px -30px rgba(11,15,23,.28);
  --glow: 0 0 80px -10px rgba(74,41,201,.45);

  /* Layout */
  --max: 1280px;
  --pad: 120px;

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --nav-h: 72px;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { 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;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: rgba(74,41,201,.18); }

/* ---------- 3. UTILITIES ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--pad) 0; position: relative; }
.section--tight { padding: 80px 0; }
.dark { background: var(--ink); color: var(--white); }
.mist { background: var(--mist); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-solid);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.dark .eyebrow { color: var(--teal); }
.dark .eyebrow::before { background: var(--grad-bright); }
.eyebrow.center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
.display { font-size: clamp(38px, 6vw, 66px); font-weight: 800; line-height: 1.04; letter-spacing: -.03em; }
h2.heading { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 0; }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--slate); line-height: 1.6; }
.dark .lede { color: rgba(255,255,255,.72); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.dark .grad-text { background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-btn);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  position: relative; white-space: nowrap; will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(74,41,201,.5); }
.btn--primary:hover { box-shadow: 0 18px 44px -10px rgba(74,41,201,.62); transform: translateY(-2px); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--primary-solid); color: var(--primary-solid); transform: translateY(-2px); }
.dark .btn--ghost, .hero .btn--ghost, .final-cta .btn--ghost, .subhero .btn--ghost, .m-sticky-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.24); }
.dark .btn--ghost:hover, .hero .btn--ghost:hover, .final-cta .btn--ghost:hover, .subhero .btn--ghost:hover, .m-sticky-cta .btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 12px 30px -10px rgba(255,107,74,.5); }
.btn--coral:hover { background: #ff5a36; transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(255,107,74,.6); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 17px 34px; font-size: 16px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--primary-solid);
  position: relative;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow:hover svg { transform: translateX(4px); }
.dark .link-arrow { color: var(--teal); }

/* ---------- 5. TOP UTILITY BAR ---------- */
.utility {
  background: var(--ink); color: rgba(255,255,255,.72);
  font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.utility .wrap { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.utility a { transition: color .2s; }
.utility a:hover { color: #fff; }
.utility-l, .utility-r { display: flex; align-items: center; gap: 22px; }
.utility-r .util-cta { color: var(--teal); font-weight: 600; }
.util-divider { width: 1px; height: 14px; background: rgba(255,255,255,.16); }
@media (max-width: 980px){ .utility { display: none; } }

/* ---------- 6. NAVIGATION ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-size: 16px; box-shadow: 0 6px 16px -6px rgba(74,41,201,.6);
}
.brand small { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--slate); display: block; font-weight: 500; margin-top: -3px; }
/* AIWO Tribe brand lockup - AIWO (wordmark, top) · Tribe (large) · descriptor */
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1.04; }
.brand .brand-txt small { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--slate); font-weight: 600; text-transform: uppercase; display: block; margin: 0; }
.brand .brand-txt b { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -.01em; margin-top: 1px; }
.brand .bt-desc { display: none; }
.footer-brand .brand .bt-desc { display: block; font-style: normal; font-family: var(--font-body); font-weight: 400; font-size: 10.5px; letter-spacing: .02em; color: rgba(255,255,255,.55); margin-top: 7px; padding-top: 7px; border-top: 1px solid rgba(255,255,255,.16); max-width: 240px; }
.m-overlay .brand .brand-txt small, .footer-brand .brand .brand-txt small { color: rgba(255,255,255,.62); }

/* ---- AIWO Tribe logo (official PNG, black on light / white on dark) ---- */
.brand .logo-img { display: block; height: 26px; width: auto; }
.footer-brand .brand .logo-img, .m-overlay .brand .logo-img { height: 24px; }
@media (max-width: 1360px) and (min-width: 1081px){
  .nav .brand .logo-img { height: 21px; }
}
@media (max-width: 560px){
  .nav .brand .logo-img { height: 22px; }
}

.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; min-width: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 10px 10px; border-radius: 10px; font-weight: 500; font-size: 15px;
  color: var(--graphite); transition: color .2s, background .2s;
}
.nav-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); opacity: .6; }
.nav-item:hover .nav-link,
.nav-item--mega.open > .nav-link { color: var(--primary-solid); background: var(--mist); }
.nav-item:hover .nav-link svg,
.nav-item--mega.open > .nav-link svg { transform: rotate(180deg); }
/* current-page indicator */
.nav-link.current { color: var(--primary-solid); box-shadow: inset 0 -2.5px 0 -0.5px var(--primary-solid); border-radius: 10px 10px 4px 4px; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: max-content; max-width: min(760px, calc(100vw - 24px));
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 120;
}
.nav-item--mega { position: static; }
.nav-item--mega:hover .mega,
.nav-item--mega.open .mega,
.nav-item--mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
/* Invisible hover bridge - spans full width so the cursor never crosses dead
   space when moving from an (edge) menu item to the centered mega panel. */
.mega::before { content:""; position:absolute; top:-14px; left:-100vw; right:-100vw; height:16px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mega-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 12px; font-weight: 600; }
.mega-link { display: block; padding: 9px 12px; border-radius: 10px; font-weight: 500; font-size: 14.5px; color: var(--graphite); transition: background .18s, color .18s, padding .18s; }
.mega-link span { display: block; font-size: 12.5px; color: var(--slate); font-weight: 400; margin-top: 1px; }
.mega-link:hover { background: var(--mist); color: var(--primary-solid); padding-left: 16px; }
.mega-feature {
  grid-column: 1 / -1; margin-top: 4px;
  background: var(--grad-soft); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.mega-feature p { font-weight: 600; font-size: 14.5px; }
.mega-feature .link-arrow { font-size: 13.5px; white-space: nowrap; }

.nav-burger { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }

/* Anchor landings clear the sticky header (+ sub-nav where present) */
main [id], section[id] { scroll-margin-top: 132px; }

/* Mid-width tier: guarantee the 6 items + CTAs always fit on ONE row */
@media (max-width: 1360px) and (min-width: 1081px){
  .nav .wrap { padding: 0 20px; }
  .nav-links { gap: 0; }
  .nav-link { padding: 10px 9px; font-size: 14px; gap: 4px; }
  .nav-link svg { width: 12px; height: 12px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn--sm { padding: 10px 14px; font-size: 13.5px; }
  .brand .brand-txt b { font-size: 18px; }
}
@media (max-width: 1180px) and (min-width: 1081px){
  .nav-cta .btn--ghost { display: none; }
}
@media (max-width: 1080px){
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-burger { display: flex; }
}

/* Mobile overlay */
.m-overlay {
  position: fixed; inset: 0; z-index: 200; background: var(--ink); color: #fff;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; padding: 24px; overflow-y: auto;
}
.m-overlay.open { transform: translateX(0); }
.m-overlay-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.m-overlay .brand { color: #fff; }
.m-close { width: 44px; height: 44px; color: #fff; font-size: 26px; }
.m-acc { border-bottom: 1px solid rgba(255,255,255,.1); }
.m-acc-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 4px; font-family: var(--font-display); font-weight: 600; font-size: 19px; width: 100%; color: #fff; }
.m-acc-head svg { width: 18px; height: 18px; transition: transform .3s; }
.m-acc.open .m-acc-head svg { transform: rotate(45deg); }
.m-acc-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.m-acc.open .m-acc-body { max-height: 420px; }
.m-acc-body a { display: block; padding: 11px 4px; color: rgba(255,255,255,.7); font-size: 15px; }
.m-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; gap: 10px; padding: 12px 16px; background: rgba(11,15,23,.92); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.1); }
.m-sticky-cta .btn { flex: 1; justify-content: center; }
@media (max-width: 1080px){ .m-sticky-cta { display: flex; } body { padding-bottom: 78px; } }

/* ---------- 7. SCROLL PROGRESS ---------- */
.scroll-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-bright); z-index: 300; transition: width .1s linear; }

/* ---------- 8. HERO ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: clamp(70px,9vw,120px) 0 clamp(80px,9vw,130px); }
.hero-mesh { position: absolute; inset: -20% -10% -10% -10%; z-index: 0; filter: blur(20px); opacity: .9; }
.hero-mesh .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; will-change: transform; }
.blob-1 { width: 620px; height: 620px; background: radial-gradient(circle, #00C2A8, transparent 65%); top: -180px; left: -120px; animation: drift1 22s ease-in-out infinite; }
.blob-2 { width: 680px; height: 680px; background: radial-gradient(circle, #4A29C9, transparent 65%); top: -120px; right: -160px; animation: drift2 26s ease-in-out infinite; }
.blob-3 { width: 520px; height: 520px; background: radial-gradient(circle, #2BA8FF, transparent 70%); bottom: -240px; left: 30%; animation: drift3 30s ease-in-out infinite; }
.blob-4 { width: 360px; height: 360px; background: radial-gradient(circle, #FF6B4A, transparent 70%); bottom: -160px; right: 12%; opacity: .35; animation: drift1 24s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,40px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-50px,50px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-50px)} }
.hero-grid-overlay { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%); }

.hero .wrap { position: relative; z-index: 3; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); font-size: 12.5px; color: rgba(255,255,255,.85); margin-bottom: 26px; background: rgba(255,255,255,.04); backdrop-filter: blur(6px); }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(0,194,168,.18); animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 4px rgba(0,194,168,.18);} 50%{ box-shadow: 0 0 0 8px rgba(0,194,168,.05);} }
.hero h1 { font-size: clamp(36px, 5.4vw, 60px); font-weight: 800; line-height: 1.04; letter-spacing: -.03em; }
.hero h1 .grad-text { display: inline; }
.hero-sub { margin: 26px 0 34px; max-width: 540px; font-size: clamp(16px,1.4vw,19px); color: rgba(255,255,255,.74); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-trust p { font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.5); font-family: var(--font-mono); margin-bottom: 14px; }
.logo-row { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.logo-row .logo-chip { font-weight: 700; font-size: 15px; color: rgba(255,255,255,.62); letter-spacing: -.01em; }

/* Hero visual - organ-age dials cluster */
.hero-visual { position: relative; height: 460px; }
.dial-card {
  position: absolute; background: rgba(27,34,48,.66); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 16px 18px;
  box-shadow: var(--shadow-lg); will-change: transform; animation: float 6s ease-in-out infinite;
}
.dial-card .dlabel { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); font-family: var(--font-mono); }
.dial-card .dval { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1.1; margin-top: 2px; }
.dial-card .dunit { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }
.dial-card .dbar { height: 5px; border-radius: 4px; background: rgba(255,255,255,.12); margin-top: 10px; overflow: hidden; }
.dial-card .dbar i { display: block; height: 100%; border-radius: 4px; width: 0; transition: width 1.4s var(--ease); }
.dc-1 { top: 0; left: 0; animation-delay: 0s; }
.dc-2 { top: 120px; right: 0; animation-delay: 1.2s; }
.dc-3 { bottom: 40px; left: 30px; animation-delay: 2.4s; }
.dc-joyspan { top: 150px; left: 50%; transform: translateX(-50%); background: var(--grad); border: none; padding: 22px 26px; box-shadow: var(--glow); z-index: 4; }
.dc-joyspan .dlabel { color: rgba(255,255,255,.8); }
.dc-joyspan .dval { font-size: 42px; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.dc-joyspan { animation: floatC 7s ease-in-out infinite; }
@keyframes floatC { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(-10px);} }

@media (max-width: 920px){
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 360px; margin-top: 10px; }
}

/* ---------- 9. SECTION HEADER ---------- */
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; }
.sec-head .lede { margin-top: 18px; }

/* ---------- 10. PROBLEM CARDS ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.prob-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.prob-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.prob-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: var(--coral-tint); color: var(--coral); }
.prob-icon svg { width: 26px; height: 26px; }
.prob-card h3 { font-size: 21px; margin-bottom: 10px; }
.prob-card p { color: var(--slate); font-size: 15.5px; }
@media (max-width: 820px){ .cards-3 { grid-template-columns: 1fr; } }

/* ---------- 11. SHIFT (before/after toggle) ---------- */
.shift { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.shift-card { border-radius: var(--r-card); padding: 38px; position: relative; overflow: hidden; }
.shift-card .tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; display: inline-block; }
.shift-old { background: var(--cloud); border: 1px solid var(--line); }
.shift-old .tag { color: var(--slate); }
.shift-old h3 { color: var(--graphite); }
.shift-new { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.shift-new::after { content:""; position:absolute; inset:0; background: var(--grad-soft); opacity:.4; }
.shift-new > * { position: relative; z-index: 1; }
.shift-new .tag { color: var(--teal); }
.shift-card h3 { font-size: 24px; margin-bottom: 14px; }
.shift-card ul { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.shift-card li { display: flex; gap: 11px; font-size: 15.5px; align-items: flex-start; }
.shift-card li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
.shift-old li { color: var(--slate); }
.shift-new li { color: rgba(255,255,255,.82); }
.shift-arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 4; width: 56px; height: 56px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: var(--glow); }
.shift-arrow svg { width: 24px; height: 24px; color: #fff; }
@media (max-width: 820px){ .shift { grid-template-columns: 1fr; } .shift-arrow { display: none; } }

/* ---------- 12. FRAMEWORK QUADRANT ---------- */
.fw-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.fw-card { position: relative; border-radius: var(--r-card); padding: 28px 24px; background: var(--graphite); color: #fff; overflow: hidden; cursor: pointer; transition: transform .4s var(--ease); min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; }
.fw-card::before { content:""; position:absolute; inset:0; opacity:0; transition: opacity .4s; }
.fw-card:hover { transform: translateY(-8px); }
.fw-card:hover::before { opacity: 1; }
.fw-card .fw-step { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; opacity: .6; }
.fw-card h3 { font-size: 23px; margin: 14px 0 8px; position: relative; z-index: 1; }
.fw-card p { font-size: 14px; color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.fw-card .fw-role { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; position: relative; z-index: 1; }
.fw-1::before { background: linear-gradient(160deg, rgba(0,194,168,.32), transparent); }
.fw-2::before { background: linear-gradient(160deg, rgba(122,63,242,.32), transparent); }
.fw-3::before { background: linear-gradient(160deg, rgba(43,168,255,.32), transparent); }
.fw-4::before { background: linear-gradient(160deg, rgba(255,107,74,.3), transparent); }
.fw-1 .fw-role { color: var(--teal); } .fw-2 .fw-role { color: var(--violet); }
.fw-3 .fw-role { color: var(--sky); } .fw-4 .fw-role { color: var(--coral); }
.fw-flow { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 13px; color: var(--slate); }
.dark .fw-flow { color: rgba(255,255,255,.6); }
.fw-flow b { color: var(--primary-solid); font-weight: 600; }
.dark .fw-flow b { color: var(--teal); }
.fw-flow .arr { color: var(--coral); }
@media (max-width: 900px){ .fw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .fw-grid { grid-template-columns: 1fr; } }

/* ---------- 13. SIIS LOOP ---------- */
.siis { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; margin-top: 40px; }
.siis-stage-wrap { display: flex; flex-direction: column; gap: 14px; }
.siis-stage { display: flex; gap: 18px; padding: 20px 22px; border-radius: 16px; border: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: background .3s, border-color .3s, transform .3s; background: rgba(255,255,255,.02); }
.siis-stage.active { background: rgba(255,255,255,.06); border-color: rgba(0,194,168,.4); }
.siis-stage .num { font-family: var(--font-display); font-weight: 800; font-size: 22px; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); transition: all .3s; }
.siis-stage.active .num { background: var(--grad-bright); color: #fff; }
.siis-stage h4 { font-size: 18px; font-family: var(--font-display); }
.siis-stage p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; }
.siis-visual { position: relative; display: grid; place-items: center; }
.siis-ring { width: 100%; max-width: 420px; }
.siis-center { position: absolute; text-align: center; }
.siis-center .scc-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.siis-center .scc-stage { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,3vw,30px); margin-top: 6px; }
.siis-center .scc-sub { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 6px; max-width: 200px; }
.siis-cadence { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.cadence-chip { padding: 10px 16px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.14); font-size: 13px; color: rgba(255,255,255,.78); display: flex; align-items: center; gap: 8px; }
.cadence-chip b { color: var(--teal); }
@media (max-width: 900px){ .siis { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- 14. PROOF STATS + TRAJECTORY ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; margin-top: 54px; }
.stat { text-align: center; padding: 24px 12px; border-radius: 16px; border: 1px solid var(--line); background: #fff; transition: transform .3s var(--ease), box-shadow .3s; }
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.stat .snum { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3vw,38px); line-height: 1; }
.stat .slabel { font-size: 12.5px; color: var(--slate); margin-top: 8px; line-height: 1.35; }
@media (max-width: 900px){ .stats-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 520px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }

.traj { margin-top: 60px; background: var(--ink); border-radius: var(--r-media); padding: 44px; color: #fff; position: relative; overflow: hidden; }
.traj-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; position: relative; z-index: 2; }
.traj-head h3 { font-size: 24px; }
.traj-head p { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 4px; }
.privacy-chip { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: var(--r-pill); background: rgba(0,194,168,.12); border: 1px solid rgba(0,194,168,.3); color: var(--teal); font-size: 13px; font-weight: 500; }
.privacy-chip svg { width: 15px; height: 15px; }
.traj-chart { position: relative; z-index: 2; }
.traj-chart svg { width: 100%; height: auto; overflow: visible; }
.traj-path { fill: none; stroke: url(#trajGrad); stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 2.4s var(--ease); }
.traj-path.drawn { stroke-dashoffset: 0; }
.traj-area { fill: url(#trajArea); opacity: 0; transition: opacity 1.6s ease 1s; }
.traj-area.drawn { opacity: 1; }
.traj-dot { opacity: 0; transition: opacity .4s ease; }
.traj-dot.drawn { opacity: 1; }
.traj-yr { fill: rgba(255,255,255,.5); font-size: 12px; font-family: var(--font-mono); }

/* ---------- 15. VALUE TABS ---------- */
.tabs-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 44px; border-bottom: 1px solid var(--line); padding-bottom: 0; }
.tab-btn { padding: 14px 20px; font-weight: 600; font-size: 15px; color: var(--slate); position: relative; border-radius: 10px 10px 0 0; transition: color .25s; }
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--primary-solid); }
.tab-btn::after { content:""; position:absolute; left: 16px; right: 16px; bottom: -1px; height: 3px; background: var(--grad); border-radius: 3px; transform: scaleX(0); transition: transform .3s var(--ease); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-panels { margin-top: 36px; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px);} to { opacity:1; transform: translateY(0);} }
.tab-content h3 { font-size: clamp(24px,3vw,32px); margin-bottom: 16px; }
.tab-content p { color: var(--slate); font-size: 16px; margin-bottom: 20px; }
.tab-proof { display: inline-flex; align-items: center; gap: 12px; padding: 14px 20px; background: var(--mist); border-radius: 14px; border: 1px solid var(--line); margin-bottom: 22px; }
.tab-proof .tp-num { font-family: var(--font-display); font-weight: 800; font-size: 28px; }
.tab-proof .tp-txt { font-size: 13.5px; color: var(--slate); line-height: 1.35; }
.tab-visual { border-radius: var(--r-media); overflow: hidden; aspect-ratio: 4/3; position: relative; background: var(--graphite); display: grid; place-items: center; }
.tab-visual-inner { position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; }
@media (max-width: 820px){ .tab-panel.active { grid-template-columns: 1fr; } .tab-visual { order: -1; aspect-ratio: 16/9; } }

/* ---------- 16. APP EXPERIENCE ---------- */
.app-sec { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.app-phone { position: relative; display: grid; place-items: center; }
.phone {
  width: 290px; height: 590px; border-radius: 42px; background: var(--ink);
  border: 10px solid #232c3d; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.phone::before { content:""; position:absolute; top:14px; left:50%; transform:translateX(-50%); width:110px; height:26px; background:#232c3d; border-radius: 999px; z-index: 5; }
.phone-screen { position: absolute; inset: 0; background: linear-gradient(180deg, #0B0F17, #131a2b); padding: 56px 20px 24px; color: #fff; overflow: hidden; }
.ps-greet { font-size: 13px; color: rgba(255,255,255,.55); }
.ps-score-card { background: var(--grad); border-radius: 20px; padding: 22px; margin-top: 14px; box-shadow: var(--glow); }
.ps-score-card .l { font-size: 12px; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono); }
.ps-score-card .n { font-family: var(--font-display); font-weight: 800; font-size: 46px; line-height: 1; margin: 6px 0; }
.ps-score-card .t { font-size: 12px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 6px; }
.ps-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.ps-mini { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 14px; }
.ps-mini .ml { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.ps-mini .mn { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-top: 4px; }
.ps-mini .mn small { font-size: 12px; color: rgba(255,255,255,.5); }
.ps-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.ps-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.04); border-radius: 12px; padding: 11px 12px; font-size: 12.5px; }
.ps-item .ic { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.app-chips { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.app-chip { display: flex; gap: 16px; padding: 20px; border-radius: 16px; border: 1px solid var(--line); background: #fff; transition: transform .3s var(--ease), box-shadow .3s; }
.app-chip:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.app-chip .ac-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.app-chip h4 { font-size: 17px; }
.app-chip p { font-size: 14px; color: var(--slate); margin-top: 3px; }
@media (max-width: 900px){ .app-sec { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- 17. PILLAR WHEEL ---------- */
.pillars-sec { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.wheel-wrap { position: relative; aspect-ratio: 1; max-width: 460px; margin: 0 auto; width: 100%; }
.wheel-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.wheel-seg { cursor: pointer; transition: opacity .25s, transform .25s; transform-origin: center; }
.wheel-seg:hover { opacity: .85; }
.wheel-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46%; height: 46%; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: grid; place-items: center; text-align: center; padding: 18px; }
.wheel-center .wc-p { font-family: var(--font-mono); font-size: 12px; color: var(--primary-solid); letter-spacing: .08em; }
.wheel-center .wc-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(18px,2.4vw,24px); margin: 6px 0; }
.wheel-center .wc-desc { font-size: 12.5px; color: var(--slate); line-height: 1.4; }
.pillar-detail h3 { font-size: clamp(24px,3vw,32px); }
.pillar-detail .pd-eyebrow { margin-bottom: 18px; }
.pd-panel { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.pd-row { display: flex; gap: 14px; align-items: flex-start; }
.pd-row .pd-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-soft); display: grid; place-items: center; flex-shrink: 0; color: var(--primary-solid); }
.pd-row .pd-ic svg { width: 19px; height: 19px; }
.pd-row h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--slate); font-family: var(--font-mono); }
.pd-row p { font-size: 15px; margin-top: 2px; }
.pd-connect { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600; }
@media (max-width: 900px){ .pillars-sec { grid-template-columns: 1fr; gap: 40px; } .wheel-wrap { max-width: 360px; } }

/* ---------- 18. DELIVERY & TRUST BAND ---------- */
.dt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.dt-card { border-radius: var(--r-card); padding: 38px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); }
.dt-card .dt-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; }
.dt-card h3 { font-size: 23px; margin-bottom: 18px; }
.dt-card ul { display: flex; flex-direction: column; gap: 14px; }
.dt-card li { display: flex; gap: 12px; font-size: 15px; color: rgba(255,255,255,.78); align-items: flex-start; }
.dt-card li svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.dt-card li b { color: #fff; font-weight: 600; }
@media (max-width: 820px){ .dt-grid { grid-template-columns: 1fr; } }

/* ---------- 19. PRICING ---------- */
.pricing-toggle { display: inline-flex; gap: 4px; padding: 5px; border-radius: var(--r-pill); background: var(--cloud); margin: 36px auto 0; }
.pt-btn { padding: 10px 22px; border-radius: var(--r-pill); font-weight: 600; font-size: 14px; color: var(--slate); transition: color .25s; position: relative; z-index: 1; }
.pt-btn.active { color: #fff; }
.pricing-toggle { position: relative; }
.pt-pill { position: absolute; top: 5px; left: 5px; height: calc(100% - 10px); background: var(--grad); border-radius: var(--r-pill); transition: transform .4s var(--ease), width .4s var(--ease); z-index: 0; box-shadow: 0 6px 16px -6px rgba(74,41,201,.5); }
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.price-card { border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; background: #fff; position: relative; transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border-color: transparent; box-shadow: var(--shadow); background: var(--ink); color: #fff; }
.price-card.featured::before { content:""; position:absolute; inset:0; border-radius: var(--r-card); padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price-tag-badge { position: absolute; top: -13px; left: 34px; background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 600; padding: 6px 14px; border-radius: var(--r-pill); letter-spacing: .04em; text-transform: uppercase; }
.price-card .pc-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.price-card .pc-desc { font-size: 13.5px; color: var(--slate); margin-top: 6px; min-height: 38px; }
.price-card.featured .pc-desc { color: rgba(255,255,255,.6); }
.price-card .pc-price { font-family: var(--font-display); font-weight: 800; font-size: 40px; margin: 18px 0 2px; }
.price-card .pc-price small { font-size: 15px; color: var(--slate); font-weight: 500; }
.price-card.featured .pc-price small { color: rgba(255,255,255,.55); }
.price-card .pc-unit { font-size: 13px; color: var(--slate); }
.price-card.featured .pc-unit { color: rgba(255,255,255,.55); }
.price-card ul { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.price-card li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.price-card.featured li { color: rgba(255,255,255,.82); }
.price-card .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; font-size: 13px; color: var(--slate); margin-top: 28px; }
@media (max-width: 900px){ .price-cards { grid-template-columns: 1fr; max-width: 440px; margin-left:auto; margin-right:auto; } }

/* ---------- 20. FINAL CTA ---------- */
.final-cta { position: relative; overflow: hidden; text-align: center; }
.final-cta .wrap { position: relative; z-index: 2; }
.final-mesh { position: absolute; inset: 0; z-index: 0; opacity: .85; filter: blur(10px); }
.final-cta h2 { font-size: clamp(32px,5vw,52px); }
.final-cta .lede { max-width: 560px; margin: 22px auto 36px; }
.final-cta .hero-cta { justify-content: center; }
.final-reassure { margin-top: 26px; font-size: 13px; color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 8px; }

/* ---------- 21. FOOTER ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 80px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand .fb-promise { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; line-height: 1.4; max-width: 280px; }
.footer-news { margin-top: 24px; }
.footer-news label { font-size: 13px; color: rgba(255,255,255,.6); display: block; margin-bottom: 10px; }
.news-form { display: flex; gap: 8px; max-width: 320px; }
.news-form input { flex: 1; padding: 12px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: #fff; font-family: inherit; font-size: 14px; }
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form button { padding: 12px 16px; border-radius: 10px; background: var(--grad); color: #fff; display: grid; place-items: center; }
.footer-col h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-mono); margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-badges { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.badge-chip { font-size: 11px; padding: 7px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.6); font-family: var(--font-mono); letter-spacing: .04em; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 14px; font-size: 13px; }
.footer-bottom .fb-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 8px; max-width: 100%; }
@media (max-width: 900px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px){ .footer-top { grid-template-columns: 1fr; } }

/* ---------- 22. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- 23. SECTION RAIL NAV ---------- */
.rail { position: fixed; right: 26px; top: 50%; transform: translateY(-50%); z-index: 80; display: flex; flex-direction: column; gap: 14px; }
.rail a { width: 11px; height: 11px; border-radius: 50%; background: var(--line); transition: all .3s var(--ease); position: relative; }
.rail a.active { background: var(--grad); transform: scale(1.35); }
.rail a span { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); white-space: nowrap; font-size: 12px; font-weight: 600; background: var(--ink); color: #fff; padding: 5px 11px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.rail a:hover span { opacity: 1; }
@media (max-width: 1280px){ .rail { display: none; } }

/* ---------- 24. EDITORIAL IMAGE BAND (art direction) ---------- */
.editorial { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; background: var(--graphite); isolation: isolate; }
.editorial-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: grayscale(1) contrast(1.06) brightness(.9);
  transform: scale(1.08); transition: transform 1.2s var(--ease);
}
.editorial:hover .editorial-img { transform: scale(1.12); }
/* duotone: Ink → Teal/Indigo */
.editorial::before { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(120deg, rgba(0,194,168,.55), rgba(74,41,201,.78)); mix-blend-mode: multiply; }
.editorial::after { content:""; position:absolute; inset:0; z-index:2; background: linear-gradient(180deg, rgba(11,15,23,.5), rgba(11,15,23,.72)); }
.editorial-content { position: relative; z-index: 3; text-align: center; color: #fff; padding: 90px 24px; max-width: 820px; }
.editorial-content h2 { font-size: clamp(30px, 5vw, 52px); margin-top: 14px; }
.editorial-content .lede { color: rgba(255,255,255,.84); margin: 20px auto 0; max-width: 560px; }
.editorial-caption { position: absolute; bottom: 22px; left: 40px; z-index: 3; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; color: rgba(255,255,255,.55); text-transform: uppercase; }

/* ---------- 25. EMPLOYER DASHBOARD MOCK ---------- */
.dash { background: var(--ink); border-radius: var(--r-media); padding: 36px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.dash::before { content:""; position:absolute; top:-30%; right:-10%; width:420px; height:420px; background: radial-gradient(circle, rgba(74,41,201,.4), transparent 65%); filter: blur(40px); pointer-events:none; }
.dash-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; position: relative; z-index: 2; margin-bottom: 26px; }
.dash-title { display: flex; align-items: center; gap: 12px; }
.dash-title .dt-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(47,208,138,.18); }
.dash-title h3 { font-size: 18px; }
.dash-title p { font-size: 12.5px; color: rgba(255,255,255,.5); }
.dash-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.dash-filter { padding: 7px 14px; border-radius: var(--r-pill); font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.12); transition: all .25s; }
.dash-filter:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.dash-filter.active { background: var(--grad-bright); color: #fff; border-color: transparent; }
.dash-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; position: relative; z-index: 2; }
.dash-panel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 22px; }
.dash-panel .dp-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.dash-bars { display: flex; flex-direction: column; gap: 14px; }
.dash-bar-row { display: grid; grid-template-columns: 90px 1fr 42px; align-items: center; gap: 12px; }
.dash-bar-row .dbr-name { font-size: 13px; color: rgba(255,255,255,.78); }
.dash-bar-row .dbr-track { height: 8px; border-radius: 6px; background: rgba(255,255,255,.08); overflow: hidden; }
.dash-bar-row .dbr-fill { height: 100%; border-radius: 6px; width: 0; transition: width 1.1s var(--ease); }
.dash-bar-row .dbr-val { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-align: right; }
.dash-col { display: flex; flex-direction: column; gap: 16px; }
.dash-stat { display: flex; flex-direction: column; gap: 4px; }
.dash-stat .ds-big { font-family: var(--font-display); font-weight: 800; font-size: 38px; line-height: 1; }
.dash-stat .ds-cap { font-size: 12.5px; color: rgba(255,255,255,.55); }
.dash-spark { width: 100%; height: 40px; margin-top: 8px; }
.dash-ring-wrap { display: flex; align-items: center; gap: 16px; }
.dash-ring { width: 78px; height: 78px; flex-shrink: 0; }
.dash-themes { display: flex; flex-direction: column; gap: 10px; }
.dash-theme { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.dash-theme .dth-l { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.78); }
.dash-theme .dth-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-theme .dth-v { font-family: var(--font-mono); color: #fff; }
@media (max-width: 820px){ .dash-grid { grid-template-columns: 1fr; } }

/* ---------- 26. WORKFORCE SNAPSHOT ESTIMATOR ---------- */
.snap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; margin-top: 50px; }
.snap-inputs { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; box-shadow: var(--shadow-sm); }
.snap-field { margin-bottom: 26px; }
.snap-field:last-child { margin-bottom: 0; }
.snap-field label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.snap-field label .sf-val { font-family: var(--font-display); font-weight: 800; font-size: 20px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.snap-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: var(--cloud); outline: none; }
.snap-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--primary-solid); cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .15s; }
.snap-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.snap-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--primary-solid); cursor: pointer; }
.snap-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.snap-chip { padding: 9px 15px; border-radius: var(--r-pill); border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 500; color: var(--slate); transition: all .2s; }
.snap-chip:hover { border-color: var(--primary-solid); color: var(--primary-solid); }
.snap-chip.active { background: var(--grad); color: #fff; border-color: transparent; }
.snap-out { background: var(--ink); border-radius: var(--r-card); padding: 34px; color: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.snap-out::before { content:""; position:absolute; inset:0; background: var(--grad-soft); opacity:.5; }
.snap-out > * { position: relative; z-index: 1; }
.snap-out .so-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.snap-result { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.snap-result-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px; }
.snap-result-card .src-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.4vw,38px); line-height: 1; }
.snap-result-card .src-big small { font-size: 15px; color: rgba(255,255,255,.55); font-weight: 600; }
.snap-result-card .src-cap { font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 8px; line-height: 1.4; }
.snap-rec { margin-top: 20px; padding: 18px 20px; background: rgba(0,194,168,.1); border: 1px solid rgba(0,194,168,.28); border-radius: 14px; display: flex; gap: 12px; align-items: flex-start; }
.snap-rec svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.snap-rec b { color: #fff; }
.snap-rec p { font-size: 13.5px; color: rgba(255,255,255,.78); }
.snap-cta { margin-top: auto; padding-top: 22px; }
.snap-disclaim { font-size: 11.5px; color: rgba(255,255,255,.45); margin-top: 14px; }
@media (max-width: 820px){ .snap { grid-template-columns: 1fr; } }

/* ---------- 27. SUB-PAGE HERO + BREADCRUMB ---------- */
.subhero { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: clamp(54px,7vw,84px) 0 clamp(60px,7vw,90px); }
.subhero .hero-mesh { opacity: .7; }
.subhero .wrap { position: relative; z-index: 3; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 22px; font-family: var(--font-mono); }
.breadcrumb a { transition: color .2s; } .breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { opacity: .5; }
.subhero h1 { font-size: clamp(34px,5vw,56px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; max-width: 900px; }
.subhero .lede { margin: 22px 0 30px; max-width: 600px; color: rgba(255,255,255,.74); }
.subhero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.subhero-stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 44px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.subhero-stat .sh-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3vw,34px); }
.subhero-stat .sh-lab { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ---------- 28. STICKY SUB-NAV ---------- */
.subnav { position: sticky; top: var(--nav-h); z-index: 60; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.subnav .wrap { display: flex; gap: 6px; overflow-x: auto; height: 56px; align-items: center; scrollbar-width: none; }
.subnav .wrap::-webkit-scrollbar { display: none; }
.subnav a { padding: 8px 16px; border-radius: 10px; font-weight: 500; font-size: 14px; color: var(--slate); white-space: nowrap; transition: color .2s, background .2s; }
.subnav a:hover { color: var(--ink); background: var(--mist); }
.subnav a.active { color: var(--primary-solid); background: var(--mist); }

/* ---------- 29. INCLUDED GRID ---------- */
.included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 50px; }
.inc-card { border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; background: #fff; transition: transform .3s var(--ease), box-shadow .3s; }
.inc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.inc-card .inc-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; background: var(--grad-soft); color: var(--primary-solid); }
.inc-card .inc-ic svg { width: 24px; height: 24px; }
.inc-card h4 { font-size: 18px; margin-bottom: 8px; }
.inc-card p { font-size: 14.5px; color: var(--slate); }
.inc-card .inc-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--primary-solid); margin-top: 14px; letter-spacing: .03em; }
@media (max-width: 820px){ .included-grid { grid-template-columns: 1fr; } }

/* ---------- 30. JOURNEY TIMELINE ---------- */
.journey { margin-top: 50px; }
.journey-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.journey-track::before { content:""; position: absolute; top: 27px; left: 8%; right: 8%; height: 3px; background: var(--grad); border-radius: 3px; opacity: .3; }
.journey-node { text-align: center; padding: 0 14px; cursor: pointer; position: relative; }
.journey-dot { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: #fff; border: 3px solid var(--line); font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--slate); transition: all .3s var(--ease); position: relative; z-index: 2; }
.journey-node.active .journey-dot { border-color: transparent; background: var(--grad); color: #fff; box-shadow: var(--glow); transform: scale(1.08); }
.journey-node h4 { font-size: 16px; margin-bottom: 4px; transition: color .3s; }
.journey-node.active h4 { color: var(--primary-solid); }
.journey-node .jn-when { font-family: var(--font-mono); font-size: 11.5px; color: var(--slate); }
.journey-detail { margin-top: 40px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center; }
.journey-detail .jd-badge { width: 80px; height: 80px; border-radius: 20px; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 22px; text-align: center; line-height: 1.1; padding: 8px; }
.journey-detail h3 { font-size: 24px; margin-bottom: 8px; }
.journey-detail p { color: var(--slate); font-size: 16px; }
.journey-detail .jd-meta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--font-mono); font-size: 12.5px; color: var(--primary-solid); }
@media (max-width: 760px){ .journey-track { grid-template-columns: repeat(2,1fr); gap: 28px 0; } .journey-track::before { display: none; } .journey-detail { grid-template-columns: 1fr; text-align: center; } .journey-detail .jd-badge { margin: 0 auto; } }

/* ---------- 31. PANEL CHIPS (BioMAP 7) ---------- */
.panel-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 44px; }
.panel-chip { border-radius: 16px; padding: 24px; color: #fff; position: relative; overflow: hidden; min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .3s var(--ease); }
.panel-chip:hover { transform: translateY(-6px); }
.panel-chip .pc-n { font-family: var(--font-mono); font-size: 12px; opacity: .8; }
.panel-chip h4 { font-size: 19px; }
.panel-chip p { font-size: 12.5px; opacity: .85; margin-top: 4px; }
@media (max-width: 820px){ .panel-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- 32. TWO-LEVEL OUTCOME MODEL ---------- */
.twolevel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.tl-card { border-radius: var(--r-card); padding: 36px; position: relative; overflow: hidden; }
.tl-private { background: var(--mist); border: 1px solid var(--line); }
.tl-aggregate { background: var(--ink); color: #fff; }
.tl-card .tl-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px; }
.tl-private .tl-ic { background: var(--coral-tint); color: var(--coral); }
.tl-aggregate .tl-ic { background: rgba(0,194,168,.16); color: var(--teal); }
.tl-card h3 { font-size: 22px; margin-bottom: 6px; }
.tl-card .tl-who { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.tl-private .tl-who { color: var(--coral); } .tl-aggregate .tl-who { color: var(--teal); }
.tl-card ul { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.tl-card li { display: flex; gap: 11px; font-size: 15px; align-items: flex-start; }
.tl-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.tl-private li { color: var(--slate); } .tl-private li svg { color: var(--coral); }
.tl-aggregate li { color: rgba(255,255,255,.82); } .tl-aggregate li svg { color: var(--teal); }
@media (max-width: 820px){ .twolevel { grid-template-columns: 1fr; } }

/* ---------- 33. KPI SCORECARD TABLE ---------- */
.kpi-table { margin-top: 44px; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.kpi-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0; }
.kpi-row > div { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; font-size: 14.5px; }
.kpi-row:last-child > div { border-bottom: none; }
.kpi-head { background: var(--ink); color: #fff; }
.kpi-head > div { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; border-bottom: none; }
.kpi-row .kpi-metric { font-weight: 600; color: var(--ink); }
.kpi-row .kpi-val { font-family: var(--font-display); font-weight: 700; color: var(--primary-solid); }
.kpi-row:nth-child(even of :not(.kpi-head)) { background: var(--mist); }
.kpi-row.alt { background: var(--mist); }
@media (max-width: 700px){ .kpi-row { grid-template-columns: 1fr; } .kpi-row > div { border-bottom: 1px solid var(--line); } .kpi-head { display: none; } .kpi-row .kpi-metric::after { content: ""; } }

/* ---------- 34. PRICING MATRIX ---------- */
.matrix-wrap { margin-top: 50px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-card); }
.matrix { width: 100%; border-collapse: collapse; min-width: 720px; }
.matrix th, .matrix td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.matrix thead th { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; vertical-align: bottom; }
.matrix thead th.feat { background: linear-gradient(180deg, #1B2230, #0B0F17); position: relative; }
.matrix thead th small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 11px; color: rgba(255,255,255,.55); margin-top: 4px; letter-spacing: .04em; }
.matrix tbody th { font-weight: 600; color: var(--ink); }
.matrix .row-cat td, .matrix .row-cat th { background: var(--mist); font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); }
.matrix td.center { text-align: center; }
.matrix .yes { color: var(--success); } .matrix .no { color: var(--line); }
.matrix td.col-feat { background: rgba(74,41,201,.04); }
.matrix tr:last-child th, .matrix tr:last-child td { border-bottom: none; }

/* ---------- 35. FAQ ACCORDION ---------- */
.faq { max-width: 820px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); }
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary-solid); transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 22px; color: var(--slate); font-size: 15.5px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ---------- 36. MULTI-STEP FORM ---------- */
.book-layout { display: grid; grid-template-columns: 1.3fr .9fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 38px; box-shadow: var(--shadow); }
.form-progress { display: flex; align-items: center; gap: 0; margin-bottom: 32px; }
.fp-step { display: flex; align-items: center; flex: 1; }
.fp-step:last-child { flex: 0; }
.fp-num { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; background: var(--cloud); color: var(--slate); flex-shrink: 0; transition: all .3s var(--ease); }
.fp-step.active .fp-num { background: var(--grad); color: #fff; box-shadow: 0 6px 16px -6px rgba(74,41,201,.5); }
.fp-step.done .fp-num { background: var(--success); color: #fff; }
.fp-line { height: 2px; flex: 1; background: var(--line); margin: 0 8px; transition: background .3s; }
.fp-step.done .fp-line { background: var(--success); }
.form-step { display: none; animation: fadeUp .4s var(--ease); }
.form-step.active { display: block; }
.form-step h3 { font-size: 22px; margin-bottom: 6px; }
.form-step .fs-sub { color: var(--slate); font-size: 14.5px; margin-bottom: 24px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field input, .field select { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-btn); font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--primary-solid); box-shadow: 0 0 0 4px rgba(74,41,201,.1); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-btn); cursor: pointer; font-size: 14.5px; font-weight: 500; transition: all .2s; display: flex; align-items: center; gap: 10px; }
.choice:hover { border-color: var(--primary-solid); }
.choice.sel { border-color: transparent; background: var(--grad-soft); color: var(--primary-solid); box-shadow: inset 0 0 0 1.5px var(--primary-solid); }
.choice .ch-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; transition: all .2s; }
.choice.sel .ch-radio { border-color: var(--primary-solid); background: var(--primary-solid); box-shadow: inset 0 0 0 3px #fff; }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.form-review { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.review-row { display: flex; justify-content: space-between; padding: 12px 16px; background: var(--mist); border-radius: 12px; font-size: 14.5px; }
.review-row .rr-k { color: var(--slate); } .review-row .rr-v { font-weight: 600; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; animation: fadeUp .5s var(--ease); }
.form-success .fs-check { width: 72px; height: 72px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 24px; box-shadow: var(--glow); }
.form-success .fs-check svg { width: 36px; height: 36px; color: #fff; }
.form-success h3 { font-size: 26px; margin-bottom: 12px; }
.form-success p { color: var(--slate); max-width: 400px; margin: 0 auto 8px; }
.book-aside { position: sticky; top: 100px; }
.book-aside .ba-card { border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; background: var(--mist); margin-bottom: 20px; }
.book-aside h4 { font-size: 17px; margin-bottom: 16px; }
.book-aside ul { display: flex; flex-direction: column; gap: 13px; }
.book-aside li { display: flex; gap: 11px; font-size: 14.5px; color: var(--slate); align-items: flex-start; }
.book-aside li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.book-aside .ba-quote { background: var(--ink); color: #fff; border: none; }
.book-aside .ba-quote p { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.4; }
.book-aside .ba-quote .ba-cite { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 14px; font-family: var(--font-mono); }
@media (max-width: 900px){ .book-layout { grid-template-columns: 1fr; } .book-aside { position: static; } .field-row, .choice-grid { grid-template-columns: 1fr; } }

/* ---------- 37. REUSABLE TABSET (scoped tabs) ---------- */
.tabset-nav { display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-top: 10px; }
.ts-btn { padding: 13px 18px; font-weight: 600; font-size: 14.5px; color: var(--slate); position: relative; border-radius: 10px 10px 0 0; transition: color .25s; white-space: nowrap; }
.ts-btn:hover { color: var(--ink); }
.ts-btn.active { color: var(--primary-solid); }
.ts-btn::after { content:""; position:absolute; left: 14px; right: 14px; bottom: -1px; height: 3px; background: var(--grad); border-radius: 3px; transform: scaleX(0); transition: transform .3s var(--ease); }
.ts-btn.active::after { transform: scaleX(1); }
.ts-panels { margin-top: 36px; }
.ts-panel { display: none; }
.ts-panel.active { display: block; animation: fadeUp .5s var(--ease); }

/* outcome / industry template body */
.tpl-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.tpl-grid h3 { font-size: clamp(24px,3vw,32px); margin-bottom: 14px; }
.tpl-block { margin-bottom: 26px; }
.tpl-block .tb-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; }
.tpl-block p { color: var(--slate); font-size: 15.5px; }
.tpl-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.tpl-list li { display: flex; gap: 11px; font-size: 15px; align-items: flex-start; }
.tpl-list li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.tpl-aside { background: var(--ink); color: #fff; border-radius: var(--r-card); padding: 32px; position: sticky; top: 100px; }
.tpl-aside .ta-metric { font-family: var(--font-display); font-weight: 800; font-size: 46px; line-height: 1; }
.tpl-aside .ta-mlabel { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 8px; }
.tpl-aside hr { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 24px 0; }
.tpl-aside .ta-quote { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.45; }
.tpl-aside .ta-cite { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 12px; font-family: var(--font-mono); }
.tpl-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.tpl-tag { font-size: 12px; padding: 6px 12px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
@media (max-width: 860px){ .tpl-grid { grid-template-columns: 1fr; } .tpl-aside { position: static; } }

/* role cards */
.role-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.role-card { border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; background: #fff; transition: transform .3s var(--ease), box-shadow .3s; }
.role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.role-card .rc-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; background: var(--grad-soft); color: var(--primary-solid); }
.role-card h4 { font-size: 18px; margin-bottom: 8px; }
.role-card p { font-size: 14px; color: var(--slate); margin-bottom: 14px; }
@media (max-width: 900px){ .role-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .role-grid { grid-template-columns: 1fr; } }

/* ---------- 38. RESOURCES HUB ---------- */
.feat-article { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; background: var(--ink); color: #fff; border-radius: var(--r-media); overflow: hidden; margin-top: 44px; }
.feat-article .fa-media { aspect-ratio: 16/11; background: var(--grad); position: relative; display: grid; place-items: center; overflow: hidden; min-height: 280px; }
.feat-article .fa-media svg { width: 96px; height: 96px; color: rgba(255,255,255,.85); }
.feat-article .fa-media::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.18), transparent 60%); }
.feat-article .fa-body { padding: 40px 44px 40px 0; }
.feat-tag { display: inline-block; font-size: 12px; font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.feat-article h3 { font-size: clamp(24px,3vw,32px); margin-bottom: 14px; }
.feat-article p { color: rgba(255,255,255,.72); font-size: 16px; margin-bottom: 22px; }
.feat-meta { font-size: 13px; color: rgba(255,255,255,.5); display: flex; gap: 14px; margin-top: 18px; }
@media (max-width: 860px){ .feat-article { grid-template-columns: 1fr; } .feat-article .fa-body { padding: 0 32px 36px; } }

.res-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 44px; }
.res-filter { padding: 9px 16px; border-radius: var(--r-pill); border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 500; color: var(--slate); transition: all .2s; }
.res-filter:hover { border-color: var(--primary-solid); color: var(--primary-solid); }
.res-filter.active { background: var(--grad); color: #fff; border-color: transparent; }
.res-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 28px; }
.res-card { border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; background: #fff; transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; }
.res-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.res-media { aspect-ratio: 16/9; position: relative; display: grid; place-items: center; }
.res-media svg { width: 48px; height: 48px; color: rgba(255,255,255,.9); }
.res-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.res-cat { font-size: 11px; font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--primary-solid); margin-bottom: 10px; }
.res-card h4 { font-size: 18px; line-height: 1.3; margin-bottom: 10px; }
.res-card p { font-size: 14px; color: var(--slate); flex: 1; }
.res-meta { font-size: 12.5px; color: var(--slate); margin-top: 16px; display: flex; gap: 12px; align-items: center; }
.res-hidden { display: none; }

.gated-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.gated-card { border-radius: var(--r-card); padding: 36px; border: 1px solid var(--line); background: var(--mist); display: flex; gap: 24px; align-items: center; transition: transform .3s var(--ease), box-shadow .3s; }
.gated-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.gated-card .gc-cover { width: 92px; height: 120px; border-radius: 10px; background: var(--grad); flex-shrink: 0; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); }
.gated-card .gc-cover svg { width: 34px; height: 34px; }
.gated-card h4 { font-size: 19px; margin-bottom: 6px; }
.gated-card p { font-size: 14px; color: var(--slate); margin-bottom: 14px; }
.gated-card .gc-lock { font-size: 12px; color: var(--slate); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px){ .res-grid { grid-template-columns: 1fr 1fr; } .gated-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px){ .res-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px){ .gated-card { flex-direction: column; align-items: flex-start; padding: 28px; } }

/* ---------- 39. COMPANY ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 44px; }
.team-card { text-align: center; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff; box-shadow: var(--shadow-sm); }
.team-card h4 { font-size: 17px; }
.team-card .tc-role { font-size: 13px; color: var(--slate); margin-top: 3px; }
.team-card .tc-cred { font-size: 12px; color: var(--primary-solid); margin-top: 8px; font-family: var(--font-mono); }
@media (max-width: 860px){ .team-grid { grid-template-columns: 1fr 1fr; } }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.value-card { padding: 30px; border-radius: var(--r-card); border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); }
.value-card .vc-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(0,194,168,.14); color: var(--teal); }
.value-card h4 { font-size: 19px; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: rgba(255,255,255,.7); }
@media (max-width: 860px){ .values-grid { grid-template-columns: 1fr; } }

.logo-wall { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
.logo-cell { border: 1px solid var(--line); border-radius: 14px; padding: 28px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--slate); background: #fff; transition: color .2s, border-color .2s; }
.logo-cell:hover { color: var(--primary-solid); border-color: var(--primary-solid); }
@media (max-width: 700px){ .logo-wall { grid-template-columns: 1fr 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 44px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ci-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; color: var(--primary-solid); flex-shrink: 0; }
.contact-row h4 { font-size: 16px; margin-bottom: 3px; }
.contact-row p { font-size: 14.5px; color: var(--slate); }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }

/* ---------- 40. PROCESS / WAVE STEPS ---------- */
.steps-list { display: flex; flex-direction: column; gap: 0; margin-top: 44px; }
.step-row { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step-row:last-child { border-bottom: none; }
.step-num { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 20px; background: var(--grad); color: #fff; box-shadow: 0 8px 20px -8px rgba(74,41,201,.5); }
.step-row h4 { font-size: 20px; margin-bottom: 6px; }
.step-row p { color: var(--slate); font-size: 15.5px; }
.step-row .step-meta { font-family: var(--font-mono); font-size: 12px; color: var(--primary-solid); margin-top: 10px; letter-spacing: .03em; }

/* ---------- 41. SECURITY CONTROLS (trust centre) ---------- */
.controls-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.control-card { border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 24px; background: rgba(255,255,255,.03); }
.control-card .cc-ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(0,194,168,.14); color: var(--teal); }
.control-card h4 { font-size: 17px; margin-bottom: 6px; }
.control-card p { font-size: 14px; color: rgba(255,255,255,.7); }
@media (max-width: 820px){ .controls-grid { grid-template-columns: 1fr; } }
.cert-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; justify-content: center; }
.cert-badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.16); font-size: 14px; color: rgba(255,255,255,.85); }
.cert-badge svg { width: 18px; height: 18px; color: var(--teal); }

/* ---------- 42. ARTICLE / PROSE ---------- */
.article-hero { padding: clamp(40px,5vw,64px) 0 0; }
.article-hero .wrap { max-width: 820px; }
.article-cat { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--primary-solid); }
.article-hero h1 { font-size: clamp(32px,4.6vw,50px); margin: 16px 0 22px; letter-spacing: -.02em; }
.article-byline { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-byline .ab-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--font-display); }
.article-byline .ab-name { font-weight: 600; font-size: 14.5px; }
.article-byline .ab-meta { font-size: 13px; color: var(--slate); }
.article-cover { aspect-ratio: 21/9; border-radius: var(--r-media); margin: 36px 0; display: grid; place-items: center; background: var(--grad); }
.article-cover svg { width: 88px; height: 88px; color: rgba(255,255,255,.85); }
.prose { max-width: 720px; margin: 0 auto; }
.prose > * { margin-bottom: 22px; }
.prose p { font-size: 18px; line-height: 1.7; color: #2A3344; }
.prose h2 { font-family: var(--font-display); font-size: 28px; margin-top: 44px; margin-bottom: 16px; letter-spacing: -.02em; }
.prose h3 { font-size: 21px; margin-top: 32px; margin-bottom: 12px; }
.prose ul { padding-left: 4px; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { display: flex; gap: 12px; font-size: 17px; color: #2A3344; align-items: flex-start; }
.prose ul li svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.prose blockquote { border-left: 4px solid; border-image: var(--grad) 1; padding: 6px 0 6px 26px; margin: 36px 0; font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.4; color: var(--ink); }
.prose .pull-cite { font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--slate); margin-top: 10px; }
.article-end { max-width: 720px; margin: 48px auto 0; padding-top: 32px; border-top: 1px solid var(--line); }

/* ---------- 43. CASE STUDY ---------- */
.case-meta-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.case-meta-card { border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: #fff; }
.case-meta-card .cm-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 8px; }
.case-meta-card .cm-val { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
@media (max-width: 820px){ .case-meta-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .case-meta-grid { grid-template-columns: 1fr; } }
.case-results { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 10px; }
.case-result { text-align: center; padding: 30px 18px; border-radius: 18px; background: var(--mist); border: 1px solid var(--line); }
.case-result .cr-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,4vw,44px); }
.case-result .cr-lab { font-size: 13.5px; color: var(--slate); margin-top: 8px; }
.case-quote { max-width: 820px; margin: 50px auto; text-align: center; }
.case-quote p { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px,3vw,30px); line-height: 1.4; }
.case-quote .cq-cite { font-size: 14px; color: var(--slate); margin-top: 18px; font-family: var(--font-mono); }
@media (max-width: 700px){ .case-results { grid-template-columns: 1fr; } }

/* ---------- 44. LEGAL / TRUST LAYOUT ---------- */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-index { position: sticky; top: 100px; }
.legal-index h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; }
.legal-index a { display: block; padding: 9px 14px; border-radius: 10px; font-size: 14px; color: var(--slate); transition: all .2s; border-left: 2px solid transparent; }
.legal-index a:hover { color: var(--ink); background: var(--mist); }
.legal-index a.active { color: var(--primary-solid); background: var(--mist); border-left-color: var(--primary-solid); font-weight: 600; }
.legal-section { padding-bottom: 56px; margin-bottom: 56px; border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: clamp(26px,3vw,34px); margin-bottom: 16px; }
.legal-summary { background: var(--grad-soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin-bottom: 26px; display: flex; gap: 14px; }
.legal-summary svg { width: 22px; height: 22px; color: var(--primary-solid); flex-shrink: 0; margin-top: 2px; }
.legal-summary .ls-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--primary-solid); margin-bottom: 4px; }
.legal-summary p { font-size: 15px; color: var(--ink); }
.legal-section h3 { font-size: 18px; margin: 26px 0 10px; }
.legal-section p { color: var(--slate); font-size: 15.5px; margin-bottom: 14px; line-height: 1.65; }
.legal-section ul { display: flex; flex-direction: column; gap: 8px; margin: 8px 0 16px; }
.legal-section ul li { display: flex; gap: 11px; font-size: 15px; color: var(--slate); align-items: flex-start; }
.legal-section ul li svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.legal-updated { font-size: 13px; color: var(--slate); font-family: var(--font-mono); margin-bottom: 24px; }
@media (max-width: 860px){ .legal-layout { grid-template-columns: 1fr; } .legal-index { position: static; display: none; } }

/* page CTA band reused */
.cta-band { text-align: center; }
.cta-band .hero-cta { justify-content: center; margin-top: 30px; }

/* small print helper */
.fine { font-size: 12.5px; color: var(--slate); }
.dark .fine { color: rgba(255,255,255,.5); }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; }

/* ---------- Small-phone hardening (fixes clipping/overflow at 320-640px) ---------- */
@media (max-width: 640px){
  .btn { white-space: normal; text-align: center; }
  .m-sticky-cta .btn { white-space: nowrap; }
}
@media (max-width: 520px){
  .snap-result { grid-template-columns: 1fr; }
  .snap-cta .btn { width: 100%; justify-content: center; }
  .app-sec { grid-template-columns: minmax(0,1fr); }
  .phone { width: min(290px, 100%); }
  .logo-wall { grid-template-columns: 1fr; }
  .tpl-grid { grid-template-columns: minmax(0,1fr); }
  .tpl-aside .ta-metric { font-size: 34px; }
  .m-sticky-cta { padding: 10px 12px; }
  .m-sticky-cta .btn { padding: 13px 10px; font-size: 14px; }
}
@media (max-width: 640px){
  .nav-cta .btn { white-space: nowrap; }
}
@media (max-width: 479px){
  /* Header CTA is redundant below 480px (sticky bottom bar has Book a Pilot); it collides with the logo */
  .nav-cta .btn--primary { display: none; }
}
@media (max-width: 760px){
  /* Hero dial cluster: absolute layout collides below ~760px - switch to a grid */
  .hero-visual { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 6px 0 14px; }
  .dial-card, .dc-1, .dc-2, .dc-3 { position: static; }
  .dc-joyspan { position: static; grid-column: 1 / -1; order: -1; transform: none; animation-name: float; justify-self: center; min-width: 60%; }
}
@media (max-width: 1080px){
  /* Never let flexbox squeeze (distort) the logo image on mobile */
  .nav .brand { flex-shrink: 0; }
}
@media (max-width: 640px){
  /* Art-direction footnote collides with the band headline on phones */
  .editorial-caption { display: none; }
  .editorial-content { padding: 70px 24px; }
}
