/* ============================================================================
   DESIGN TOKENS — Enterprise Brand System v1.0
   ============================================================================ */
:root {
  /* === Primary (dual) === */
  --cyan-surge:    #20BEFF;
  --cyan-deep:     #0E96D2;
  --cyan-darker:   #0A6FA8;
  --cyan-tint:     #BCE9FA;
  --cyan-light:    #E5F6FD;
  --cyan-soft:     #F1FAFE;

  --signal-yellow: #FFD93D;
  --yellow-deep:   #E0B81E;
  --yellow-darker: #9E7E14;
  --yellow-tint:   #FFEB9C;
  --yellow-light:  #FFF6CC;

  /* === Foundation (neutrals) === */
  --ink:           #0A1628;
  --charcoal:      #1E293B;
  --slate:         #475569;
  --steel:         #94A3B8;
  --mist:          #E2E8F0;
  --cloud:         #F1F5F9;
  --paper:         #FAFAFA;
  --white:         #FFFFFF;

  /* === Supporting (used very sparingly) === */
  --deep-navy:     #0A2540;
  --sage:          #16A34A;
  --coral:         #F43F5E;

  /* === Before/after states (gaps viz) — soft, palette-friendly === */
  --red-soft:      #F28B82;
  --red:           #E2574C;
  --red-deep:      #C53B30;
  --red-tint:      #FDECEA;
  --green-soft:    #6FD3A6;
  --green:         #2FB985;
  --green-deep:    #1C8F63;
  --green-tint:    #E7F8F0;

  /* Type */
  --display:   'Geist', 'Helvetica Neue', sans-serif;
  --body:      'Geist', 'Helvetica Neue', sans-serif;
  --mono:      'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  --editorial: 'Fraunces', 'Times New Roman', serif;

  /* Geometry */
  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    16px;
  --r-xl:    24px;
  --r-pill:  999px;

  /* Spacing */
  --header-h: 72px;
  --pad-x:    32px;
  --max-w:    1320px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.05);
  --shadow-md: 0 12px 32px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 24px 56px rgba(10, 22, 40, 0.15);
}
@media (max-width: 900px) { :root { --pad-x: 20px; --header-h: 64px; } }

/* ============================================================================
   RESET & BASE
   ============================================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}

/* ============================================================================
   TYPOGRAPHY SYSTEM (per brand book)
   ============================================================================ */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; color: var(--ink); }

/* Title-em pattern — bold sans + Fraunces italic in cyan */
.t-em {
  font-family: var(--editorial);
  font-weight: 300;
  font-style: italic;
  color: var(--cyan-surge);
  letter-spacing: -0.01em;
}

/* Display scale */
.h-hero {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.h-1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h-2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.022em;
}
.h-3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* Label / kicker pattern — 28px cyan bar + mono uppercase */
.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan-surge);
}
.label.on-dark { color: var(--steel); }
.label.on-dark::before { background: var(--signal-yellow); }
.label.on-cyan { color: var(--ink); }
.label.on-cyan::before { background: var(--ink); }

.meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--slate);
}

p.lede {
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.5;
  color: var(--slate);
  max-width: 62ch;
}
p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 64ch;
}
p strong { color: var(--ink); font-weight: 600; }

/* ============================================================================
   HEADER
   ============================================================================ */
.header {
/*  overflow: hidden;*/
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header.scrolled {
  background: rgba(250, 250, 250, 0.96);
  border-bottom-color: var(--mist);
}
.header-inner {
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Wordmark — bold Geist + cyan accent letter + yellow dot */
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wordmark .accent { color: var(--cyan-surge); }
.wordmark .dot {
  width: 8px; height: 8px;
  background: var(--signal-yellow);
  border-radius: 50%;
  align-self: flex-end;
  margin-bottom: 6px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-link:hover { color: var(--ink); background: var(--cloud); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ---- Nav mega-menus ---- */
.nav-item { display: inline-flex; align-items: center; }
.mega-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.mega-trigger .chev { width: 13px; height: 13px; opacity: 0.65; transition: transform 0.22s var(--ease); }
.nav-item.open .mega-trigger { color: var(--ink); background: var(--cloud); }
.nav-item.open .mega-trigger .chev { transform: rotate(180deg); }
.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--mist);
  box-shadow: 0 36px 70px -34px rgba(10,22,40,0.34);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 90;
}
.mega.open { opacity: 1; visibility: visible; transform: none; }
.mega-inner { max-width: var(--max-w); margin: 0 auto; padding: 30px var(--pad-x) 34px; display: grid; gap: 30px; }
.mega-pricing, .mega-services { grid-template-columns: 0.92fr 1.7fr; }
.mega-feature {
  display: flex; flex-direction: column; gap: 11px;
  background: var(--ink); color: var(--white);
  border-radius: var(--r-lg); padding: 26px; position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease);
}
.mega-feature:hover { transform: translateY(-2px); }
.mega-feature-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cyan-surge); }
.mega-feature-title { font-family: var(--display); font-weight: 800; font-size: 25px; line-height: 1.08; letter-spacing: -0.025em; }
.mega-feature-title em { font-family: var(--editorial); font-style: italic; font-weight: 300; color: var(--signal-yellow); }
.mega-feature-sub { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.74); }
.mega-feature-cta { margin-top: 6px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--signal-yellow); }
.mega-feature-cta svg { width: 15px; height: 15px; stroke-width: 2.4; transition: transform 0.2s var(--ease); }
.mega-feature:hover .mega-feature-cta svg { transform: translateX(3px); }
.mega-feature-light { background: var(--cyan-soft); color: var(--ink); border: 1px solid var(--cyan-tint); }
.mega-feature-light .mega-feature-eyebrow { color: var(--cyan-darker); }
.mega-feature-light .mega-feature-title em { color: var(--cyan-deep); }
.mega-feature-light .mega-feature-sub { color: var(--slate); }
.mega-feature-light .mega-feature-cta { color: var(--cyan-deep); }
.mega-layers { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.mega-layers span { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--cyan-darker); background: var(--white); border: 1px solid var(--cyan-tint); border-radius: var(--r-pill); padding: 5px 11px; }
.mega-main { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.mega-strip { display: flex; flex-direction: column; gap: 4px; padding-bottom: 15px; border-bottom: 1px solid var(--mist); }
.mega-strip-k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--steel); }
.mega-strip-v { font-size: 14px; line-height: 1.45; color: var(--slate); }
.mega-strip-v strong { color: var(--ink); font-weight: 600; }
.mega-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mega-card { display: flex; flex-direction: column; gap: 6px; padding: 17px; border: 1px solid var(--mist); border-radius: var(--r-md); transition: border-color 0.18s var(--ease), background 0.18s var(--ease), transform 0.18s var(--ease); }
.mega-card:hover { border-color: var(--cyan-tint); background: var(--cyan-soft); transform: translateY(-2px); }
.mega-card-num { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--cyan-surge); }
.mega-card h4 { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.mega-card p { font-size: 12.5px; line-height: 1.45; color: var(--slate); }
.mega-cards-svc { grid-template-columns: repeat(4, 1fr); }
.mega-cards-aud { grid-template-columns: repeat(4, 1fr); }
.mega-link { display: block; padding: 12px 13px; border: 1px solid var(--mist); border-radius: var(--r-md); font-family: var(--display); font-size: 13.5px; font-weight: 600; color: var(--charcoal); transition: border-color 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease); }
.mega-link:hover { border-color: var(--cyan-tint); background: var(--cyan-soft); color: var(--ink); }
.mega-seeall { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--cyan-deep); }
.mega-seeall svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.mega-seeall:hover { color: var(--cyan-darker); }
.mega-seeall:hover svg { transform: translateX(3px); }
@media (max-width: 960px) { .nav-item.has-mega .mega { display: none; } .mega-trigger .chev { display: none; } }


.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 9px 14px;
  border-radius: var(--r-md);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.btn-ghost:hover { color: var(--ink); background: var(--cloud); }
.btn-start { display: inline-flex; align-items: center; gap: 8px; }
.start-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-surge); flex-shrink: 0; box-shadow: 0 0 0 0 rgba(32,190,255,0.55); animation: startPulse 2.2s ease-out infinite; }
@keyframes startPulse { 0% { box-shadow: 0 0 0 0 rgba(32,190,255,0.55); } 70% { box-shadow: 0 0 0 8px rgba(32,190,255,0); } 100% { box-shadow: 0 0 0 0 rgba(32,190,255,0); } }
@media (prefers-reduced-motion: reduce) { .start-dot { animation: none; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--display);
  background: var(--ink);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn-primary:hover {
  background: var(--cyan-surge);
  color: var(--ink);
  transform: translateY(-1px);
}
.btn-primary svg { width: 14px; height: 14px; stroke-width: 2.4; transition: transform 0.2s var(--ease); }
.btn-primary:hover svg { transform: translateX(2px); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-md);
}
.hamburger:hover { background: var(--cloud); }
.hamburger svg { width: 22px; height: 22px; stroke-width: 1.8; }

@media (max-width: 1000px) {
  .nav, .btn-ghost { display: none; }
  .hamburger { display: inline-flex; }
}

/* ============================================================================
   MOBILE MENU
============================================================================ */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--paper);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s var(--ease), visibility 0.32s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: none; visibility: visible; }
.mm-nav { display: flex; flex-direction: column; padding: 18px var(--pad-x) 40px; }
.mm-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 15px 0;
  border-bottom: 1px solid var(--mist);
}
.mm-link:active { color: var(--cyan-deep); }
.mm-group { padding: 14px 0; border-bottom: 1px solid var(--mist); }
.mm-group-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--steel, #64748B);
  margin-bottom: 6px;
}
.mm-sub {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--charcoal);
  padding: 10px 0 10px 14px;
  border-left: 2px solid var(--cyan-tint);
  margin-left: 2px;
}
.mm-sub:active { color: var(--ink); border-left-color: var(--cyan-surge); }
.mm-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.mm-start {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  color: var(--ink); padding: 14px; border: 1px solid var(--ink); border-radius: var(--r-pill);
}
.mm-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  background: var(--ink); color: var(--white); padding: 15px; border-radius: var(--r-pill);
}
.mm-cta svg { width: 16px; height: 16px; stroke-width: 2.4; }
body.menu-open { overflow: hidden; }

/* ============================================================================
   HERO — yellow + cyan flat color blocks (per brand book)
   ============================================================================ */
.hero {
  min-height: calc(92vh - var(--header-h));
  padding: 24px var(--pad-x) 44px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Lower hero: copy on the left, energetic blue→yellow art panel on the right */
.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.66fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: stretch;
  margin-top: 8px;
}
.hero-copy { min-width: 0; }
.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--signal-yellow) 0%, var(--signal-yellow) 36%, var(--cyan-surge) 64%, var(--cyan-deep) 100%);
  box-shadow: 0 40px 90px -50px rgba(14,150,210,0.6);
}
.hero-art-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
/* art panel — build the ecosystem layer by layer */
.eco-arc  { stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 0;
  transition: stroke-dashoffset 0.75s var(--ease), opacity 0.5s var(--ease); }
.eco-arc.built  { stroke-dashoffset: 0; opacity: 1; }
.eco-link { stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 0;
  transition: stroke-dashoffset 0.5s var(--ease), opacity 0.4s var(--ease); }
.eco-link.built { stroke-dashoffset: 0; opacity: 1; }
.eco-node  { opacity: 0; transition: opacity 0.45s var(--ease); }
.eco-node.built  { opacity: 1; }
.eco-shape { opacity: 0; transition: opacity 0.5s var(--ease); }
.eco-shape.built { opacity: 1; }
.eco-arclabel { opacity: 0; transition: opacity 0.55s var(--ease);
  font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: 0.01em; }
.eco-arclabel.built { opacity: 1; }
.eco-tag { font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; }
@media (prefers-reduced-motion: reduce) {
  .eco-arc, .eco-link, .eco-node, .eco-shape, .eco-arclabel { opacity: 1; stroke-dashoffset: 0; transition: none; }
}
/* diagonal shine sweep */
.hero-art-shine {
  position: absolute; top: -20%; left: 0; width: 36%; height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-160%) skewX(-16deg);
  animation: haShine 6.5s var(--ease) infinite; animation-delay: 1.4s;
  pointer-events: none; z-index: 2;
}
.ha-arcs { animation: haPulse 6s var(--ease) infinite; transform-origin: center; }
.hero-art .float1 { animation: haFloat 6s var(--ease) infinite; transform-box: fill-box; transform-origin: center; }
.hero-art .float2 { animation: haFloat2 7.6s var(--ease) infinite; transform-box: fill-box; transform-origin: center; }
.hero-art .float3 { animation: haFloat 8s var(--ease) infinite 0.6s; transform-box: fill-box; transform-origin: center; }
@keyframes haFloat  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes haFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes haPulse  { 0%,100% { opacity: 0.85; } 50% { opacity: 1; } }
@keyframes haShine  { 0% { transform: translateX(-160%) skewX(-16deg); } 60%,100% { transform: translateX(420%) skewX(-16deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero-art-shine, .ha-arcs, .hero-art .float1, .hero-art .float2, .hero-art .float3 { animation: none; }
}
@media (max-width: 900px) {
  .hero-lower { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { min-height: 200px; order: 2; }
}

.hero-trust {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: -0.005em;
}
.hero-trust .dot {
  color: var(--cyan-surge);
  font-weight: 700;
}
.hero-trust span:not(.dot) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust span:not(.dot)::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan-surge);
}
.hero-trust span:nth-of-type(3):not(.dot)::before { background: var(--signal-yellow); }
.hero-trust span:nth-of-type(5):not(.dot)::before { background: var(--ink); }
.hero-trust span:nth-of-type(7):not(.dot)::before { background: var(--cyan-deep); }

@media (max-width: 700px) {
  .hero-trust { font-size: 13px; gap: 10px; }
}

.hero-body {
  position: relative;
  z-index: 3;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px 0 0;
}

/* Hero — animated headline: "Finally satisfied," highlight + AI -> AI ecosystem swap */
.hero-headline-wrap {
  position: relative;
  padding-top: clamp(6px, 1.2vw, 18px);
  margin-bottom: 30px;
}

/* highlighter marker — blue background sweeps in behind text */
.hl-mark {
  position: relative;
  display: inline-block;
  padding: 0 0.14em;
  color: var(--ink);
  isolation: isolate;
}
.hl-mark .txt { position: relative; z-index: 1; }
.hl-mark::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 8%; bottom: 8%;
  background: var(--cyan-surge);
  border-radius: 5px;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 0;
}
.hl-mark.on::before { animation: hlSweep 0.55s var(--ease) forwards; }
@keyframes hlSweep { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* hero layers — cycling highlight across Strategy · Preparation · Channels · Execution */
.hero-layers {
  margin: 4px 0 30px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(15px, 1.7vw, 21px);
  letter-spacing: -0.01em;
  color: var(--slate);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.16em 0.32em;
}
.hero-layers .hl-pre { color: var(--steel); }
.hl-layer, .hl-tail {
  position: relative; display: inline-block;
  padding: 0.06em 0.34em; border-radius: 6px;
  color: var(--slate); isolation: isolate;
  transition: color 0.35s var(--ease);
}
.hl-layer .txt, .hl-tail .txt { position: relative; z-index: 1; }
.hl-layer::before, .hl-tail::before {
  content: ""; position: absolute; inset: 12% 0;
  background: var(--cyan-surge); border-radius: 6px;
  transform: scaleX(0); transform-origin: left center; z-index: 0;
  transition: transform 0.42s var(--ease);
}
.hl-tail::before { background: var(--signal-yellow); }
.hl-layer.active, .hl-tail.lit { color: var(--ink); }
.hl-layer.active::before, .hl-tail.lit::before { transform: scaleX(1); }
.hl-sep { color: var(--mist); font-weight: 400; }

/* "human in the loop" — always-lit yellow highlight in the layers line */
.hl-hitl {
  position: relative; display: inline-block;
  padding: 0.06em 0.34em; border-radius: 6px;
  color: var(--ink); font-weight: 700; isolation: isolate;
}
.hl-hitl .txt { position: relative; z-index: 1; }
.hl-hitl::before {
  content: ""; position: absolute; inset: 12% 0;
  background: var(--signal-yellow); border-radius: 6px;
  transform: scaleX(0); transform-origin: left center; z-index: 0;
  transition: transform 0.5s var(--ease);
}
.hl-hitl.lit::before { transform: scaleX(1); }

/* "+ human in the loop" — yellow chip sitting above the end of AI ecosystem */
.hero-hitl {
  position: absolute;
  bottom: calc(100% - 0.02em);
  right: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.hero-hitl.show { opacity: 1; transform: none; }
.hero-headline-wrap.reduced .hero-hitl { opacity: 1; transform: none; }
.hitl-txt {
  display: inline-block;
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(14px, 1.7vw, 27px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--signal-yellow);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  white-space: nowrap;
}
/* On narrow screens the eyebrow band is too tight, so place the chip on its own line
   right-aligned under AI ecosystem (the headline already wraps, so no awkward gap) */
@media (max-width: 640px) {
  .hero-hitl {
    position: static;
    bottom: auto; right: auto;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 0.1em;
  }
}

/* "Finally satisfied," note above the headline */
.hero-note {
  margin: 0 0 10px;
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  font-size: clamp(22px, 2.8vw, 40px);
  letter-spacing: -0.015em;
}
.hero-note .hl-mark { padding: 0.04em 0.18em; }

/* AI -> AI ecosystem swap */
.swap {
  position: relative;
  display: inline-block;
  vertical-align: top;
  transition: width 0.55s var(--ease);
}
.swap-old {
  position: relative;
  display: inline-block;
  padding-left: 0.14em;
  transition: opacity 0.45s var(--ease);
}
.swap-old::after {
  content: "";
  position: absolute;
  left: 0.04em; right: 0.04em; top: 52%;
  height: 0.07em;
  background: var(--cyan-deep);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
}
.swap-old.struck::after { animation: hlStrike 0.42s var(--ease) forwards; }
.swap-old.gone { opacity: 0; }
@keyframes hlStrike { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.swap-new {
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.swap-new.show { opacity: 1; }
.hero-headline-wrap.reduced .swap-old { display: none; }
.hero-headline-wrap.reduced .swap-new { position: static; opacity: 1; }

.hero-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(46px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 32px;
}
.hero-headline .l1 { display: inline-block; position: relative; max-width: 100%; }
.hero-headline em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  display: block;
  letter-spacing: -0.02em;
  font-size: 0.86em;
  margin-top: -0.02em;
}

.hero-sub {
  font-family: var(--body);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--slate);
  max-width: 56ch;
  margin-bottom: 44px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-sub em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--cyan-darker);
}
.hero-peek {
  font-family: var(--body);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.55;
  color: var(--steel);
  max-width: 52ch;
  margin: -28px 0 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
}
.btn-lg-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-lg-primary:hover {
  background: var(--cyan-surge);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(32, 190, 255, 0.4);
}
.btn-lg-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-lg-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg svg { width: 16px; height: 16px; stroke-width: 2.4; transition: transform 0.2s var(--ease); }
.btn-lg-primary:hover svg { transform: translateX(2px); }

/* Hero spec strip removed — kept clean trust line below CTAs instead */

/* ============================================================================
   SECTION BASE
   ============================================================================ */
section.section {
/*  padding: 120px 0;*/
  position: relative;
}
section.section-dark {
  background: var(--ink);
  color: var(--white);
}
section.section-dark p { color: rgba(255,255,255,0.78); }
section.section-dark h1,
section.section-dark h2,
section.section-dark h3 { color: var(--white); }
section.section-cloud {
  background: var(--cloud);
}

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .label { justify-content: center; }
.section-head .h-1 { margin-bottom: 24px; }
.section-head p.lede { margin-top: 4px; }

/* full-width split header: big headline left, supporting copy right */
.section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.section-head-split .h-1 { margin-bottom: 0; }
.section-head-split .section-head-body { padding-bottom: 6px; }
.section-head-split .lede { margin: 0 0 16px; max-width: none; }
.section-head-split .lede:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .section-head-split { grid-template-columns: 1fr; gap: 22px; align-items: start; }
}

/* ============================================================================
   OUTCOMES — bento grid: what AI makes possible
   ============================================================================ */
.outcomes {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
}
.outcome-cell {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.25s var(--ease);
}
.outcome-cell:hover { background: var(--cyan-soft); }

/* Bento layout */
.outcome-cell.lg-1 { grid-column: span 6; grid-row: span 2; background: var(--ink); color: var(--white); }
.outcome-cell.lg-1:hover { background: var(--ink); }
.outcome-cell.lg-1 p { color: rgba(255,255,255,0.78); }
.outcome-cell.lg-1 .o-h { color: var(--white); }
.outcome-cell.lg-1 .o-num { color: var(--cyan-surge); }
.outcome-cell.lg-1 .o-tag { color: var(--steel); border-color: rgba(255,255,255,0.15); }

.outcome-cell.cyan { grid-column: span 4; background: var(--cyan-surge); color: var(--ink); }
.outcome-cell.cyan:hover { background: var(--cyan-surge); }
.outcome-cell.cyan .o-num { color: var(--ink); }
.outcome-cell.cyan p { color: var(--ink); opacity: 0.78; }

.outcome-cell.yellow { grid-column: span 2; background: var(--signal-yellow); color: var(--ink); }
.outcome-cell.yellow:hover { background: var(--signal-yellow); }
.outcome-cell.yellow .o-num { color: var(--ink); }

.outcome-cell.md { grid-column: span 3; }
.outcome-cell.md-2 { grid-column: span 4; }

.o-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--cyan-surge);
  margin-bottom: 16px;
}
.o-h {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.outcome-cell.lg-1 .o-h {
  font-size: 44px;
  line-height: 1.02;
}
.outcome-cell p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 36ch;
}
.outcome-cell.lg-1 p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 44ch;
}
.o-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--mist);
  align-self: flex-start;
}

@media (max-width: 1100px) {
  .outcomes { grid-template-columns: repeat(6, 1fr); }
  .outcome-cell.lg-1 { grid-column: span 6; grid-row: span 1; min-height: 240px; }
  .outcome-cell.cyan { grid-column: span 3; }
  .outcome-cell.yellow { grid-column: span 3; }
  .outcome-cell.md, .outcome-cell.md-2 { grid-column: span 3; }
}
@media (max-width: 600px) {
  .outcomes { grid-template-columns: 1fr; }
  .outcome-cell.lg-1, .outcome-cell.cyan, .outcome-cell.yellow,
  .outcome-cell.md, .outcome-cell.md-2 { grid-column: span 1; }
}

/* ============================================================================
   ECOSYSTEM VISUALIZATION
   ============================================================================ */
.ecosystem {
  background: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 190, 255, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 217, 61, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.ecosystem-head {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ecosystem-head .label { justify-content: center; }
.ecosystem-head .h-1 { margin-bottom: 22px; }

.eco2-stage {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto 26px;
  background: var(--white); border: 1px solid var(--mist); border-radius: 28px;
  padding: 22px 18px 8px; overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(10,22,40,0.4);
}
#ecoSVG2 { display: block; width: 100%; height: auto; max-height: 88vh;
  font-family: var(--display);
  --er1a:#EAF7FE; --er1b:#DBF0FC; --er1c:#CDEBFB; --er1d:#BFE6FA;
  --er2a:#ECF7FE; --er2b:#D8EFFC; --er2c:#ECF7FE; --er2d:#D8EFFC; --er2e:#ECF7FE; --er2f:#D8EFFC; --er2g:#ECF7FE;
  --er3a:#CFEBFB; --er3b:#BCE3F7;
}
.eco2-wedge { cursor: pointer; transition: filter .22s var(--ease); }
.eco2-wedge:hover { filter: brightness(0.95) saturate(1.12); }
.eco2-wedge.active { filter: brightness(0.88) saturate(1.2); }
.eco2-band { cursor: pointer; transition: filter .22s var(--ease); }
.eco2-band:hover { filter: brightness(1.05) saturate(1.08); }
.eco2-sep { stroke: rgba(255,255,255,0.7); stroke-width: 1.3; fill: none; pointer-events: none; }
.eco2-lc { font-size: 13px; font-weight: 600; fill: var(--ink); letter-spacing: .2px; }
.eco2-lc-med { font-size: 11px; font-weight: 600; fill: var(--ink); letter-spacing: .1px; }
.eco2-lc-small { font-size: 10.5px; font-weight: 600; fill: var(--ink); letter-spacing: .1px; }
.eco2-lc-light { font-size: 13px; font-weight: 700; fill: #FFFFFF; letter-spacing: .3px; }
.eco2-lc-umb { font-size: 13px; font-weight: 700; fill: #FFFFFF; letter-spacing: .3px; }
.eco2-meta { font-size: 9px; font-weight: 600; fill: var(--slate); letter-spacing: .4px; }
.eco2-meta-light { font-size: 10px; font-weight: 500; fill: rgba(255,255,255,0.85); letter-spacing: .3px; }
.eco2-layer { font-size: 10.5px; font-weight: 800; fill: var(--ink); letter-spacing: 1.4px; }
.eco2-layer-light { font-size: 10.5px; font-weight: 800; fill: #FFFFFF; letter-spacing: 1.4px; }
.eco2-center-ring { fill: none; stroke: #FFFFFF; stroke-width: 3; }
.eco2-title-2 { font-size: 27px; font-weight: 800; fill: #FFFFFF; text-anchor: middle; letter-spacing: .2px; font-family: var(--display); }
.eco2-title { font-size: 19px; font-weight: 400; fill: #FFFFFF; text-anchor: middle; font-family: var(--editorial); font-style: italic; }
.eco2-tag-sm { font-size: 10px; font-weight: 600; fill: rgba(255,255,255,0.74); text-anchor: middle; letter-spacing: 1.3px; font-family: var(--mono); }

.eco2-detail-row { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 20px; }
.eco2-card { background: var(--white); border: 1px solid var(--mist); border-radius: 20px;
  padding: 26px 28px; box-shadow: 0 18px 44px -32px rgba(10,22,40,0.35); min-height: 232px; }
.eco2-card h3 { font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--steel); font-weight: 700; margin-bottom: 10px; }
.eco2-card .title { font-family: var(--display); font-size: 22px; font-weight: 800;
  color: var(--ink); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.01em; }
.eco2-card .lead { font-size: 15px; color: var(--slate); line-height: 1.55; margin-bottom: 14px; }
.eco2-card ul { list-style: none; padding: 0; margin: 0; }
.eco2-card li { position: relative; padding-left: 18px; margin-bottom: 8px;
  font-size: 14px; color: var(--slate); line-height: 1.45; }
.eco2-card li::before { content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-surge); }
.eco2-card strong { color: var(--ink); font-weight: 600; }
.eco2-chip { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink);
  background: var(--signal-yellow); padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }
@media (max-width: 980px) { .eco2-detail-row { grid-template-columns: 1fr; } }
/* in-image tooltip for the ecosystem diagram */
.eco2-tip {
  position: absolute; top: 0; left: 0;
  width: max-content; max-width: 300px;
  background: var(--white); border: 1px solid var(--mist); border-radius: 14px;
  padding: 15px 17px; box-shadow: 0 24px 60px -20px rgba(10,22,40,0.45);
  pointer-events: none; z-index: 5;
  opacity: 0; transform: translateY(6px) scale(0.98);
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease);
}
.eco2-tip.show { opacity: 1; transform: none; }
.eco2-tip-title { font-family: var(--display); font-weight: 800; font-size: 16px;
  color: var(--ink); line-height: 1.2; margin: 8px 0 6px; letter-spacing: -0.01em; }
.eco2-tip-lead { font-size: 13.5px; color: var(--slate); line-height: 1.5; margin: 0 0 9px; }
.eco2-tip ul { list-style: none; padding: 0; margin: 0; }
.eco2-tip li { position: relative; padding-left: 16px; margin-bottom: 5px;
  font-size: 12.5px; color: var(--slate); line-height: 1.4; }
.eco2-tip li::before { content: ""; position: absolute; left: 0; top: 6px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-surge); }
.eco2-tip li:last-child { margin-bottom: 0; }
.eco2-hint { text-align: center; margin: 20px auto 0;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--steel); }
@media (max-width: 860px) { .eco2-tip { max-width: 76vw; padding: 13px 15px; } }

/* ============================================================================
   DISTINCTION — AI is not powerful. An AI ecosystem is.
   ============================================================================ */
.distinction {
  background: var(--ink);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.distinction::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(circle, rgba(32, 190, 255, 0.12), rgba(255, 217, 61, 0.06) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.distinction::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 120px; height: 120px;
  background: var(--signal-yellow);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.distinction-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.distinction .label {
  color: var(--steel);
  justify-content: center;
  margin-bottom: 36px;
}
.distinction .label::before { background: var(--signal-yellow); }
.distinction-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(42px, 6.4vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0 0 40px;
  color: var(--white);
}
.distinction-h .l1 {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--coral);
  margin-bottom: 8px;
}
.distinction-h .l2 { display: block; }
.distinction-h .em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-surge);
  letter-spacing: -0.02em;
}
.distinction-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-surge), var(--signal-yellow));
  margin: 0 auto 36px;
}
.distinction-body {
  max-width: 64ch;
  margin: 0 auto;
}
.distinction-body p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  max-width: none;
}
.distinction-body p:last-child { margin-bottom: 0; }
.distinction-body p strong { color: var(--white); font-weight: 600; }
.distinction-body p em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--signal-yellow);
}
.distinction-tags {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  width: 100%;
}
.distinction-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-pill);
}

/* ============================================================================
   THREE PILLARS — How it becomes possible
   ============================================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
}
.pillar {
  background: var(--ink);
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.25s var(--ease);
  position: relative;
}
.pillar:hover { background: var(--charcoal); }
.pillar-num {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  color: var(--cyan-surge);
  letter-spacing: -0.03em;
}
.pillar:nth-child(2) .pillar-num { color: var(--signal-yellow); }
.pillar:nth-child(3) .pillar-num { color: var(--cyan-surge); }
.pillar-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.pillar-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.pillar-h em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-surge);
}
.pillar:nth-child(2) .pillar-h em { color: var(--signal-yellow); }
.pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
  max-width: none;
}
.pillar-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.pillar-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
}

@media (max-width: 1000px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================================================
   MANIFESTO — Like never before, made possible
   ============================================================================ */
.manifesto {
  background: var(--paper);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: var(--signal-yellow);
  z-index: 0;
}
.manifesto::after {
  content: "";
  position: absolute;
  top: 60%; right: 0;
  width: 40%; height: 40%;
  background: var(--cyan-surge);
  z-index: 0;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.manifesto .label { margin-bottom: 36px; }
.manifesto-list {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 18ch;
}
.manifesto-list em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}
.manifesto-list .accent { color: var(--cyan-darker); }
.manifesto-list .accent-y { color: var(--yellow-darker); }
.manifesto-list .qualifier {
  display: inline-block;
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 0.4em;
  color: var(--slate);
  letter-spacing: -0.005em;
  margin-left: 0.4em;
  transform: translateY(-0.3em);
}

.manifesto-divider {
  width: 80px;
  height: 2px;
  background: var(--ink);
  margin-bottom: 40px;
}

.manifesto-conclusion {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.024em;
  color: var(--ink);
  max-width: 22ch;
}
.manifesto-conclusion .strike {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--coral);
  color: var(--slate);
}
.manifesto-conclusion em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-darker);
}

@media (max-width: 900px) {
  .manifesto::before, .manifesto::after { display: none; }
}

/* ============================================================================
   PROOF — case study
   ============================================================================ */
.proof-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 0;
  overflow: hidden;
}
.proof-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid var(--mist);
}
.proof-text .label { margin-bottom: 14px; }
.proof-text .h-2 em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-darker);
}
.proof-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  max-width: none;
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
  margin-top: 12px;
}
.proof-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.proof-avatar::after {
  content: "";
  position: absolute;
  bottom: -2px; right: -2px;
  width: 12px; height: 12px;
  background: var(--signal-yellow);
  border-radius: 50%;
  border: 2px solid var(--white);
}
.proof-author-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.proof-author-role { font-size: 13px; color: var(--slate); }

.proof-stats {
  background: var(--ink);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.proof-stats::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--cyan-surge);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.proof-stat {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.proof-stat:last-child { padding-bottom: 0; border-bottom: none; }
.proof-stat-h {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--white);
  margin-bottom: 8px;
}
.proof-stat-h em {
  font-style: italic;
  color: var(--cyan-surge);
}
.proof-stat:nth-child(2) .proof-stat-h em { color: var(--signal-yellow); }
.proof-stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 900px) {
  .proof-card { grid-template-columns: 1fr; }
  .proof-text { border-right: none; border-bottom: 1px solid var(--mist); padding: 40px 28px; }
  .proof-stats { padding: 40px 28px; }
}

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.final {
  background: var(--ink);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.final-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  padding: 0 var(--pad-x);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.final-copy { min-width: 0; }
@media (max-width: 900px) {
  .final-inner { grid-template-columns: 1fr; gap: 32px; }
}
.final .label { color: var(--steel); }
.final .label::before { background: var(--signal-yellow); }
.final-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 18ch;
}
.final-h em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--signal-yellow);
}
.final p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 44px;
}
.final-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-yellow-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  background: var(--signal-yellow);
  color: var(--ink);
  padding: 16px 26px;
  border-radius: var(--r-pill);
  transition: all 0.2s var(--ease);
}
.btn-yellow-lg:hover {
  background: var(--white);
  transform: translateY(-1px);
}
.btn-yellow-lg svg { width: 16px; height: 16px; stroke-width: 2.4; }
.btn-on-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  padding: 16px 26px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s var(--ease);
}
.btn-on-dark-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.btn-on-dark-outline svg { width: 16px; height: 16px; stroke-width: 2; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--mist);
  padding: 72px 0 32px;
}
.footer-grid {
  display: flex;
/*  grid-template-columns: 1.5fr 1fr 1fr 1fr;*/
flex-wrap: wrap;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand { max-width: 320px; }
.footer-brand .wordmark { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 18px;
}
.footer-parent {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--slate);
  border-top: 1px solid var(--mist);
  padding-top: 16px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul.ftr_service_menu {
  display: flex !important;
  flex-direction: unset !important;
  flex-wrap: wrap;
  gap: 8px !important;
}
.footer-col ul.ftr_service_menu li {
  width: 48%;
  min-width: 48%;
}
.footer-col li a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.footer-col li a:hover { color: var(--cyan-darker); }

.footer-bottom {
  border-top: 1px solid var(--mist);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.04em;
}

@media (max-width: 1000px) {
/*  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }*/
  .footer-brand { grid-column: span 2; max-width: 480px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   NEW SECTIONS (v10) — comparison, work hub, pricing, partnership, philosophy
   ============================================================================ */

/* —— Reusable pull quote —— */
.pullquote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pullquote-mark {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 72px;
  line-height: 0;
  color: var(--cyan-surge);
  display: block;
  height: 40px;
}
.pullquote p {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: none;
  margin: 0 auto 18px;
}
.pullquote.on-dark p { color: var(--white); }
.pullquote cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
.pullquote.on-dark cite { color: var(--steel); }

/* —— AI vs AI Ecosystem comparison —— */
.compare-head { text-align: center; margin-bottom: 56px; }
.compare-eyebrow {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--slate);
  margin-bottom: 10px;
}
.compare-eyebrow .ex { color: var(--cyan-deep); font-weight: 500; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.compare-col {
  border-radius: var(--r-xl);
  padding: 36px 32px 40px;
  border: 1px solid var(--mist);
}
.compare-col.ai {
  background: var(--cloud);
  border-color: var(--mist);
}
.compare-col.eco {
  background: linear-gradient(165deg, #06223A 0%, var(--ink) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.compare-col-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.compare-col.ai .compare-col-tag { color: var(--steel); }
.compare-col.eco .compare-col-tag { color: var(--cyan-surge); }
.compare-col-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.compare-col.ai .compare-col-name { color: var(--slate); }
.compare-col.eco .compare-col-name { color: var(--white); }
.compare-col.eco .compare-col-name em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-surge);
}
.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid;
  font-size: 15.5px;
  line-height: 1.4;
}
.compare-col.ai .compare-row { border-color: #dfe6ee; color: var(--slate); }
.compare-col.eco .compare-row { border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.86); }
.compare-row:first-of-type { border-top: none; }
.compare-ic {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
}
.compare-col.ai .compare-ic { color: var(--steel); }
.compare-col.eco .compare-ic { color: var(--cyan-surge); }
.compare-row strong { font-weight: 600; }
.compare-col.eco .compare-row strong { color: var(--white); }

/* —— comparison merged into the (dark) distinction section: head-to-head table —— */
.cmp-table {
  max-width: 1040px;
  margin: 48px auto 8px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cmp-row {
  display: grid;
  grid-template-columns: 0.66fr 1.17fr 1.17fr;
  align-items: stretch;
}
.cmp-row + .cmp-row { border-top: 1px solid rgba(255,255,255,0.09); }
.cmp-head .cmp-ai, .cmp-head .cmp-eco {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(18px, 2vw, 24px); letter-spacing: -0.02em;
  padding: 18px 24px; align-items: center;
}
.cmp-head .cmp-dim { background: rgba(255,255,255,0.02); }
.cmp-head .cmp-ai { color: rgba(255,255,255,0.5); }
.cmp-head .cmp-eco { color: var(--white); }
.cmp-head .cmp-eco em { font-family: var(--editorial); font-style: italic; font-weight: 300; color: var(--cyan-surge); }
.cmp-dim {
  padding: 16px 24px; display: flex; align-items: center;
  font-family: var(--display); font-weight: 600; font-size: 14px;
  color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.025);
}
.cmp-ai, .cmp-eco {
  padding: 15px 24px; display: flex; gap: 11px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.42;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.cmp-ai { color: rgba(255,255,255,0.5); }
.cmp-eco { color: rgba(255,255,255,0.9); background: rgba(32,190,255,0.07); }
.cmp-ic { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
.cmp-ai .cmp-ic { color: var(--steel); }
.cmp-eco .cmp-ic { color: var(--cyan-surge); }
.cmp-eco strong { color: var(--white); font-weight: 600; }
@media (max-width: 820px) {
  .cmp-table { margin-top: 36px; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-head { display: none; }
  .cmp-dim {
    background: rgba(32,190,255,0.10); color: var(--cyan-surge);
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 9px 18px;
  }
  .cmp-ai, .cmp-eco { border-left: none; padding: 12px 18px; }
  .cmp-ai::before, .cmp-eco::before {
    content: attr(data-label); flex-shrink: 0; width: 78px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
    opacity: 0.7; margin-top: 2px;
  }
}

/* —— Work hub: tabs —— */
.worktabs-nav {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--cloud);
  border-radius: var(--r-pill);
  margin: 0 auto 48px;
  border: 1px solid var(--mist);
  flex-wrap: wrap;
  justify-content: center;
}
.worktab-btn {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
  padding: 11px 26px;
  border-radius: var(--r-pill);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.worktab-btn:hover { color: var(--ink); }
.worktab-btn.active {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.worktab-panel { display: none; animation: fadeUp 0.5s var(--ease); }
.worktab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Work hub: left vertical numbered nav */
.workhub {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}
.workhub-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.workhub-nav .worktab-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: left;
  padding: 17px 20px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--mist);
  white-space: normal;
}
.workhub-nav .worktab-btn:hover { border-color: var(--cyan-tint); background: var(--cyan-soft); color: var(--ink); }
.workhub-nav .worktab-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.wh-num { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--steel); flex-shrink: 0; }
.workhub-nav .worktab-btn.active .wh-num { color: var(--cyan-surge); }
.wh-text { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.wh-label { font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.workhub-nav .worktab-btn.active .wh-label { color: var(--white); }
.wh-sub { font-size: 12.5px; line-height: 1.3; color: var(--slate); font-weight: 400; }
.workhub-nav .worktab-btn.active .wh-sub { color: rgba(255,255,255,0.62); }
.wh-arrow { width: 18px; height: 18px; color: var(--steel); flex-shrink: 0; opacity: 0; transform: translateX(-5px); transition: all 0.22s var(--ease); }
.workhub-nav .worktab-btn.active .wh-arrow { color: var(--cyan-surge); opacity: 1; transform: none; }
.workhub-panels { min-width: 0; }
@media (max-width: 900px) {
  .workhub { grid-template-columns: 1fr; gap: 18px; }
  .workhub-nav {
    flex-direction: row; gap: 8px;
    position: sticky; top: var(--header-h); z-index: 20;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding: 12px 0; background: var(--cloud);
    box-shadow: 0 1px 0 var(--mist);
    scrollbar-width: none;
  }
  .workhub-nav::-webkit-scrollbar { display: none; }
  .workhub-nav .worktab-btn { flex: 0 0 auto; width: auto; padding: 10px 15px; gap: 9px; border-radius: var(--r-pill); }
  .workhub-nav .wh-text { flex-direction: row; align-items: center; gap: 0; }
  .workhub-nav .wh-sub { display: none; }
  .workhub-nav .wh-label { font-size: 14px; }
  .workhub-nav .wh-arrow { display: none; }
}

/* Deliver: two tracks */
.deliver-band {
  text-align: center;
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 44px;
}
.deliver-band .em-cyan { color: var(--cyan-deep); }
.panel-intro { text-align: center; font-size: 16px; line-height: 1.6; color: var(--slate); max-width: 82ch; margin: -24px auto 32px; }
.panel-intro strong { color: var(--ink); font-weight: 600; }
.cover-levels { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin: 0 auto 30px; }
.cover-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cover-pills span { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--cyan-darker); background: var(--cyan-light); border: 1px solid var(--cyan-tint); border-radius: var(--r-pill); padding: 6px 13px; }
.deliver-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.track {
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--mist);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.track::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.track.push::before { background: var(--signal-yellow); }
.track.compound::before { background: var(--cyan-surge); }
.track-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}
.track h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.track-sub { font-size: 15px; color: var(--slate); margin-bottom: 24px; max-width: none; }
.track-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.track-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15.5px; color: var(--charcoal); line-height: 1.4;
}
.track-list li svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
.track.push .track-list li svg { color: var(--yellow-deep); }
.track.compound .track-list li svg { color: var(--cyan-deep); }
.track-kpi {
  border-top: 1px dashed var(--mist);
  padding-top: 20px;
}
.track-kpi-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
}
.track-kpi-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.track-kpi-pill {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 13px;
  border-radius: var(--r-pill);
}
.track.push .track-kpi-pill { background: var(--yellow-light); color: #6f5908; }
.track.compound .track-kpi-pill { background: var(--cyan-light); color: var(--cyan-darker); }

/* Cover: services grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan-tint);
}
.svc-all { background: var(--ink); border-color: var(--ink); display: flex; flex-direction: column; gap: 9px; }
.svc-all:hover { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.svc-all-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cyan-surge); }
.svc-all h4 { color: var(--white); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0; }
.svc-all p { color: rgba(255,255,255,0.74) !important; max-width: none; }
.svc-all-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--signal-yellow); }
.svc-all-cta svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.svc-all:hover .svc-all-cta svg { transform: translateX(3px); }
.svc-ic {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--cyan-light);
  color: var(--cyan-darker);
  margin-bottom: 16px;
}
.svc-ic svg { width: 20px; height: 20px; }
.svc-card h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 7px; }
.svc-card p { font-size: 14px; color: var(--slate); line-height: 1.5; max-width: none; }
.svc-foot {
  max-width: 1120px;
  margin: 28px auto 0;
  text-align: center;
  font-family: var(--editorial);
  font-style: italic;
  font-size: 19px;
  color: var(--slate);
}
.svc-foot strong { font-style: normal; font-family: var(--display); font-weight: 600; color: var(--ink); }

/* Engage: model cards */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}
.engage-card {
  border-radius: var(--r-xl);
  padding: 36px 30px 34px;
  border: 1px solid var(--mist);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.engage-card.feature {
  background: linear-gradient(165deg, #06223A 0%, var(--ink) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.engage-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--steel);
  margin-bottom: 18px;
}
.engage-card.feature .engage-num { color: var(--cyan-surge); }
.engage-card h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.engage-card.feature h3 { color: var(--white); }
.engage-formula {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 17px;
  color: var(--cyan-deep);
  margin-bottom: 18px;
}
.engage-card.feature .engage-formula { color: var(--cyan-surge); }
.engage-card > p { font-size: 14.5px; color: var(--slate); line-height: 1.55; margin-bottom: 20px; max-width: none; }
.engage-card.feature > p { color: rgba(255,255,255,0.78); }
.engage-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; }
.engage-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--cloud);
  color: var(--slate);
}
.engage-card.feature .engage-tag { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.72); }

/* —— Pricing / work-first —— */
.pricing { background: var(--ink); color: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.pricing h2 { color: var(--white); margin-bottom: 18px; }
.pricing h2 em { font-family: var(--editorial); font-style: italic; font-weight: 300; color: var(--signal-yellow); }
.pricing-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.pricing-eyebrow-pill {
  font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--ink);
  background: var(--cyan-surge); padding: 6px 14px; border-radius: var(--r-pill);
}
.pricing-eyebrow-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); }
.pricing-lede { color: rgba(255,255,255,0.74); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; margin: 0 0 32px; max-width: 50ch; }
.pricing-lede em { font-family: var(--editorial); font-style: italic; color: var(--cyan-surge); }
.pricing-points { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.pricing-point { display: flex; gap: 16px; align-items: flex-start; }
.pricing-point-ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: rgba(32,190,255,0.14);
  color: var(--cyan-surge);
  display: flex; align-items: center; justify-content: center;
}
.pricing-point-ic svg { width: 19px; height: 19px; }
.pricing-point h4 { color: var(--white); font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.pricing-point p { color: rgba(255,255,255,0.70); font-size: 14.5px; line-height: 1.55; max-width: none; }
.pricing-quote {
  background: linear-gradient(165deg, rgba(32,190,255,0.10), rgba(255,217,61,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 44px 38px;
}
.pricing-quote .qmark {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 64px;
  line-height: 0;
  height: 30px;
  display: block;
  color: var(--signal-yellow);
}
.pricing-quote p {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.32;
  color: var(--white);
  max-width: none;
  margin-bottom: 18px;
}
.pricing-quote cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

/* —— Partnership + AI/human diagram —— */
.partner-head { text-align: center; max-width: 760px; margin: 0 auto 24px; }
.partner-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto 64px;
}
.partner-value {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--mist);
  color: var(--slate);
  background: var(--white);
}
.partner-value.cyan { border-color: var(--cyan-tint); color: var(--cyan-darker); background: var(--cyan-soft); }
.partner-value.yellow { border-color: var(--yellow-tint); color: #6f5908; background: var(--yellow-light); }

.aihuman {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.aihuman-title {
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 36px;
}
.aihuman-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.aihuman-node { text-align: center; padding: 24px 18px; border-radius: var(--r-lg); }
.aihuman-node.ai { background: var(--cyan-light); }
.aihuman-node.human { background: var(--yellow-light); }
.aihuman-node.out { background: var(--cloud); }
.aihuman-node-ic {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.aihuman-node.ai .aihuman-node-ic { background: var(--cyan-surge); color: var(--ink); }
.aihuman-node.human .aihuman-node-ic { background: var(--signal-yellow); color: var(--ink); }
.aihuman-node.out .aihuman-node-ic { background: var(--ink); color: var(--white); }
.aihuman-node-ic svg { width: 26px; height: 26px; }
.aihuman-node h4 { font-size: 16px; font-weight: 600; margin-bottom: 5px; }
.aihuman-node p { font-size: 13px; color: var(--slate); line-height: 1.45; max-width: none; }
.aihuman-arrow { color: var(--steel); display: flex; align-items: center; justify-content: center; }
.aihuman-arrow svg { width: 28px; height: 28px; }
.aihuman-foot {
  text-align: center;
  margin-top: 30px;
  font-family: var(--editorial);
  font-style: italic;
  font-size: 18px;
  color: var(--charcoal);
}
.aihuman-foot strong { font-style: normal; font-family: var(--display); font-weight: 600; color: var(--ink); }

/* —— Reciprocity / SHU —— */
.reciprocity { background: var(--cloud); }
.reciprocity-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.rec-ring { transform-box: view-box; transform-origin: 180px 128px; animation: recSpin 80s linear infinite; }
.rec-loop { transform-box: view-box; transform-origin: 180px 128px; animation: recSpinRev 26s linear infinite; }
.rec-glow { animation: recPulse 4.5s ease-in-out infinite; transform-box: view-box; transform-origin: 180px 128px; }
.rec-core { animation: recPulse 4.5s ease-in-out infinite; }
@keyframes recSpin { to { transform: rotate(360deg); } }
@keyframes recSpinRev { to { transform: rotate(-360deg); } }
@keyframes recPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .rec-ring, .rec-loop, .rec-glow, .rec-core { animation: none; } }
.reciprocity-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(165deg, #06223A, var(--ink));
  padding: 48px 40px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.shu-def {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 18px;
}
.reciprocity blockquote {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 26px;
}
.reciprocity blockquote em { color: var(--cyan-deep); font-style: italic; }
.reciprocity-body p { margin-bottom: 16px; }
.reciprocity-challenges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px;
}
.reciprocity-chall {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--mist);
  color: var(--slate);
}

/* —— Credibility / frameworks on world stages —— */
.credibility { background: var(--white); }
.cred-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 920px; margin: 0 auto 48px; }
.cred-stat { text-align: center; }
.cred-stat-n { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.025em; color: var(--ink); line-height: 1; }
.cred-stat-l { font-size: 13px; color: var(--slate); margin-top: 8px; }
.cred-banner { position: relative; max-width: 1000px; margin: 0 auto; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16 / 7; background: var(--ink); box-shadow: var(--shadow-lg); }
.cred-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s var(--ease); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(24px, 4vw, 40px); }
.cred-slide.active { opacity: 1; }
.cred-slide-ic { position: absolute; top: 26px; right: 30px; width: 132px; height: 132px; color: #fff; opacity: 0.13; }
.cred-slide-ic svg { width: 100%; height: 100%; }
.cred-chip { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal-yellow); margin-bottom: 9px; }
.cred-slide h3 { font-family: var(--display); font-weight: 800; font-size: clamp(22px, 3vw, 34px); letter-spacing: -0.02em; color: #fff; }
.cred-slide p { color: rgba(255,255,255,0.82); font-size: clamp(14px, 1.4vw, 16px); line-height: 1.5; margin-top: 8px; max-width: 52ch; }
.cred-dots { position: absolute; bottom: 18px; right: 30px; display: flex; gap: 8px; z-index: 2; }
.cred-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; padding: 0; cursor: pointer; transition: all 0.25s var(--ease); }
.cred-dot:hover { background: rgba(255,255,255,0.6); }
.cred-dot.active { background: var(--signal-yellow); width: 24px; border-radius: 5px; }
.cred-cap { text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--steel); margin: 14px auto 0; }
.cred-cap span { color: var(--mist); }
.cred-venues { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 840px; margin: 30px auto 0; }
.cred-venue { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; padding: 7px 14px; border-radius: var(--r-pill); background: var(--cloud); border: 1px solid var(--mist); color: var(--charcoal); }
.cred-note { text-align: center; max-width: 780px; margin: 34px auto 0; font-family: var(--editorial); font-style: italic; font-weight: 300; font-size: clamp(19px, 2.2vw, 25px); line-height: 1.35; color: var(--ink); }
.cred-note em { color: var(--cyan-deep); font-style: italic; }
@media (max-width: 720px) {
  .cred-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; margin-bottom: 36px; }
  .cred-banner { aspect-ratio: 4 / 5; }
  .cred-slide-ic { width: 90px; height: 90px; top: 20px; right: 22px; }
}

/* —— The standard / success percentage —— */
.standard-lead { max-width: 820px; margin: 0 auto 60px; text-align: center; }
.standard-metric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 56px;
}
.standard-card {
  border-radius: var(--r-xl);
  padding: 38px 34px;
  border: 1px solid var(--mist);
}
.standard-card.dim { background: var(--cloud); }
.standard-card.bright {
  background: linear-gradient(165deg, var(--cyan-deep), var(--cyan-darker));
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.standard-card-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.standard-card.dim .standard-card-tag { color: var(--steel); }
.standard-card.bright .standard-card-tag { color: rgba(255,255,255,0.8); }
.standard-card h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.05;
}
.standard-card.dim h3 { color: var(--slate); }
.standard-card.bright h3 { color: var(--white); }
.standard-card p { font-size: 15px; line-height: 1.55; max-width: none; }
.standard-card.dim p { color: var(--slate); }
.standard-card.bright p { color: rgba(255,255,255,0.85); }
.standard-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.standard-principle {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--mist);
}
.standard-principle svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--cyan-deep); margin-top: 2px; }
.standard-principle p { font-size: 15.5px; color: var(--charcoal); max-width: none; }
.standard-principle strong { color: var(--ink); font-weight: 600; }

/* —— New paradigm / early mover + compounding curve —— */
.paradigm { background: var(--ink); color: var(--white); overflow: hidden; }
.paradigm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.paradigm h2 { color: var(--white); margin-bottom: 22px; }
.paradigm h2 em { font-family: var(--editorial); font-style: italic; font-weight: 300; color: var(--cyan-surge); }
.paradigm-body p { color: rgba(255,255,255,0.74); margin-bottom: 16px; }
.paradigm-body p strong { color: var(--white); }
.paradigm-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.paradigm-points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: rgba(255,255,255,0.82); line-height: 1.45;
}
.paradigm-points li svg { flex-shrink: 0; width: 19px; height: 19px; color: var(--signal-yellow); margin-top: 1px; }
.paradigm-curve {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 32px;
}
.paradigm-curve svg { width: 100%; height: auto; display: block; }
.shift-block { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); }
.shift-title { font-family: var(--display); font-weight: 800; font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em; color: var(--white); margin-bottom: 18px; }
.shift-title em { font-family: var(--editorial); font-style: italic; font-weight: 300; color: var(--signal-yellow); }
.shift-row { display: flex; flex-direction: column; gap: 10px; }
.shift { display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--display); font-size: 15px; }
.shift-from { color: rgba(255,255,255,0.5); text-decoration: line-through;
  text-decoration-color: rgba(244,63,94,0.7); text-decoration-thickness: 2px; }
.shift-arrow { color: var(--cyan-surge); font-weight: 700; }
.shift-to { color: var(--white); font-weight: 600; }
.paradigm-curve-cap {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 16px;
}

/* —— Responsive for new sections —— */
@media (max-width: 900px) {
  .compare-grid,
  .deliver-tracks,
  .pricing-grid,
  .reciprocity-grid,
  .standard-metric,
  .paradigm-grid { grid-template-columns: 1fr; gap: 22px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .engage-grid { grid-template-columns: 1fr; }
  .standard-principles { grid-template-columns: 1fr; gap: 0; }
  .aihuman-flow { grid-template-columns: 1fr; gap: 8px; }
  .aihuman-arrow { transform: rotate(90deg); padding: 4px 0; }
  .pricing-grid { gap: 36px; }
  .reciprocity-grid, .paradigm-grid { gap: 36px; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .worktab-btn { padding: 10px 16px; font-size: 13.5px; }
  .compare-col, .track, .engage-card { padding: 28px 22px; }
}

/* ============================================================================
   GAPS VISUALIZATION — good intention → gaps → outcome (before/after)
   ============================================================================ */
.gaps { max-width: none; margin: 8px 0 0; }
.gaps-intro {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 8px;
}
.gaps-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(21px, 2.4vw, 30px); letter-spacing: -0.02em;
  color: var(--ink); max-width: 22ch; line-height: 1.15;
}
.gaps-title em { font-family: var(--editorial); font-style: italic; font-weight: 300; color: var(--cyan-deep); }
.gaps-toggle {
  display: inline-flex; gap: 4px; padding: 5px;
  background: var(--cloud); border: 1px solid var(--mist); border-radius: var(--r-pill);
  flex-shrink: 0;
}
.gaps-tab {
  font-family: var(--display); font-size: 13.5px; font-weight: 600; color: var(--slate);
  padding: 9px 18px; border: none; background: transparent; border-radius: var(--r-pill);
  cursor: pointer; transition: all 0.2s var(--ease); white-space: nowrap;
}
.gaps-tab:hover { color: var(--ink); }
.gaps-tab.active { background: var(--ink); color: var(--white); }
.gaps-toggle-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; flex-shrink: 0; }
.gaps-toggle { box-shadow: 0 0 0 0 rgba(32,190,255,0.5); }
.gaps-toggle.hint-pulse { animation: gapsPulse 2.4s var(--ease) infinite; }
@keyframes gapsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(32,190,255,0.0); }
  40% { box-shadow: 0 0 0 5px rgba(32,190,255,0.14); }
}
.gaps-hint {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--steel);
}
.gaps-hint::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan-surge); animation: gapsBlink 1.6s ease-in-out infinite;
}
@keyframes gapsBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
.gaps-hint.hidden { display: none; }

.gaps-flow {
  display: flex; align-items: center; gap: 16px;
  padding: 44px 0 16px; flex-wrap: nowrap;
}
.gaps-node {
  flex-shrink: 0; width: 156px; text-align: center;
  padding: 20px 16px; border-radius: var(--r-lg);
  background: var(--white); border: 1.5px solid var(--mist);
  transition: all 0.55s var(--ease);
}
.gaps-node-k {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px;
}
.gaps-node strong { font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1.2; color: var(--ink); }
.gaps-node.start { border-color: var(--ink); }
.gaps-node.end { position: relative; opacity: 0.5; }
.gaps-flow.eco .gaps-node.end {
  opacity: 1; border-color: var(--green);
  background: var(--green-tint); box-shadow: 0 12px 34px rgba(47,185,133,0.26);
}
.gaps-check {
  position: absolute; top: -13px; right: -13px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.4); transition: all 0.4s var(--ease) 0.7s;
}
.gaps-check svg { width: 17px; height: 17px; }
.gaps-flow.eco .gaps-check { opacity: 1; transform: scale(1); }

.gaps-chips { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gapchip {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 16px 8px; border-radius: var(--r-lg);
  border: 1.5px dashed var(--red-soft); background: var(--red-tint);
  transition: all 0.45s var(--ease); transition-delay: calc(var(--i) * 0.08s);
}
.gaps-flow.eco .gapchip { border-style: solid; border-color: var(--green-soft); background: var(--green-tint); }
.gapchip-vis { position: relative; width: 62px; height: 18px; }
.gapchip-vis .end {
  position: absolute; top: 6px; width: 20px; height: 6px; border-radius: 3px;
  background: var(--red); transition: background 0.45s var(--ease); transition-delay: calc(var(--i) * 0.08s);
}
.gapchip-vis .end.l { left: 0; }
.gapchip-vis .end.r { right: 0; }
.gaps-flow.eco .gapchip-vis .end { background: var(--green); }
.gapchip-bridge {
  position: absolute; top: 6px; left: 18px; right: 18px; height: 6px; border-radius: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: center;
  transition: transform 0.45s var(--ease); transition-delay: calc(var(--i) * 0.08s);
}
.gaps-flow.eco .gapchip-bridge { transform: scaleX(1); }
.gapchip-vis::after {
  content: ""; position: absolute; left: 20px; right: 20px; top: 8px;
  border-top: 2px dotted var(--red); opacity: 0.62; transition: opacity 0.3s var(--ease);
}
.gaps-flow.eco .gapchip-vis::after { opacity: 0; }
.gapchip-label {
  font-family: var(--display); font-size: 13px; font-weight: 600; line-height: 1.2;
  color: var(--red-deep); text-align: center; transition: color 0.45s var(--ease);
}
.gaps-flow.eco .gapchip-label { color: var(--green-deep); }
.gapchip-more .gapchip-label { font-style: italic; font-weight: 500; color: var(--red); }

.gaps-caption {
  text-align: center; margin: 8px auto 0; max-width: 60ch;
  font-family: var(--editorial); font-style: italic; font-size: clamp(17px, 1.8vw, 22px);
  color: var(--red-deep); transition: color 0.3s var(--ease);
}
.gaps-flow.eco ~ .gaps-caption { color: var(--green-deep); }
.gaps-note {
  text-align: center; margin: 22px auto 0; max-width: 70ch;
  font-size: 16px; line-height: 1.6; color: var(--slate);
}
.gaps-note strong { color: var(--ink); font-weight: 600; }
.squiggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,7 Q10,1 20,7 T40,7 T60,7 T80,7 T100,7' fill='none' stroke='%23FFD93D' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.5em;
  padding-bottom: 0.16em;
}

@media (max-width: 860px) {
  .gaps-flow { flex-direction: column; align-items: stretch; gap: 14px; }
  .gaps-toggle-wrap { align-items: flex-start; }
  .gaps-node { width: auto; }
  .gaps-chips { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .gapchip { flex: 0 1 calc(50% - 6px); }
  .gaps-check { top: -13px; right: 50%; margin-right: -16px; }
  .mm-group-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.mm-group-toggle svg {
  width: 22px;
}
.header{
  overflow: hidden;
}
#hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
}
}
@media (max-width: 767px) {
.probs.reveal.is-visible {
  flex-wrap: wrap;
}
.footer-col {
  width: 100% !important;
}
}
@media (max-width: 460px) {
  .gapchip { flex: 1 1 100%; flex-direction: row; justify-content: center; }
  .gaps-intro { gap: 14px; }
  .gaps {
    padding: 0 !important;
}
.gaps-tab {
    font-size: 10.5px !important;
}
.header-inner {
  padding: 0 10px !important;
}
.btn-primary {
  font-size: 11px !important;
  padding: 11px 11px !important;
}
.btn-primary svg {
  display: none;
}

}


*:focus-visible { outline: 2px solid var(--cyan-surge); outline-offset: 3px; }





















/* ===== HERO ===== */
.hero-start-here{padding:84px 0 40px;position:relative;overflow:hidden}
.hero-start-here::before{content:"";position:absolute;top:-160px;right:-120px;width:520px;height:520px;background:radial-gradient(circle,var(--cyan-light),transparent 65%);opacity:.7;z-index:0}
.hero-start-here .container{position:relative;z-index:1}
.eyebrow{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:12px;font-weight:500;letter-spacing:.04em;text-transform:uppercase;color:var(--cyan-darker);background:var(--cyan-soft);border:1px solid var(--cyan-light);padding:6px 12px;border-radius:var(--r-pill)}
.hero-start-here h1{font-family:var(--editorial);font-weight:400;font-size:clamp(38px,5.4vw,62px);line-height:1.04;letter-spacing:-.02em;margin:22px 0 18px;max-width:16ch}
.hero-start-here h1 em{color:var(--cyan-deep)}
.hero-start-here .lede{font-size:clamp(17px,2vw,20px);color:var(--slate);max-width:54ch;font-weight:400}
 
/* ===== CHOOSER ===== */
.chooser{padding:18px 0 28px}
.quiz{background:var(--white);border:1px solid var(--mist);border-radius:var(--r-xl);padding:clamp(24px,4vw,44px);box-shadow:0 24px 60px -34px rgba(10,22,40,.28)}
.progress{display:flex;align-items:center;gap:10px;margin-bottom:26px}
.progress .step{height:4px;flex:1;background:var(--mist);border-radius:var(--r-pill);overflow:hidden}
.progress .step span{display:block;height:100%;width:0;background:var(--cyan-surge);transition:width .4s var(--ease-out)}
.progress .step.done span,.progress .step.current span{width:100%}
.q-label{font-family:var(--mono);font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--steel);margin-bottom:6px}
.q-title{font-family:var(--editorial);font-weight:400;font-size:clamp(24px,3.4vw,32px);letter-spacing:-.01em;margin-bottom:24px}
.options{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.option{text-align:left;display:flex;flex-direction:column;gap:4px;padding:20px;border:1px solid var(--mist);border-radius:var(--r-lg);background:var(--paper);transition:border-color .18s,background .18s,transform .18s}
.option:hover{border-color:var(--cyan-surge);background:var(--cyan-soft);transform:translateY(-2px)}
.option .o-title{font-size:16px;font-weight:600;color:var(--ink)}
.option .o-sub{font-size:13.5px;color:var(--slate)}
.q-back{margin-top:22px;font-size:13.5px;font-weight:500;color:var(--steel);display:inline-flex;align-items:center;gap:6px}
.q-back:hover{color:var(--slate)}
.q-back[hidden]{display:none}
 
/* ===== RESULT ===== */
.result{display:none}
.result.show{display:block;animation:rise .5s var(--ease-out)}
@keyframes rise{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.result .r-eyebrow{font-family:var(--mono);font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--sage);margin-bottom:10px;display:flex;align-items:center;gap:8px}
.result h2{font-family:var(--editorial);font-weight:400;font-size:clamp(26px,3.6vw,38px);letter-spacing:-.01em;margin-bottom:14px}
.result p.r-body{font-size:17px;color:var(--slate);max-width:56ch;margin-bottom:8px}
.result p.r-context{font-size:14.5px;color:var(--steel);max-width:56ch;margin-bottom:26px}
.r-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.r-primary{display:inline-flex;align-items:center;gap:9px;font-size:15px;font-weight:600;color:var(--white);background:var(--cyan-deep);padding:14px 24px;border-radius:var(--r-pill);transition:background .2s,transform .2s}
.r-primary:hover{background:var(--cyan-darker);transform:translateY(-1px)}
.r-primary svg{width:17px;height:17px}
.r-secondary{font-size:14.5px;font-weight:600;color:var(--slate);display:inline-flex;align-items:center;gap:6px;border-bottom:1px solid var(--mist);padding-bottom:2px}
.r-secondary:hover{color:var(--ink);border-color:var(--steel)}
.r-restart{margin-top:24px;font-size:13.5px;font-weight:500;color:var(--steel);display:inline-flex;align-items:center;gap:6px}
.r-restart:hover{color:var(--slate)}
 
/* ===== DIRECT PATHS ===== */
.direct{padding:44px 0 16px}
.direct .head{display:flex;align-items:baseline;justify-content:space-between;gap:16px;margin-bottom:22px;flex-wrap:wrap}
.direct .head h3{font-family:var(--editorial);font-weight:400;font-size:clamp(22px,3vw,28px);letter-spacing:-.01em}
.direct .head a{font-size:14px;font-weight:600;color:var(--cyan-darker)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{display:flex;flex-direction:column;gap:8px;padding:26px;border:1px solid var(--mist);border-radius:var(--r-lg);background:var(--white);transition:border-color .18s,transform .18s,box-shadow .18s}
.card:hover{border-color:var(--ink);transform:translateY(-3px);box-shadow:0 18px 40px -28px rgba(10,22,40,.35)}
.card .c-num{font-family:var(--mono);font-size:12px;color:var(--steel)}
.card h4{font-size:17px;font-weight:600}
.card p{font-size:14px;color:var(--slate)}
.card .c-go{margin-top:6px;font-size:13.5px;font-weight:600;color:var(--cyan-darker);display:inline-flex;align-items:center;gap:6px}
 
/* ===== ANALYSER TEASER ===== */
.teaser{margin:40px 0 8px;padding:26px 28px;border:1px dashed var(--steel);border-radius:var(--r-lg);background:var(--cyan-soft);display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.teaser .t-text{max-width:60ch}
.teaser .t-tag{font-family:var(--mono);font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--cyan-darker);font-weight:500}
.teaser h4{font-family:var(--editorial);font-weight:400;font-size:22px;margin:4px 0 4px}
.teaser p{font-size:14px;color:var(--slate)}
.teaser .t-soon{font-size:12.5px;font-weight:600;color:var(--white);background:var(--steel);padding:7px 14px;border-radius:var(--r-pill);white-space:nowrap}
 
/* ===== HONEST NOTE ===== */
.note{padding:36px 0 64px}
.note p{font-size:15px;color:var(--slate);max-width:62ch}
.note p em{color:var(--ink)}






/* HERO */
.hero-service-frame{padding:78px 0 30px;position:relative;overflow:hidden}
.hero-service-frame::before{content:"";position:absolute;top:-180px;right:-120px;width:560px;height:560px;background:radial-gradient(circle,var(--cyan-light),transparent 65%);opacity:.75;z-index:0}
.hero-service-frame .container{position:relative;z-index:1}
.crumb{font-size:13px;color:var(--steel);margin-bottom:20px}
.crumb a:hover{color:var(--slate)}
.hero-service-frame h1{font-family:var(--editorial);font-weight:400;font-size:clamp(40px,5.8vw,68px);line-height:1.02;letter-spacing:-.02em;margin:18px 0 18px;max-width:15ch}
.hero-service-frame h1 em{color:var(--cyan-deep)}
.hero-service-frame .lede{font-size:clamp(17px,2vw,20px);color:var(--slate);max-width:60ch}
.hero-service-frame .lede b{color:var(--ink);font-weight:600}

/* generic section */
.section{padding:56px 0}
.section .head{max-width:62ch;margin-bottom:34px}
.section .head h2{font-family:var(--editorial);font-weight:400;font-size:clamp(28px,3.8vw,42px);letter-spacing:-.015em;margin:10px 0 12px;color:var(--ink)}
.section .head h2 em{color:var(--cyan-deep)}
.section .head p{font-size:16.5px;color:var(--slate)}

/* PUSH / PULL */
.engine{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.motion{border:1px solid var(--mist);border-radius:var(--r-xl);padding:32px;background:var(--white);position:relative;overflow:hidden}
.motion.push{background:linear-gradient(180deg,var(--cyan-soft),var(--white))}
.motion.pull{background:linear-gradient(180deg,var(--yellow-light),var(--white))}
.motion .m-tag{font-family:var(--mono);font-size:12px;letter-spacing:.05em;text-transform:uppercase;font-weight:500}
.motion.push .m-tag{color:var(--cyan-darker)}
.motion.pull .m-tag{color:var(--yellow-darker)}
.motion h3{font-family:var(--editorial);font-weight:400;font-size:27px;letter-spacing:-.01em;margin:8px 0 12px}
.motion p{font-size:15px;color:var(--slate);margin-bottom:18px}
.motion ul{list-style:none;display:flex;flex-direction:column;gap:9px;margin-bottom:20px}
.motion li{font-size:14.5px;color:var(--charcoal);padding-left:20px;position:relative}
.motion li::before{content:"";position:absolute;left:0;top:9px;width:7px;height:7px;border-radius:50%}
.motion.push li::before{background:var(--cyan-surge)}
.motion.pull li::before{background:var(--signal-yellow)}
.motion .m-metric{font-family:var(--mono);font-size:12.5px;color:var(--slate);border-top:1px dashed var(--mist);padding-top:14px}
.motion .m-metric b{color:var(--ink);font-weight:500}
.engine-foot{text-align:center;margin-top:22px;font-size:15px;color:var(--slate)}
.engine-foot em{color:var(--ink)}

/* FOUR LAYERS flow */
.layers-flow{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.flow-step{position:relative;padding:26px 22px;border:1px solid var(--mist);background:var(--white);border-right:none}
.flow-step:first-child{border-radius:var(--r-lg) 0 0 var(--r-lg)}
.flow-step:last-child{border-right:1px solid var(--mist);border-radius:0 var(--r-lg) var(--r-lg) 0}
.flow-step .fs-num{font-family:var(--mono);font-size:12px;color:var(--steel)}
.flow-step .fs-bar{height:4px;border-radius:var(--r-pill);margin:10px 0 14px}
.flow-step:nth-child(1) .fs-bar{background:var(--cyan-darker)}
.flow-step:nth-child(2) .fs-bar{background:var(--cyan-deep)}
.flow-step:nth-child(3) .fs-bar{background:var(--cyan-surge)}
.flow-step:nth-child(4) .fs-bar{background:var(--signal-yellow)}
.flow-step h4{font-size:17px;font-weight:600;margin-bottom:7px}
.flow-step p{font-size:13.5px;color:var(--slate)}
.flow-step .arrow{position:absolute;right:-11px;top:50%;transform:translateY(-50%);width:22px;height:22px;background:var(--paper);border:1px solid var(--mist);border-radius:50%;display:flex;align-items:center;justify-content:center;z-index:2}
.flow-step:last-child .arrow{display:none}
.flow-step .arrow svg{width:12px;height:12px;stroke:var(--steel)}

/* ECOSYSTEM sequence (spine) */
.spine{position:relative;margin-left:8px}
.spine::before{content:"";position:absolute;left:19px;top:14px;bottom:14px;width:2px;background:linear-gradient(180deg,var(--cyan-darker),var(--cyan-surge) 60%,var(--signal-yellow))}
.seq{position:relative;display:grid;grid-template-columns:40px 1fr;gap:22px;padding:14px 0}
.seq .dot{width:40px;height:40px;border-radius:50%;background:var(--white);border:2px solid var(--cyan-deep);display:flex;align-items:center;justify-content:center;font-family:var(--mono);font-size:14px;font-weight:500;color:var(--cyan-darker);z-index:1}
.seq:nth-child(5) .dot{border-color:var(--signal-yellow);color:var(--yellow-darker)}
.seq .body{background:var(--white);border:1px solid var(--mist);border-radius:var(--r-lg);padding:22px 24px;transition:border-color .18s,transform .18s,box-shadow .18s}
.seq .body:hover{border-color:var(--cyan-surge);transform:translateY(-2px);box-shadow:0 16px 36px -28px rgba(10,22,40,.35)}
.seq .body h4{font-size:18px;font-weight:600;margin-bottom:4px}
.seq .body .lead{font-size:14.5px;color:var(--slate);margin-bottom:14px;max-width:74ch}
.seq .chips{display:flex;flex-wrap:wrap;gap:8px}
.seq .chips span{font-size:12.5px;color:var(--charcoal);background:var(--cloud);border-radius:var(--r-pill);padding:5px 12px}

/* CHANNELS grid */
.ch-strip{display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;margin-bottom:22px}
.ch-strip .k{font-family:var(--mono);font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--steel)}
.ch-strip .v{font-size:16px;color:var(--slate)}
.ch-strip .v b{color:var(--ink);font-weight:600}
.ch-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.ch-card{display:flex;align-items:center;min-height:78px;padding:18px 20px;border:1px solid var(--mist);border-radius:var(--r-lg);background:var(--white);font-size:15.5px;font-weight:600;color:var(--ink);transition:border-color .18s,transform .18s,box-shadow .18s}
.ch-card:hover{border-color:var(--ink);transform:translateY(-2px);box-shadow:0 14px 32px -26px rgba(10,22,40,.4)}
.ch-all{margin-top:18px}
.ch-all a{font-size:14.5px;font-weight:600;color:var(--cyan-darker);display:inline-flex;align-items:center;gap:6px}

/* GAPS */
.gaps{background:var(--cloud);border-radius:var(--r-xl);padding:clamp(28px,4vw,48px)}
.gaps .head h2{color:var(--ink)}
.gap-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:26px}
.gap{background:var(--white);border:1px solid var(--mist);border-radius:var(--r-lg);padding:22px}
.gap .g-n{font-family:var(--mono);font-size:12px;color:var(--cyan-darker);margin-bottom:8px}
.gap h4{font-size:16px;font-weight:600;margin-bottom:6px}
.gap p{font-size:13.5px;color:var(--slate)}
.gaps .close{margin-top:24px;font-size:15px;color:var(--slate);max-width:70ch}
.gaps .close em{color:var(--ink)}

/* CTA band */
.cta{background:var(--ink);color:var(--white);border-radius:var(--r-xl);padding:clamp(34px,5vw,56px);text-align:center;margin:8px 0}
.cta h2{font-family:var(--editorial);font-weight:400;font-size:clamp(28px,4vw,42px);letter-spacing:-.015em;margin-bottom:12px}
.cta h2 em{color:var(--cyan-surge)}
.cta p{font-size:16.5px;color:var(--mist);max-width:56ch;margin:0 auto 28px}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.cta .primary{display:inline-flex;align-items:center;gap:9px;font-size:15px;font-weight:600;color:var(--ink);background:var(--signal-yellow);padding:14px 26px;border-radius:var(--r-pill);transition:transform .2s,background .2s}
.cta .primary:hover{background:var(--yellow-deep);transform:translateY(-1px)}
.cta .primary svg{width:17px;height:17px}
.cta .ghost{display:inline-flex;align-items:center;gap:8px;font-size:15px;font-weight:600;color:var(--white);padding:14px 24px;border:1px solid var(--charcoal);border-radius:var(--r-pill);transition:border-color .2s,background .2s}
.cta .ghost:hover{border-color:var(--steel);background:var(--charcoal)}

/* FOOTER */
/*.footer{background:var(--ink);color:var(--cloud);padding:64px 0 30px;margin-top:24px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px}
.footer .wordmark{color:var(--white);margin-bottom:14px}
.footer-brand p{font-size:14px;color:var(--steel);max-width:34ch;margin-bottom:14px}
.footer-parent{font-size:12.5px;color:var(--slate)}
.footer-col h4{font-size:12px;font-family:var(--mono);letter-spacing:.06em;text-transform:uppercase;color:var(--steel);margin-bottom:14px}
.footer-col ul{list-style:none}.footer-col li{margin-bottom:9px}
.footer-col a{font-size:14px;color:var(--mist);transition:color .15s}.footer-col a:hover{color:var(--white)}
.footer-bottom{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-top:48px;padding-top:22px;border-top:1px solid var(--charcoal);font-size:12.5px;color:var(--slate)}
*/
/* reveal */
.reveal{opacity:0;transform:translateY(16px);animation:reveal .7s var(--ease-out) forwards}
.reveal.d1{animation-delay:.05s}.reveal.d2{animation-delay:.13s}.reveal.d3{animation-delay:.22s}
@keyframes reveal{to{opacity:1;transform:none}}

@media(max-width:980px){
  .layers-flow{grid-template-columns:1fr 1fr}
  .flow-step{border-right:1px solid var(--mist) !important;border-bottom:none}
  .flow-step:nth-child(1){border-radius:var(--r-lg) 0 0 0}
  .flow-step:nth-child(2){border-radius:0 var(--r-lg) 0 0}
  .flow-step:nth-child(3){border-radius:0 0 0 var(--r-lg)}
  .flow-step:nth-child(4){border-radius:0 0 var(--r-lg) 0}
  .flow-step .arrow{display:none}
  .ch-grid{grid-template-columns:repeat(2,1fr)}
  .gap-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:860px){
  .nav{display:none}.hamburger{display:block}.nav-actions .btn-ghost{display:none}
  .engine{grid-template-columns:1fr}
}
@media(max-width:520px){
  :root{--pad-x:20px}
  .layers-flow{grid-template-columns:1fr}
  .flow-step{border-radius:0 !important;border-right:1px solid var(--mist) !important;border-bottom:none}
  .flow-step:first-child{border-radius:var(--r-lg) var(--r-lg) 0 0 !important}
  .flow-step:last-child{border-bottom:1px solid var(--mist);border-radius:0 0 var(--r-lg) var(--r-lg) !important}
  .ch-grid,.gap-grid,.footer-grid{grid-template-columns:1fr}
}
/*frame-works*/