/* ============================================================
   Vence Sans — the ONLY font (brand rule). Self-hosted woff2.
   ============================================================ */
/* Dual family names: quoted brand name + single-token alias so minifiers
   cannot break multi-word font-family into an invalid declaration. */
@font-face { font-family: "Vence Sans"; src: url("/fonts/VenceSans-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Vence Sans"; src: url("/fonts/VenceSans-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Vence Sans"; src: url("/fonts/VenceSans-SemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Vence Sans"; src: url("/fonts/VenceSans-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: VenceSans; src: url("/fonts/VenceSans-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: VenceSans; src: url("/fonts/VenceSans-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: VenceSans; src: url("/fonts/VenceSans-SemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: VenceSans; src: url("/fonts/VenceSans-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --teal: #144242;
  --teal-900: #0e3232;
  --teal-700: #1a5050;
  --teal-stage: #123838;
  --sage: #748f88;
  --sage-200: #aebfba;
  --cream: #f3f1ea;
  --ink: #0a0a0a;
  /* Brand stack: "Vence Sans" first; VenceSans alias survives minify */
  --font: "Vence Sans", VenceSans, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body, #root {
  background: var(--teal);
  color: var(--cream);
  font-family: "Vence Sans", VenceSans, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select {
  font-family: "Vence Sans", VenceSans, sans-serif;
}
button { cursor: pointer; border: 0; }

/* ============================================================
   Cinematic hero — scroll-scrubbed MP4
   ============================================================ */
.cine { position: relative; height: 500vh; }
.cine__stage {
  position: sticky; top: 0; height: 100vh; width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #144242 url("/hero/poster-start.jpg") center / cover no-repeat;
}
@media (max-width: 900px) {
  .cine__stage {
    height: 100dvh;
    min-height: 100dvh;
  }
  /* Opening frame — center the subject on phone (face was clipped left). */
  .cine__video {
    object-position: 30% center;
    transform: scale(1.06);
    transform-origin: 30% center;
  }
  .cine__blur-circle {
    -webkit-mask-image: radial-gradient(
      ellipse 58% 52% at 38% 42%,
      transparent 0%,
      transparent 24%,
      rgba(0, 0, 0, 0.3) 42%,
      rgba(0, 0, 0, 0.7) 62%,
      #000 88%
    );
    mask-image: radial-gradient(
      ellipse 58% 52% at 38% 42%,
      transparent 0%,
      transparent 24%,
      rgba(0, 0, 0, 0.3) 42%,
      rgba(0, 0, 0, 0.7) 62%,
      #000 88%
    );
  }
  .hero--open {
    top: auto;
    bottom: clamp(72px, 14vh, 120px);
    width: min(520px, 92vw);
  }
  .hero--open h1 {
    max-width: 14ch;
  }
}
.cine__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
  z-index: 0;
}

/*
  Mercury blur circle — CSS only (one video underneath).
  backdrop-filter blurs the film through a full radial ring mask.
*/
.cine__blur-circle {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  backdrop-filter: blur(22px) saturate(1.05);
  -webkit-backdrop-filter: blur(22px) saturate(1.05);
  -webkit-mask-image: radial-gradient(
    ellipse 50% 46% at 50% 42%,
    transparent 0%,
    transparent 24%,
    rgba(0, 0, 0, 0.3) 42%,
    rgba(0, 0, 0, 0.7) 62%,
    #000 88%
  );
  mask-image: radial-gradient(
    ellipse 50% 46% at 50% 42%,
    transparent 0%,
    transparent 24%,
    rgba(0, 0, 0, 0.3) 42%,
    rgba(0, 0, 0, 0.7) 62%,
    #000 88%
  );
}

/* Soft dark vignette on the blur ring (Mercury depth). */
.cine__vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(
      ellipse 62% 58% at 50% 44%,
      transparent 28%,
      rgba(8, 16, 16, 0.10) 58%,
      rgba(6, 12, 12, 0.28) 82%,
      rgba(4, 10, 10, 0.40) 100%
    );
}

/* Barely-there warm dark grade — strongest at opening, eases as you scroll. */
.cine__grade {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  opacity: 1;
  background:
    linear-gradient(
      165deg,
      rgba(28, 22, 12, 0.22) 0%,
      rgba(18, 28, 26, 0.10) 38%,
      rgba(10, 20, 20, 0.16) 100%
    ),
    radial-gradient(
      ellipse 90% 80% at 70% 40%,
      rgba(180, 140, 70, 0.07) 0%,
      transparent 55%
    );
}

.cine__grain-fill {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
  background: url("/hero/grain-full.jpg?v=6") center / cover no-repeat;
  opacity: 0;
}
.cine__ui {
  position: absolute; inset: 0; z-index: 8;
  opacity: 0; display: flex; flex-direction: column;
  padding-top: 88px;
  pointer-events: none;
}

/* ============================================================
   Liquid glass
   ============================================================ */
.liquid-glass {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 48%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--cream);
}
.liquid-glass__shine {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.04) 28%,
    transparent 52%
  );
  opacity: 0.85;
}
.liquid-glass__edge {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}
.liquid-glass__content {
  position: relative; z-index: 3;
}
/* White cursor-trackable hover — same language as nav mega rectangles */
.liquid-glass__hover-spill {
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background:
    radial-gradient(
      130px circle at var(--mx) var(--my),
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.12) 32%,
      transparent 68%
    );
  mix-blend-mode: soft-light;
}
.liquid-glass__hover-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  padding: 1.5px;
  background: radial-gradient(
    160px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.35) 28%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 72%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(0.6px);
}
.liquid-glass:hover .liquid-glass__hover-spill,
.liquid-glass.is-glowing .liquid-glass__hover-spill,
.liquid-glass:hover .liquid-glass__hover-glow,
.liquid-glass.is-glowing .liquid-glass__hover-glow {
  opacity: 1;
}

.liquid-glass--blur-sm {
  backdrop-filter: blur(14px) saturate(1.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.35);
}
.liquid-glass--blur-md {
  backdrop-filter: blur(26px) saturate(1.45);
  -webkit-backdrop-filter: blur(26px) saturate(1.45);
}
.liquid-glass--blur-lg {
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
}

.liquid-glass--glow-none { box-shadow: none; }
.liquid-glass--glow-sm {
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 48px rgba(255, 255, 255, 0.07);
}
.liquid-glass--glow-md {
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 70px rgba(255, 255, 255, 0.09);
}

.liquid-glass--shadow-none { /* glow handles elevation */ }
.liquid-glass--shadow-sm {
  /* layered with glow via combined box-shadow on glow class */
}

.liquid-glass--hero {
  padding: clamp(28px, 4vw, 44px) clamp(26px, 5vw, 56px);
  max-width: 760px;
  text-align: center;
}

/* ============================================================
   Flex-style nav — liquid glass, hide on scroll down
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.22s ease,
    visibility 0s linear 0s;
  will-change: transform;
}
.nav.is-hidden {
  transform: translate3d(0, calc(-100% - 16px), 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.22s ease,
    visibility 0s linear 0.45s;
}
.nav.is-hidden.nav--mega-open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Peek nav when cursor returns to top edge — bar only, never opens mega */
.nav.is-hidden:hover,
.nav.is-hidden:focus-within {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav.is-hidden:hover .nav-mega,
.nav.is-hidden:focus-within .nav-mega {
  grid-template-rows: 0fr;
  max-height: 0;
  visibility: hidden;
  pointer-events: none;
}
.nav__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 2;
  /* Nearly invisible until content scrolls behind — then frosted glass reads */
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  border-bottom: 0;
  box-shadow: inset 0 -0.5px 0 rgba(255, 255, 255, 0);
}
.nav--glass .nav__bar {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  border-bottom: 0;
}
.nav--mega-open .nav__bar {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  border-bottom: 0;
  transition:
    background 0.28s ease,
    backdrop-filter 0.28s ease;
}
.nav--mega-open.nav--mega-settled .nav__bar {
  background: rgba(8, 14, 14, 0.55);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
}
.nav__brand {
  justify-self: start;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
/* Institutional lockup — mark SVG + Vence Sans Medium wordmark */
.vence-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 22px;
  line-height: 1;
  color: var(--cream, #f3f1ea);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  cursor: inherit;
}
.vence-lockup__mark {
  display: block;
  height: 1em;
  width: auto;
  flex-shrink: 0;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.vence-lockup__word {
  font-family: "Vence Sans", sans-serif;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: -0.06em; /* tracking -60 */
  line-height: 1;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
.nav__logo {
  font-size: 22px;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.25));
}
.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.nav__links a,
.nav__link-btn {
  opacity: 0.72;
  color: rgba(243, 241, 234, 0.82);
  transition: opacity 0.2s ease, color 0.2s ease;
  background: transparent;
  border: 0;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}
/* Products stays calmer; other links brighten to white on hover */
.nav__links a:hover,
.nav__link-btn:hover:not(.nav__link-btn--mega) {
  opacity: 1;
  color: #fff;
}
.nav__link-btn--mega:hover,
.nav__link-btn--mega.is-open {
  opacity: 0.95;
  color: rgba(243, 241, 234, 0.92);
}
.nav__caret {
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
  transition: transform .2s ease;
}
.nav__link-btn.is-open .nav__caret {
  transform: rotate(225deg) translateY(-1px);
}
.nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__login {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.9;
  padding: 8px 4px;
  text-decoration: none;
  border: 0;
  border-bottom: 0;
  background: transparent;
  font-family: "Vence Sans", VenceSans, sans-serif;
  cursor: pointer;
  box-shadow: none;
}
.nav__login:hover { opacity: 1; }
.nav__cta {
  text-decoration: none;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--cream);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 28px rgba(0, 0, 0, 0.12);
}
.nav__cta:hover,
.nav__cta.btn--lit {
  background: rgba(255, 255, 255, 0.16);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 32px rgba(0, 0, 0, 0.16);
}

.nav-mega {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  border-bottom: 0;
  box-shadow: none;
  font-family: "Vence Sans", VenceSans, sans-serif;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.42s;
  z-index: 1;
}
.nav-mega.is-open {
  grid-template-rows: 1fr;
  max-height: 720px;
  visibility: visible;
  pointer-events: auto;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}
.nav-mega__pyramid {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  visibility: hidden;
}
.nav-mega.is-open .nav-mega__pyramid {
  visibility: visible;
  padding: 24px 24px 28px;
  transition: padding 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-mega.is-open.is-settled .nav-mega__pyramid {
  background: rgba(8, 14, 14, 0.72);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  transition:
    padding 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.22s ease,
    backdrop-filter 0.22s ease;
}
.nav-mega__featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 1120px;
  margin-bottom: 0;
  transition: gap 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-mega__pyramid--drawer .nav-mega__featured {
  gap: 10px;
}
.nav-mega__world {
  --mx: 50%;
  --my: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0a1413;
  cursor: pointer;
  text-align: left;
  font-family: "Vence Sans", VenceSans, sans-serif;
  transform: none;
  transition:
    min-height 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1100px) {
  .nav-mega__world {
    min-height: 224px;
  }
}
.nav-mega__pyramid--drawer .nav-mega__world {
  min-height: 152px;
}
@media (min-width: 1100px) {
  .nav-mega__pyramid--drawer .nav-mega__world {
    min-height: 168px;
  }
}
.nav-mega__world-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.35s ease;
}
.nav-mega__world:hover .nav-mega__world-img {
  filter: brightness(1.06);
}
/* Soft white spill that follows the cursor */
.nav-mega__world::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 3;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background:
    radial-gradient(
      130px circle at var(--mx) var(--my),
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.12) 32%,
      transparent 68%
    );
  mix-blend-mode: soft-light;
}
.nav-mega__world:hover::before {
  opacity: 1;
}
/* Edge-only white aura (not a hard ring) — brightest toward the cursor */
.nav-mega__world .nav-mega__world-glow {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  padding: 1.5px;
  background: radial-gradient(
    160px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.35) 28%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 72%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(0.6px);
}
.nav-mega__world:hover .nav-mega__world-glow {
  opacity: 1;
}
.nav-mega__world::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 15, 0.15) 0%,
    rgba(8, 16, 15, 0.55) 45%,
    rgba(8, 16, 15, 0.92) 100%
  );
  pointer-events: none;
}
.nav-mega__world-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
}
.nav-mega__world-copy strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.nav-mega__world-copy span {
  font-size: 13px;
  font-weight: 400;
  color: rgba(174, 191, 186, 0.9);
}

/* Flex-style drawer — smooth height when opening + switching categories */
.nav-mega__drawer {
  width: 100%;
  max-width: 1120px;
}
.nav-mega__drawer-shell {
  overflow: hidden;
  will-change: height;
  transition: height 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-mega__drawer-shell:not(.is-revealed) .nav-mega__drawer-grid {
  visibility: hidden;
  pointer-events: none;
}
.nav-mega__drawer-grid {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/* Left: quiet category context, not a giant Flex rail */
.nav-mega__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.nav-mega__head-eyebrow {
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(174, 191, 186, 0.65);
}
.nav-mega__head-blurb {
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: rgba(243, 241, 234, 0.72);
  max-width: 20em;
}
/* Right: products in a calm 2-column grid — distinct from the Flex list */
.nav-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 32px;
}
.nav-mega__item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-family: "Vence Sans", VenceSans, sans-serif;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.nav-mega__item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.nav-mega__item-label {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--cream);
  transition: color 0.22s ease;
}
.nav-mega__item-desc {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.4;
  color: rgba(174, 191, 186, 0.5);
  max-width: 28em;
  transition: color 0.22s ease;
}
.nav-mega__item:hover .nav-mega__item-label {
  color: #fff;
}
.nav-mega__item:hover .nav-mega__item-desc {
  color: rgba(243, 241, 234, 0.62);
}

/* ============================================================
   Cursor glow — TEAL, hero only (dimmed ~50%)
   ============================================================ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 40;
  background: radial-gradient(
    circle,
    rgba(120, 210, 200, 0.28) 0%,
    rgba(80, 170, 160, 0.16) 28%,
    rgba(20, 90, 88, 0.08) 52%,
    transparent 72%
  );
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.28s ease;
  filter: blur(3px);
}
.cursor-glow.is-on { opacity: 0.5; }
.cursor-glow.is-on.cursor-glow--over-btn { opacity: 0.22; }
.cursor-glow.is-on.cursor-glow--nav {
  opacity: 0.38;
  filter: blur(4px);
}

/* ============================================================
   Buttons — clean (no outer glow blobs). Soft inner sheen on hover only.
   ============================================================ */
.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: "Vence Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 8px;
  padding: 10px 18px;
  background: var(--sage);
  color: var(--teal-900);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
button.btn {
  appearance: none;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle 70% at var(--mx) var(--my),
    rgba(255, 255, 255, 0.22) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn:hover,
.btn.btn--lit {
  transform: translateY(-1px);
}
.btn:hover::before,
.btn.btn--lit::before {
  opacity: 1;
}
.btn--pill { border-radius: 999px; }

.btn--teal {
  background: linear-gradient(165deg, #1a5555 0%, var(--teal) 50%, var(--teal-900) 100%);
  color: var(--cream);
  border-color: rgba(174, 191, 186, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.btn--teal:hover,
.btn--teal.btn--lit {
  color: var(--cream);
  background: linear-gradient(165deg, #1f6060 0%, #164848 50%, #0e3232 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn--teal::before {
  background: radial-gradient(
    circle 65% at var(--mx) var(--my),
    rgba(255, 255, 255, 0.28) 0%,
    transparent 58%
  );
}

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.btn--glass:hover,
.btn--glass.btn--lit {
  background: rgba(255, 255, 255, 0.18);
  color: var(--cream);
}

.btn--solid {
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-900);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--solid:hover,
.btn--solid.btn--lit {
  background: #fff;
  color: var(--teal-900);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.22);
  padding: 10px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover,
.btn--ghost.btn--lit {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
}

/* ============================================================
   Hero copy
   ============================================================ */

/* Opening — Mercury-clean, parked under her hips (clear of face + card). */
.hero--open {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 48%;
  bottom: auto;
  transform: translateX(-50%);
  width: min(560px, 88vw);
  text-align: center;
  pointer-events: auto;
  transition: opacity 0.05s linear;
}
.hero--open h1 {
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  max-width: 20ch;
  margin-inline: auto;
}
.hero--open p {
  margin-top: 12px;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: rgba(243, 241, 234, 0.88);
  max-width: 38ch;
  line-height: 1.5;
  margin-inline: auto;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.3);
}
.hero__cta--open {
  margin-top: 18px;
}
.btn--quiet {
  opacity: 0.72;
  font-weight: 500;
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}
.btn--quiet:hover,
.btn--quiet.btn--lit {
  opacity: 1;
}

/* End — liquid glass centered on the grain. */
.hero--glass {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 56px;
}
.hero--glass h1 {
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.22);
  max-width: 20ch;
  margin-inline: auto;
}
.hero--glass p {
  margin-top: 14px;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 400;
  color: rgba(243, 241, 234, 0.86);
  max-width: 40ch;
  line-height: 1.5;
  margin-inline: auto;
}
.hero__cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero__cta .btn {
  flex: 0 0 auto;
}
.hero__cta input,
.hero__cta--open input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--cream);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 8px;
  width: min(180px, 38vw);
  font-family: var(--font);
}
.hero__cta input::placeholder,
.hero__cta--open input::placeholder {
  color: rgba(174, 191, 186, 0.72);
}

/* ============================================================
   Site sections (post-card grain — content only)
   ============================================================ */
.site-body {
  background: #144242 url("/hero/grain-full.jpg?v=6") center top / cover fixed;
  position: relative;
}
.site-body > * { position: relative; z-index: 1; }

/* Post-hero logo marquee — white marks + flashlight edge glow */
.logo-rail {
  padding: 8px 0 20px;
  margin: -28px 0 0;
  max-width: none;
  text-align: center;
}
.logo-rail__eyebrow {
  font-family: "Vence Sans", VenceSans, sans-serif !important;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-synthesis: none;
  color: rgba(174, 191, 186, 0.62);
  margin: 0 0 18px;
}
.logo-rail__viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
.logo-rail__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(64px, 8vw, 112px);
  padding-inline: 32px;
  /* Medium speed — never pauses on hover */
  animation: logo-marquee 38s linear infinite;
  /* Already mid-motion on first paint so big logos feel centered in-flight */
  animation-delay: -11s;
}
.logo-rail__item {
  --mx: 50%;
  --my: 50%;
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  height: 88px;
  padding: 16px 22px;
  border-radius: 14px;
  cursor: default;
  isolation: isolate;
}
/* Soft white spill that follows the cursor (same language as mega worlds) */
.logo-rail__item::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background: radial-gradient(
    120px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.16) 34%,
    transparent 70%
  );
  mix-blend-mode: soft-light;
}
.logo-rail__item:hover::before,
.logo-rail__item.is-glowing::before {
  opacity: 1;
}
/* Edge-only white aura — flashlight through a hole */
.logo-rail__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  padding: 1.5px;
  background: radial-gradient(
    140px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.4) 28%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 72%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(0.55px);
}
.logo-rail__item:hover .logo-rail__glow,
.logo-rail__item.is-glowing .logo-rail__glow {
  opacity: 1;
}
.logo-rail__img {
  position: relative;
  z-index: 3;
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 0.72;
  /* force any residual brand color → white */
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.logo-rail__item:hover .logo-rail__img,
.logo-rail__item.is-glowing .logo-rail__img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255, 255, 255, 0.55));
}
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-rail__track {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 32px 48px;
  }
}

/* Category band — cinematic full-bleed: portrait is the stage */
.cat-band {
  position: relative;
  height: 420vh;
  background: var(--teal);
  --cat-ink: #f3f1ea;
  /* Soft handoff into / out of page teal */
  box-shadow:
    inset 0 80px 80px -80px rgba(20, 66, 66, 0.85),
    inset 0 -100px 90px -90px rgba(20, 66, 66, 0.9);
}
.cat-band__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 88% 78% at 16% 46%, rgba(26, 80, 80, 0.42) 0%, transparent 54%),
    radial-gradient(ellipse 72% 64% at 84% 38%, rgba(20, 66, 66, 0.55) 0%, transparent 58%),
    linear-gradient(118deg, var(--teal-700) 0%, var(--teal) 42%, var(--teal-900) 100%);
}
.cat-band__amber {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      90% 80% at 78% 42%,
      rgba(255, 140, 64, 0.38) 0%,
      rgba(180, 70, 20, 0.22) 38%,
      transparent 70%
    ),
    linear-gradient(
      115deg,
      rgba(20, 8, 4, 0.92) 0%,
      rgba(40, 16, 8, 0.55) 42%,
      rgba(255, 120, 48, 0.18) 100%
    );
}
.cat-band__stage {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cat-band__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-band__portrait {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  transform-origin: 72% 42%;
  will-change: transform;
}
.cat-band__shot {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: clip-path;
}
.cat-band__shot--a {
  z-index: 2;
}
.cat-band__shot--b {
  z-index: 3;
}
.cat-band__shot--c {
  z-index: 4;
}
.cat-band__face {
  position: absolute;
  right: 0;
  top: 0;
  width: min(96vw, 1400px);
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  will-change: transform, filter;
}
.cat-band__face--portrait {
  object-position: 70% 42%;
  /* Feather into the teal stage on the left so copy + face feel one plane */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.7) 26%,
    #000 42%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.7) 26%,
    #000 42%,
    #000 100%
  );
  filter: contrast(1.08) brightness(1.04);
  z-index: 2;
}
/* Desk / window still — blacks fall away; warm lamp pulled toward Vence teal */
.cat-band__face--desk {
  object-position: 78% 45%;
  z-index: 3;
  mix-blend-mode: lighten;
  filter:
    sepia(0.35)
    hue-rotate(128deg)
    saturate(0.72)
    brightness(0.92)
    contrast(1.12);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 14%,
    rgba(0, 0, 0, 0.55) 32%,
    #000 48%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 14%,
    rgba(0, 0, 0, 0.55) 32%,
    #000 48%,
    #000 100%
  );
}
/* Laugh still — warm amber; blacks dissolve into stage */
.cat-band__face--laugh {
  object-position: 62% 40%;
  z-index: 4;
  mix-blend-mode: lighten;
  filter: saturate(1.05) contrast(1.06) brightness(1.02);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 12%,
    rgba(0, 0, 0, 0.65) 30%,
    #000 46%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 12%,
    rgba(0, 0, 0, 0.65) 30%,
    #000 46%,
    #000 100%
  );
}
/* Soft teal wash so the amber window light sits in brand palette */
.cat-band__tint {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: color;
  background:
    linear-gradient(
      105deg,
      transparent 35%,
      rgba(20, 66, 66, 0.55) 58%,
      rgba(116, 143, 136, 0.35) 78%,
      rgba(20, 66, 66, 0.45) 100%
    );
}
.cat-band__scrub {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.35;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(174, 191, 186, 0.18) 48%,
    transparent 62%
  );
  background-size: 220% 100%;
}
.cat-band__bloom {
  position: absolute;
  width: min(52vw, 640px);
  height: min(52vw, 640px);
  left: 28%;
  top: 38%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(174, 191, 186, 0.14) 28%,
      transparent 68%
    );
  mix-blend-mode: soft-light;
  filter: blur(8px);
  opacity: 0;
  will-change: transform, opacity;
}
.cat-band__seam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      55% 70% at 42% 48%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(
      90deg,
      var(--teal-900) 0%,
      var(--teal-900) 18%,
      rgba(14, 50, 50, 0.55) 34%,
      transparent 58%
    );
  opacity: 0.55;
}
.cat-band__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      120% 90% at 50% 45%,
      transparent 40%,
      rgba(8, 28, 28, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(14, 50, 50, 0.48) 0%,
      transparent 18%,
      transparent 78%,
      rgba(14, 50, 50, 0.62) 100%
    );
}
.cat-band__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.cat-band__copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(56px, 10vh, 120px) clamp(28px, 6vw, 96px);
  max-width: min(52vw, 720px);
}
.cat-band__stack {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 38vh, 420px);
}
.cat-band__beat {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  will-change: opacity;
}
.cat-band__line {
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.4;
  color: color-mix(in srgb, var(--cat-ink) 78%, transparent);
  max-width: 34ch;
  margin: 0;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
  will-change: transform, opacity, filter, color;
}
.cat-band__line--display {
  font-size: clamp(44px, 6.8vw, 80px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.0;
  color: var(--cat-ink);
  max-width: 11ch;
}
.cat-band__line--sub {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--cat-ink);
  max-width: 12ch;
}
.cat-band__line--stack {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--cat-ink);
  margin-bottom: 4px;
  max-width: 16ch;
}
.cat-band__line--merge {
  font-size: clamp(38px, 5.6vw, 66px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--cat-ink);
  max-width: 11ch;
}
@media (max-width: 900px) {
  .cat-band {
    height: 320vh;
  }
  .cat-band__face {
    width: 140%;
    max-width: none;
  }
  .cat-band__face--portrait {
    object-position: 78% center;
    opacity: 0.55;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 28%,
      #000 62%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 28%,
      #000 62%,
      transparent 100%
    );
  }
  .cat-band__face--desk {
    object-position: 70% 40%;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 22%,
      #000 70%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 22%,
      #000 70%,
      transparent 100%
    );
  }
  .cat-band__copy {
    max-width: none;
    padding: clamp(72px, 14vh, 120px) 24px 48px;
    align-items: flex-end;
  }
  .cat-band__line--display,
  .cat-band__line--sub,
  .cat-band__line--merge {
    max-width: 14ch;
  }
  .cat-band__seam {
    background: linear-gradient(
      180deg,
      rgba(14, 50, 50, 0.72) 0%,
      rgba(14, 50, 50, 0.32) 40%,
      rgba(14, 50, 50, 0.78) 100%
    );
  }
}

.section { padding: 120px 40px; max-width: 1180px; margin: 0 auto; }
.section--center { text-align: center; max-width: 920px; }
.eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.section h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -.02em;
  margin-top: 14px;
  max-width: 18ch;
  line-height: 1.08;
}
.section--center h2 { margin-inline: auto; max-width: 22ch; }
.display {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 18ch;
  margin-inline: auto;
}
.display-sub {
  margin-top: 20px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--sage-200);
}
.lede {
  margin-top: 22px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(243, 241, 234, 0.78);
  max-width: 52ch;
  margin-inline: auto;
}
.lede--left { margin-inline: 0; text-align: left; }
.footnote {
  margin-top: 28px;
  font-size: 15px;
  color: var(--sage-200);
  line-height: 1.55;
}
.footnote--strong {
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.section__cta { margin-top: 40px; }

.layer-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 48px;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(243, 241, 234, 0.88);
}
.layer-merge {
  margin-top: 36px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.layer-merge--sm { font-size: clamp(20px, 2.2vw, 28px); text-align: center; }

/* Questions + verdicts */
.section--questions {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.1fr);
  gap: 48px;
  align-items: start;
  max-width: 1180px;
}
.questions__pin {
  position: sticky;
  top: 96px;
}
.questions__rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.verdict {
  background: linear-gradient(155deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 26px 28px;
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.verdict h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.verdict__status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  margin-bottom: 16px;
}
.verdict__status--ok { color: #b8d4c8; border-color: rgba(174,191,186,.35); }
.verdict__status--warn { color: #e2d3a8; border-color: rgba(226,211,168,.3); }
.verdict dl { display: grid; gap: 10px; }
.verdict dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 10px;
}
.verdict dt { color: var(--sage-200); }
.verdict dd { font-weight: 600; font-variant-numeric: tabular-nums; }

/* Signals / trust graph */
.signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.signal {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(243,241,234,.88);
  backdrop-filter: blur(12px);
}
.entity-core {
  margin: 40px auto 0;
  width: min(420px, 92%);
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid rgba(174,191,186,.28);
  background: radial-gradient(ellipse at 50% 30%, rgba(174,191,186,.16), rgba(20,66,66,.35) 70%);
  box-shadow: 0 0 60px rgba(174,191,186,.08), inset 0 1px 0 rgba(255,255,255,.12);
}
.entity-core__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-200);
  font-weight: 600;
}
.entity-core__title {
  margin-top: 8px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* API */
.api-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.code-block {
  margin: 0;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  overflow: auto;
  text-align: left;
  font-family: var(--font);
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(243,241,234,.88);
  white-space: pre;
}
.code-block--out { border-color: rgba(174,191,186,.28); }

/* Product rail */
.product-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.product-card {
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(155deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  backdrop-filter: blur(18px);
  min-height: 150px;
}
.product-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--sage-200);
}

/* Rails */
.rails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.rail {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.rail h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.rail p { font-size: 13px; color: var(--sage-200); line-height: 1.45; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 12px 40px rgba(0,0,0,.12);
  text-align: left;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background:
    radial-gradient(
      130px circle at var(--mx) var(--my),
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.12) 32%,
      transparent 68%
    );
  mix-blend-mode: soft-light;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  padding: 1.5px;
  background: radial-gradient(
    160px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.35) 28%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 72%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(0.6px);
}
.card:hover::before,
.card.is-glowing::before,
.card:hover::after,
.card.is-glowing::after {
  opacity: 1;
}
.card > * {
  position: relative;
  z-index: 3;
}
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.card p { color: var(--sage-200); line-height: 1.55; font-size: 15px; }

/* Shared white edge glow — tabs, example cards, access panels */
.glass-hover {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
}
.glass-hover::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background:
    radial-gradient(
      130px circle at var(--mx) var(--my),
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.12) 32%,
      transparent 68%
    );
  mix-blend-mode: soft-light;
}
.glass-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  padding: 1.5px;
  background: radial-gradient(
    160px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.35) 28%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 72%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: blur(0.6px);
}
.glass-hover:hover::before,
.glass-hover.is-glowing::before,
.glass-hover:hover::after,
.glass-hover.is-glowing::after {
  opacity: 1;
}

/* Prime board */
.prime-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0 100px;
  background: var(--teal);
}
.prime-stage__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: 58% 40%;
  opacity: 0.55;
  filter: saturate(0.9) contrast(1.05) brightness(0.72);
}
.prime-stage__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 66, 66, 0.92) 0%, rgba(20, 66, 66, 0.72) 38%, rgba(20, 66, 66, 0.35) 68%, rgba(20, 66, 66, 0.78) 100%),
    linear-gradient(180deg, var(--teal) 0%, transparent 22%, transparent 70%, var(--teal) 100%),
    radial-gradient(ellipse 90% 80% at 62% 48%, transparent 20%, rgba(20, 66, 66, 0.55) 70%, var(--teal) 100%);
}
.prime-stage__content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.prime-stage__content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 16px;
}
.prime-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.prime-tile {
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 88px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.prime-tile span { font-size: 13px; color: var(--sage-200); }
.prime-tile strong { font-size: 22px; font-weight: 500; color: rgba(243,241,234,.35); }

/* Flywheel — compounding moat */
.flywheel-section {
  max-width: 920px;
  padding-top: clamp(100px, 14vh, 140px);
  padding-bottom: clamp(100px, 14vh, 140px);
}
.flywheel-section h2 {
  font-size: clamp(34px, 4.2vw, 50px);
  max-width: 16ch;
  line-height: 1.06;
}
.flywheel-section__lede {
  margin-top: clamp(36px, 5vh, 52px);
  max-width: 42ch;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
}
.flywheel {
  list-style: none;
  display: grid;
  gap: clamp(10px, 1.4vw, 14px);
  margin: clamp(40px, 6vh, 56px) auto 0;
  max-width: min(780px, 100%);
  width: 100%;
  text-align: left;
}
.flywheel__item {
  display: block;
  padding: clamp(18px, 2.4vw, 24px) clamp(22px, 3vw, 32px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #0a1211;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    background 0.28s ease;
}
.flywheel__head {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 18px);
  position: relative;
  z-index: 3;
}
.flywheel__title {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.25;
}
.flywheel__detail {
  position: relative;
  z-index: 3;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding-left: calc(clamp(28px, 3vw, 34px) + clamp(14px, 2vw, 18px));
  padding-right: 4px;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  color: rgba(174, 191, 186, 0.88);
  transition:
    max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s ease,
    margin 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .flywheel__item:hover,
  .flywheel__item.is-glowing {
    transform: scale(1.015);
    padding: clamp(22px, 2.8vw, 30px) clamp(24px, 3.2vw, 36px);
    border-color: rgba(255, 255, 255, 0.18);
    background: #0c1615;
  }
  .flywheel__item:hover .flywheel__detail,
  .flywheel__item.is-glowing .flywheel__detail {
    max-height: 160px;
    opacity: 1;
    margin-top: 14px;
  }
}
@media (hover: none) {
  .flywheel__detail {
    max-height: none;
    opacity: 1;
    margin-top: 10px;
  }
}
.flywheel__n {
  width: clamp(32px, 3.5vw, 38px);
  height: clamp(32px, 3.5vw, 38px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--teal-900);
  background: rgba(243, 241, 234, 0.88);
  flex-shrink: 0;
  transition: background 0.28s ease, color 0.28s ease;
}
.flywheel__item:hover .flywheel__n,
.flywheel__item.is-glowing .flywheel__n {
  background: var(--cream);
  color: var(--teal-900);
}

.cta-band {
  text-align: center;
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(12px);
  padding: 140px 24px;
}
.cta-band h2 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: -.03em;
  max-width: 16ch;
  margin-inline: auto;
}
.cta-band .lede { margin-top: 18px; }
.cta-band__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Legacy stub footer (replaced by .site-footer) */
.footer {
  border-top: 1px solid rgba(116,143,136,.18);
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--sage);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .disc { max-width: 60ch; line-height: 1.5; }

/* ============================================================
   Post-card interactives
   ============================================================ */
.ix {
  position: relative;
  color: var(--cream);
}
.ix .eyebrow { margin-bottom: 12px; }
.ix h2 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
  max-width: 18ch;
}
.ix .lede { margin-top: 14px; max-width: 52ch; }

/* Trust flow — connected rails → Vence → offers (Flex-inspired, one viewport) */
.trust-flow {
  position: relative;
  margin: 0;
  padding: clamp(72px, 10vh, 108px) clamp(20px, 5vw, 64px) clamp(88px, 12vh, 120px);
  background: var(--teal);
  box-shadow:
    inset 0 80px 80px -80px rgba(20, 66, 66, 0.85),
    inset 0 -80px 80px -80px rgba(20, 66, 66, 0.85);
}
.trust-flow__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto clamp(40px, 6vh, 56px);
}
.trust-flow__head h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
  margin-top: 10px;
}
.trust-flow__lede {
  margin-top: 0;
  max-width: 42ch;
  color: rgba(243, 241, 234, 0.82);
}
.trust-flow__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(12px, 2.5vw, 28px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  min-height: clamp(420px, 52vh, 520px);
}
.trust-flow__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.trust-flow__wire {
  fill: none;
  stroke: rgba(196, 158, 88, 0.52);
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}
.trust-flow__col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 12px);
}
.trust-flow__card {
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 18px 48px rgba(0, 0, 0, 0.22);
}
.trust-flow__card--source {
  padding: 12px 14px 14px;
}
.trust-flow__connected {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2d6b55;
  margin-bottom: 6px;
}
.trust-flow__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2d6b55;
  color: #fff;
  font-size: 9px;
  line-height: 1;
}
.trust-flow__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.trust-flow__card-row strong {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.trust-flow__glyph {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: rgba(10, 10, 10, 0.45);
}
.trust-flow__glyph svg {
  width: 100%;
  height: 100%;
}
.trust-flow__card--core {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 2.8vw, 28px) clamp(20px, 2.5vw, 26px);
  min-height: clamp(240px, 32vh, 280px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trust-flow__brand {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.trust-flow__processing {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  width: 100%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.42);
}
.trust-flow__steps {
  list-style: none;
  width: 100%;
  margin-top: clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-flow__steps li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.72);
}
.trust-flow__step-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.18);
  font-size: 10px;
  color: rgba(10, 10, 10, 0.35);
}
.trust-flow__card--outcome {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-flow__card--featured {
  border: 1.5px solid rgba(45, 107, 85, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 0 0 1px rgba(45, 107, 85, 0.12),
    0 22px 56px rgba(0, 0, 0, 0.26);
}
.trust-flow__pill {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: #2d6b55;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.trust-flow__offer-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
}
.trust-flow__amount {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.trust-flow__offer-label {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.62);
}
.trust-flow__offer-note {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.48);
  margin-top: 2px;
}

/* Capital compare — institutional two-panel scroll sequence */
.cap-compare {
  position: relative;
  height: 340vh;
  margin: 0;
  background: var(--teal);
}
.cap-compare__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(72px, 10vh, 108px) clamp(20px, 5vw, 64px);
  box-sizing: border-box;
}
.cap-compare__copy h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
}
.cap-compare__phase-hint {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(174, 191, 186, 0.72);
  line-height: 1.5;
  max-width: 28ch;
}
.cap-compare__stage {
  position: relative;
  min-height: clamp(420px, 58vh, 560px);
  width: 100%;
}
.cap-compare__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  background: #0a1211;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  visibility: hidden;
}
.cap-compare__panel--without,
.cap-compare__panel--with {
  visibility: visible;
}
.cap-compare__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.5vw, 28px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: clamp(14px, 1.8vw, 18px);
}
.cap-compare__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(174, 191, 186, 0.65);
}
.cap-compare__tag--active {
  color: rgba(243, 241, 234, 0.82);
}
.cap-compare__head h3 {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.cap-compare__chart {
  flex: 1;
  min-height: 0;
  padding: clamp(8px, 1vw, 12px) clamp(12px, 1.5vw, 16px) 0;
}
.cap-compare__svg {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 32vh, 320px);
  display: block;
}
.cap-compare__grid-line {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}
.cap-compare__axis-y {
  fill: rgba(174, 191, 186, 0.55);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.cap-compare__axis-x {
  fill: rgba(174, 191, 186, 0.45);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 11px;
  font-weight: 500;
}
.cap-compare__line--flat {
  stroke: rgba(174, 191, 186, 0.42);
  stroke-width: 1.5;
  stroke-dasharray: 6 5;
}
.cap-compare__line--rise {
  stroke: rgba(243, 241, 234, 0.88);
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.cap-compare__tip-dot {
  fill: var(--cream);
}
.cap-compare__tip-box {
  fill: #0e1817;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}
.cap-compare__tip-label {
  fill: rgba(174, 191, 186, 0.85);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cap-compare__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: end;
  padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.18);
}
.cap-compare__stat-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(174, 191, 186, 0.62);
  margin-bottom: 6px;
}
.cap-compare__stat strong {
  display: block;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--cream);
  line-height: 1;
}
.cap-compare__stat-note {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(174, 191, 186, 0.72);
  max-width: 48ch;
}

.ix-risk, .ix-examples, .ix-access {
  padding: clamp(100px, 14vh, 160px) clamp(24px, 6vw, 80px);
  max-width: 1320px;
  margin-inline: auto;
}
.ix-examples h2,
.ix-access h2 {
  font-size: clamp(34px, 4.2vw, 50px);
  max-width: 18ch;
  line-height: 1.06;
}

.risk-board {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 28px;
  align-items: start;
}
.risk-wheel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.risk-wheel__item {
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: var(--sage-200);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .18s ease;
}
.risk-wheel__item:hover {
  background: rgba(255,255,255,.08);
  color: var(--cream);
}
.risk-wheel__item.is-active {
  color: var(--cream);
  border-color: rgba(125,206,160,.45);
  background: rgba(125,206,160,.12);
  transform: translateX(4px);
}
.risk-controls {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
}
.risk-slider {
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--sage-200);
}
.risk-slider input[type="range"] {
  width: 100%;
  accent-color: #7dcea0;
  cursor: pointer;
}
.risk-slider strong {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--cream);
}
.risk-meters { margin-top: 28px; display: grid; gap: 16px; }
.risk-meter span {
  display: block;
  font-size: 12px;
  color: var(--sage);
  margin-bottom: 6px;
}
.risk-meter__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.risk-meter__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  transition: width .35s ease;
}
.risk-meter__bar i.is-bad { background: linear-gradient(90deg, #c47a6a, #e8a090); }
.risk-meter__bar i.is-good { background: linear-gradient(90deg, #3a8f6a, #7dcea0); }
.risk-meter em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 13px;
  color: var(--sage-200);
}
.risk-saved {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: var(--sage);
}
.risk-saved strong {
  display: block;
  margin-top: 6px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: #9ee0b8;
}

.ex-tabs {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ex-tab {
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--sage-200);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}
.ex-tab:hover { color: var(--cream); background: rgba(255,255,255,.08); }
.ex-tab.is-active {
  color: var(--cream);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
}
.ex-card {
  margin-top: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0a1211;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
.ex-card__body {
  transition:
    opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.ex-card__body.is-leaving {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.ex-card__ask {
  padding: clamp(28px, 3.5vw, 40px) clamp(28px, 4vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 3;
}
.ex-card__ask span {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.ex-card__ask strong {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.12;
  max-width: 24ch;
}
.ex-card__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 3;
}
.ex-card__split > div {
  padding: clamp(28px, 3.5vw, 44px) clamp(28px, 4vw, 48px);
  min-height: clamp(120px, 16vh, 168px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ex-card__split > div:first-child {
  border-right: 1px solid rgba(255,255,255,.08);
  color: var(--sage-200);
}
.ex-card__split h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--sage);
}
.ex-card__split .is-vence {
  background: rgba(255,255,255,.04);
}
.ex-card__split .is-vence h4 { color: rgba(243, 241, 234, 0.78); }
.ex-card__split p {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
  letter-spacing: -.02em;
  color: var(--cream);
}
.ex-card__split > div:first-child p {
  color: rgba(174, 191, 186, 0.88);
}

.access-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.access-col {
  padding: clamp(36px, 4.5vw, 56px) clamp(32px, 4vw, 48px);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.11);
  background: #0a1211;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 56px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.access-col > * {
  position: relative;
  z-index: 3;
}
.access-col--on,
.access-col.is-on {
  border-color: rgba(255,255,255,.16);
  background: #0c1615;
}
.access-col h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: -.03em;
}
.access-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 6px;
}
.access-col li {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--sage-200);
  padding: 10px 0 10px 20px;
  position: relative;
  line-height: 1.45;
}
.access-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(174,191,186,.45);
}
.access-col--on li::before,
.access-col.is-on li::before {
  background: rgba(243, 241, 234, 0.65);
}
.access-col--on li,
.access-col.is-on li {
  color: rgba(243, 241, 234, 0.88);
}
.access-amt {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1;
}
.access-amt.is-mute { color: rgba(174, 191, 186, 0.72); }
.access-col > p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--sage);
  line-height: 1.5;
  max-width: 36ch;
}

/* ============================================================
   Site footer
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(116,143,136,.2);
  padding: 72px clamp(20px, 5vw, 56px) 28px;
  background: rgba(0,0,0,.18);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr .9fr;
  gap: 48px 40px;
  align-items: start;
}
.site-footer__logo {
  font-size: 28px;
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cream, #f3f1ea);
}
.site-footer__mark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 12px;
}
.site-footer__addr {
  font-size: 13px;
  line-height: 1.55;
  color: var(--sage);
  max-width: 28ch;
}
.site-footer__social {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}
.site-footer__social .social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--sage-200);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.site-footer__social .social svg {
  width: 16px; height: 16px;
}
.site-footer__social .social:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}
.site-footer__faq .eyebrow,
.site-footer__links .eyebrow {
  margin-bottom: 14px;
}
.faq { display: grid; gap: 6px; }
.faq__item {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq__item.is-open {
  border-color: rgba(125,206,160,.28);
  background: rgba(125,206,160,.06);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.faq__chev {
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--sage-200);
  border-bottom: 1.5px solid var(--sage-200);
  transform: rotate(45deg);
  transition: transform .28s ease;
  flex-shrink: 0;
}
.faq__item.is-open .faq__chev {
  transform: rotate(225deg);
  border-color: #9ee0b8;
}
.faq__a {
  display: grid;
  transition: grid-template-rows .32s ease;
}
.faq__a-inner {
  overflow: hidden;
}
.faq__a-inner p {
  padding: 0 16px 16px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--sage-200);
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__links a {
  font-size: 14px;
  color: var(--sage-200);
  transition: color .2s ease;
}
.site-footer__links a:hover { color: var(--cream); }
.site-footer__legal {
  margin-top: 36px;
  max-width: 72ch;
}
.site-footer__legal h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.site-footer__legal p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--sage-200);
}
.site-footer__bar {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--sage);
}

/* ============================================================
   Products world — cinematic hub (not a Flex-style split menu)
   ============================================================ */
.moving-water {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.moving-water__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
}

.products-world {
  position: relative;
  background: #071412;
}

.pw-hub {
  position: relative;
  min-height: min(100vh, 920px);
  max-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(72px, 12vh, 120px) clamp(20px, 5vw, 64px) clamp(48px, 8vh, 72px);
  overflow: hidden;
}
.pw-hub__water { z-index: 0; }
.pw-hub__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(6, 14, 13, 0.82) 0%, rgba(6, 14, 13, 0.35) 48%, rgba(6, 14, 13, 0.2) 100%),
    linear-gradient(180deg, rgba(6, 16, 15, 0.4) 0%, transparent 30%, rgba(6, 16, 15, 0.78) 100%);
}
.pw-hub__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
}
.pw-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--sage-200);
  margin-bottom: 16px;
}
.pw-tag__diamond {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, #c9a46a, #8a6a3a);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201,164,106,.35);
}
.pw-hub h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
  max-width: 13ch;
}
.pw-hub__board {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vh, 28px);
}
.pw-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  align-items: center;
}
.pw-rail__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(243, 241, 234, 0.42);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.pw-rail__btn:hover {
  color: rgba(243, 241, 234, 0.85);
}
.pw-rail__btn.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.pw-hub__blurb {
  margin: 0 0 20px;
  min-height: 3em;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(174, 191, 186, 0.88);
}
/* Fixed-height panel stack — all categories crossfade without layout shift */
.pw-hub__panels {
  position: relative;
  height: clamp(280px, 38vh, 340px);
}
.pw-hub__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}
.pw-hub__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pw-hub__panel .pw-stack {
  flex: 1;
  min-height: 0;
  align-content: start;
}
.pw-stack-wrap {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}
.pw-stack {
  display: grid;
  gap: 4px;
}
.pw-stack__item {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  width: 100%;
  text-align: left;
  padding: 18px 16px 18px 4px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-family: "Vence Sans", VenceSans, sans-serif;
  overflow: hidden;
  transition: background 0.25s ease;
}
.pw-stack__item:hover,
.pw-stack__item.is-active {
  background: rgba(255, 255, 255, 0.04);
}
.pw-stack__n {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(174, 191, 186, 0.55);
  padding-top: 4px;
}
.pw-stack__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.pw-stack__body strong {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.pw-stack__body > span {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(174, 191, 186, 0.82);
  max-width: 38ch;
}
.pw-stack__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(
    120px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.16) 0%,
    transparent 65%
  );
  mix-blend-mode: soft-light;
}
.pw-stack__item:hover .pw-stack__glow {
  opacity: 1;
}

/* Full-bleed cinematic products — dust/sand seams between frames */
.pw-bleed {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Warm dust void between frames — not a teal strip */
  background: #1c1914;
}
.pw-bleed__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  transform-origin: center center;
}
.pw-bleed__teal {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(20, 28, 24, 0.72) 0%,
      rgba(14, 50, 50, 0.28) 42%,
      rgba(30, 26, 20, 0.12) 68%,
      rgba(20, 28, 24, 0.35) 100%
    ),
    linear-gradient(
      180deg,
      rgba(18, 16, 12, 0.45) 0%,
      transparent 28%,
      transparent 72%,
      rgba(28, 24, 18, 0.4) 100%
    );
  pointer-events: none;
}
.pw-bleed__grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.pw-bleed__fade-top {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 12, 0.75) 0%,
    rgba(28, 24, 18, 0.28) 45%,
    transparent 100%
  );
  pointer-events: none;
}
/* Default bottom: soft dust/sand dissolve into the next cinematic frame */
.pw-bleed__fade-bot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 240px;
  background: linear-gradient(
    0deg,
    rgba(28, 24, 18, 0.92) 0%,
    rgba(40, 34, 26, 0.55) 28%,
    rgba(55, 48, 36, 0.22) 55%,
    transparent 100%
  );
  pointer-events: none;
}
/* Last bleed → Trust Graph / teal world — keep the blue handoff */
.pw-bleed--into-blue .pw-bleed__fade-bot {
  height: 220px;
  background: linear-gradient(
    0deg,
    var(--teal) 0%,
    rgba(20, 66, 66, 0.72) 32%,
    rgba(20, 66, 66, 0.28) 62%,
    transparent 100%
  );
}
.pw-bleed--into-blue .pw-bleed__teal {
  background:
    linear-gradient(
      105deg,
      rgba(14, 50, 50, 0.78) 0%,
      rgba(14, 50, 50, 0.4) 40%,
      rgba(20, 66, 66, 0.18) 65%,
      rgba(14, 50, 50, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(18, 16, 12, 0.35) 0%,
      transparent 30%,
      transparent 58%,
      rgba(14, 50, 50, 0.55) 100%
    );
}
.pw-bleed__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 120px clamp(24px, 6vw, 80px);
}
.pw-bleed__content h2 {
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
  max-width: 12ch;
  margin-bottom: 20px;
}
.pw-bleed__body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(243, 241, 234, 0.88);
  max-width: 36ch;
  margin-bottom: 28px;
}
.pw-bleed__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* Warmer lifestyle bleed — golden dust, not teal slabs */
.pw-bleed--warm .pw-bleed__media {
  background-position: center 48%;
}
.pw-bleed--warm .pw-bleed__teal {
  background:
    linear-gradient(
      115deg,
      rgba(28, 24, 18, 0.7) 0%,
      rgba(40, 34, 26, 0.28) 40%,
      rgba(50, 42, 30, 0.1) 68%,
      rgba(28, 24, 18, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(22, 18, 14, 0.5) 0%,
      transparent 30%,
      transparent 65%,
      rgba(28, 24, 18, 0.45) 100%
    );
}
.pw-bleed--warm.pw-bleed--into-blue .pw-bleed__teal {
  background:
    linear-gradient(
      115deg,
      rgba(14, 50, 50, 0.72) 0%,
      rgba(14, 50, 50, 0.32) 42%,
      rgba(40, 55, 40, 0.12) 68%,
      rgba(14, 50, 50, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(22, 18, 14, 0.4) 0%,
      transparent 28%,
      transparent 55%,
      rgba(14, 50, 50, 0.58) 100%
    );
}
.pw-bleed--warm .pw-bleed__content {
  max-width: 520px;
}

.pw-depths {
  position: relative;
  background:
    linear-gradient(180deg, #0e3232 0%, var(--teal) 12%, var(--teal) 88%, #0e3232 100%);
}

.pw-depth {
  position: relative;
  padding: 120px clamp(20px, 5vw, 64px) 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.pw-depth:last-child {
  border-bottom: 0;
}
.pw-depth__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.pw-depth__grain {
  position: absolute;
  inset: -8%;
  opacity: 0.2;
  background: url("/hero/grain-full.jpg?v=6") center / cover no-repeat;
  mix-blend-mode: overlay;
}
.pw-depth__noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.pw-depth__inner,
.pw-depth .pw-pillars {
  position: relative;
  z-index: 1;
}
.pw-depth:not(:has(.pw-pillars)) {
  padding-bottom: clamp(88px, 12vh, 120px);
}
.pw-depth__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px 56px;
  align-items: center;
}
.pw-depth--flip .pw-depth__inner {
  direction: rtl;
}
.pw-depth--flip .pw-depth__inner > * {
  direction: ltr;
}
.pw-depth__copy h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 18px;
}
.pw-depth__body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--sage-200);
  max-width: 42ch;
  margin-bottom: 24px;
}
.pw-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.25);
  aspect-ratio: 4 / 5;
  max-height: 560px;
}
.pw-visual--device {
  overflow: visible;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  max-height: none;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}
.pw-phone {
  position: relative;
  width: min(280px, 74%);
  transform: rotateY(-8deg) rotateX(4deg);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.5));
}
.pw-phone__frame {
  position: relative;
  border-radius: 42px;
  padding: 9px;
  background: linear-gradient(155deg, #3a4240 0%, #161c1a 42%, #0a0e0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.35);
}
.pw-phone__screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
}
.pw-visual--beacon,
.pw-visual--dash {
  aspect-ratio: 16 / 10;
  max-height: 460px;
  border: 0;
  background: transparent;
  overflow: visible;
}
.pw-dash {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 0;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
  background: #0a1211;
}
.pw-dash__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pw-dash__glow {
  position: absolute;
  inset: 10% -8% -12% -8%;
  z-index: -1;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(80, 220, 200, 0.18) 0%,
    rgba(20, 80, 90, 0.08) 45%,
    transparent 70%
  );
  pointer-events: none;
}
.pw-visual--beacon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pw-visual__cards {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10%;
  display: grid;
  gap: 10px;
  pointer-events: none;
}
.pw-visual--beacon .pw-visual__cards {
  bottom: 12%;
  left: 10%;
  right: 10%;
}
.pw-glass-card {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--cream);
  background: rgba(18, 36, 34, 0.55);
  border: 0;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  transform: translateX(calc(var(--i) * 6px));
}

.pw-pillars {
  max-width: 1120px;
  margin: 72px auto 0;
}
.pw-pillars h3 {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -.03em;
  margin-bottom: 36px;
}
.pw-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pw-pillars__grid article {
  padding: 8px 28px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.pw-pillars__grid article:first-child { border-left: 0; padding-left: 0; }
.pw-pillars__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: rgba(243, 241, 234, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 0;
  box-shadow: none;
}
.pw-pillars__svg {
  width: 26px;
  height: 26px;
}
.pw-pillars__grid h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.pw-pillars__grid p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sage-200);
}

/* Prime gathering — atmospheric still, dissolves into teal (no card chrome) */
.pw-visual--gathering {
  aspect-ratio: 5 / 4;
  max-height: 520px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.pw-gathering__photo {
  position: absolute;
  inset: -6% -8%;
  background-size: cover;
  background-position: 52% 42%;
  filter: saturate(0.92) contrast(1.04) brightness(0.92);
}
.pw-gathering__grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 65% at 48% 45%, transparent 0%, rgba(20, 66, 66, 0.22) 72%, rgba(20, 66, 66, 0.55) 100%),
    linear-gradient(105deg, rgba(20, 66, 66, 0.55) 0%, transparent 28%, transparent 72%, rgba(20, 66, 66, 0.35) 100%);
  mix-blend-mode: multiply;
}
.pw-gathering__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--teal) 0%, transparent 14%, transparent 86%, var(--teal) 100%),
    linear-gradient(180deg, var(--teal) 0%, transparent 18%, transparent 78%, var(--teal) 100%),
    radial-gradient(ellipse 88% 82% at 50% 48%, transparent 42%, rgba(20, 66, 66, 0.65) 78%, var(--teal) 100%);
}

.pw-visual--photo {
  aspect-ratio: 4 / 5;
  max-height: 480px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0a1413;
}
.pw-photo__img {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.03) brightness(0.94);
}
.pw-photo__grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 15, 0.12) 0%,
    rgba(8, 16, 15, 0.35) 55%,
    rgba(8, 16, 15, 0.72) 100%
  );
}
.pw-photo__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--teal) 0%, transparent 12%, transparent 88%, var(--teal) 100%),
    linear-gradient(180deg, var(--teal) 0%, transparent 16%, transparent 80%, var(--teal) 100%);
}

/* Icon panel — line masks over water, no repeating dashboard */
.pw-visual--icons {
  aspect-ratio: 5 / 4;
  max-height: 460px;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #0a1413;
}
.pw-icons__water {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(0.75);
}
.pw-icons__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(6, 14, 13, 0.35) 0%, rgba(6, 14, 13, 0.72) 100%);
}
.pw-icons__grid {
  position: absolute;
  inset: 18%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  z-index: 1;
}
.pw-icons__tile {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pw-icons__tile img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  opacity: 0.88;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}
.pw-icons__tile--glyph {
  color: rgba(243, 241, 234, 0.9);
}
.pw-icons__svg {
  width: 48%;
  height: 48%;
}

/* Workspace — scroll-scrubbed chart (no device / trading UI stills) */
.pw-desk {
  position: relative;
  height: 320vh;
  background: #070e0d;
}
.pw-desk__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.pw-desk__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 72% 48%, rgba(40, 90, 78, 0.28) 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 18% 70%, rgba(20, 40, 38, 0.5) 0%, transparent 70%),
    linear-gradient(165deg, #0a1413 0%, #07100f 45%, #050b0a 100%);
}
.pw-desk__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 42% 34% at 78% 30%,
    rgba(158, 224, 184, 0.16) 0%,
    transparent 68%
  );
  animation: pwAtmoBreathe 9s ease-in-out infinite alternate;
  will-change: opacity, transform;
}
@keyframes pwAtmoBreathe {
  0% { opacity: 0.55; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}
.pw-desk__chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.92;
  pointer-events: none;
}
.pw-desk__chart .pw-desk__axis-label {
  font-family: "Vence Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  fill: rgba(243, 241, 234, 0.32);
}
.pw-desk__chart .pw-desk__tag-label {
  font-family: "Vence Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  fill: #c8f0d8;
}
.pw-desk__copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 80px clamp(24px, 6vw, 72px);
  background: linear-gradient(
    90deg,
    rgba(7, 14, 13, 0.72) 0%,
    rgba(7, 14, 13, 0.35) 70%,
    transparent 100%
  );
}
.pw-desk__copy h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 14ch;
  margin-bottom: 16px;
}
.pw-desk__copy p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(243, 241, 234, 0.82);
  max-width: 38ch;
}

/* About */
.about-band {
  padding: 140px clamp(20px, 5vw, 64px);
  background: rgba(0,0,0,.14);
  border-top: 1px solid rgba(255,255,255,.06);
}
.about-band__inner { max-width: 1040px; margin: 0 auto; }
.about-band h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -.03em;
  max-width: 16ch;
  margin-bottom: 40px;
}
.about-band__grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 48px;
  align-items: start;
}
.about-band__story p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sage-200);
  margin-bottom: 18px;
  max-width: 52ch;
}
.about-band__story strong { color: var(--cream); font-weight: 600; }
.about-etymology {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.2);
  margin-bottom: 18px;
}
.about-etymology span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.about-etymology p {
  font-size: 13px;
  color: var(--sage);
  margin-top: 2px;
}
.about-etymology__arrow {
  color: #9ee0b8;
  font-size: 18px;
  opacity: .8;
}

@media (max-width: 960px) {
  .section--questions { grid-template-columns: 1fr; }
  .questions__pin { position: static; }
  .api-split,
  .product-rail,
  .rails,
  .prime-board { grid-template-columns: 1fr 1fr; }
  .prime-stage__content { padding: 0 24px; }
  .prime-stage__photo { background-position: 70% 40%; opacity: 0.42; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .risk-board { grid-template-columns: 1fr; }
  .nav-mega__featured {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .nav-mega__world { min-height: 120px; }
  .nav-mega__drawer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .nav-mega__grid {
    grid-template-columns: 1fr;
  }
  .pw-depth__inner { grid-template-columns: 1fr; }
  .pw-depth--flip .pw-depth__inner { direction: ltr; }
  .pw-pillars__grid { grid-template-columns: 1fr; gap: 24px; }
  .pw-pillars__grid article {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0 0;
  }
  .pw-pillars__grid article:first-child { border-top: 0; padding-top: 0; }
  .about-band__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav__bar { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__right { grid-column: 2; }
  .nav-mega { display: none !important; }
  .grid, .grid--3 { grid-template-columns: 1fr; }
  .access-grid,
  .ex-card__split { grid-template-columns: 1fr; }
  .ex-card__split > div:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .pw-hub__content { max-width: 100%; }
  .pw-stack__body strong { font-size: 22px; }
  .trust-flow__head { grid-template-columns: 1fr; }
  .trust-flow__stage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }
  .trust-flow__wires { display: none; }
  .trust-flow__col--sources,
  .trust-flow__col--outcomes,
  .trust-flow__card--core {
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  .api-split,
  .product-rail,
  .rails,
  .prime-board { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .cap-compare { height: 300vh; }
  .cap-compare__sticky {
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 64px;
  }
  .cap-compare__copy h2 { max-width: none; }
  .cap-compare__stage { min-height: clamp(380px, 62vh, 480px); }
  .cap-compare__foot {
    grid-template-columns: 1fr;
  }
  .pw-desk { height: 260vh; }
}
@media (max-width: 860px) {
  .pw-desk__chart .pw-desk__axis-label,
  .pw-desk__chart .pw-desk__tag-label { display: none; }
}

/* ============================================================
   Policy drawers — slide from right, slow ease
   ============================================================ */
.policy-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}
.policy-layer.is-open { pointer-events: auto; }
.policy-layer__scrim {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(4, 10, 10, 0);
  cursor: pointer;
  transition: background 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.policy-layer.is-open .policy-layer__scrim {
  background: rgba(4, 10, 10, 0.55);
  transition: background 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.policy-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(520px, 100%);
  background: #0a1413;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  font-family: "Vence Sans", VenceSans, sans-serif;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
}
.policy-drawer.is-open {
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.policy-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.policy-drawer__head h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.policy-drawer__meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--sage);
}
.policy-drawer__meta a {
  color: #9ee0b8;
}
.policy-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.policy-drawer__body {
  overflow: auto;
  padding: 24px 28px 48px;
  display: grid;
  gap: 22px;
}
.policy-drawer__body h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.policy-drawer__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sage-200);
}

.site-footer__linkbtn {
  display: block;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sage-200);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.site-footer__linkbtn:hover { color: var(--cream); }

/* ============================================================
   Let's Talk — full-screen liquid glass (no scrollbar chrome)
   ============================================================ */
.lets-talk {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  font-family: "Vence Sans", VenceSans, sans-serif;
  scrollbar-width: none;
}
.lets-talk.is-open {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.lets-talk::-webkit-scrollbar,
.lets-talk *::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.lets-talk__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 0.45s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lets-talk.is-open .lets-talk__media {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.6s ease 0.03s,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.03s;
}
.lets-talk__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.lets-talk__blur {
  position: absolute;
  inset: 0;
  box-shadow:
    inset 100px 0 80px -24px rgba(6, 12, 12, 0.55),
    inset 0 40px 50px -20px rgba(6, 12, 12, 0.35),
    inset 0 -40px 50px -20px rgba(6, 12, 12, 0.4);
  pointer-events: none;
}
.lets-talk__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 12, 0.45) 0%, rgba(6, 12, 12, 0.18) 42%, rgba(6, 12, 12, 0.12) 100%);
  pointer-events: none;
}
.lets-talk__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 95;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  color: var(--cream);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 28px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lets-talk__close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
}
.lets-talk__panel {
  position: relative;
  z-index: 1;
  height: 100dvh;
  max-height: 100dvh;
  width: min(580px, 54vw);
  display: flex;
  align-items: center;
  padding: 52px clamp(20px, 3vw, 40px) 20px;
  overflow: visible;
  transform: translateY(16px);
  opacity: 0;
  filter: blur(8px);
  transition:
    transform 0.45s ease,
    opacity 0.4s ease,
    filter 0.4s ease;
}
.lets-talk.is-open .lets-talk__panel {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
    opacity 0.55s ease 0.08s,
    filter 0.6s ease 0.08s;
}
.lets-talk__glass {
  width: 100%;
  max-height: calc(100dvh - 72px);
  overflow-x: visible;
  overflow-y: auto;
  padding: 20px 22px 22px;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.06) 48%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.28);
  color: var(--cream);
  scrollbar-width: none;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lets-talk__glass::-webkit-scrollbar {
  display: none;
}
.lets-talk__panel h1 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 16ch;
  margin: 0 0 12px;
}
.lets-talk__lede {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(243, 241, 234, 0.78);
  max-width: 36ch;
  margin: 0 0 22px;
}
.lets-talk__form {
  display: grid;
  gap: 8px;
}
.lets-talk__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Business-only field — clip-height expand/collapse */
.lets-talk__expand {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: -4px;
  pointer-events: none;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.32s ease,
    margin-top 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.lets-talk__expand.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0;
  pointer-events: auto;
}
.lets-talk__expand-inner {
  overflow: hidden;
  min-height: 0;
}
.lets-talk__expand-inner .lets-talk__field--select {
  margin: 0;
}

/* Engrained field blocks — label inside recessed container (Flex-style) */
.lets-talk__field {
  display: block;
  padding: 9px 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.24);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: text;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  min-width: 0;
}
.lets-talk__field:focus-within {
  border-color: rgba(243, 241, 234, 0.38);
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(158, 224, 184, 0.14);
}
.lets-talk__field--static {
  cursor: default;
}
.lets-talk__field--select {
  cursor: default;
  padding-bottom: 9px;
  position: relative;
  z-index: 1;
}
.lets-talk__field--select:has(.glass-select.is-open) {
  z-index: 60;
}
.lets-talk__field-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(174, 191, 186, 0.78);
  margin-bottom: 4px;
}
.lets-talk__field input,
.lets-talk__field textarea {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--cream);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-transform: none;
  outline: none;
  box-shadow: none;
  resize: none;
  min-height: 1.3em;
}
.lets-talk__field textarea {
  min-height: 1.3em;
}
.lets-talk__field input::placeholder,
.lets-talk__field textarea::placeholder {
  color: rgba(174, 191, 186, 0.48);
}
.lets-talk__field .glass-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  min-height: 1.35em;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(174, 191, 186, 0.48);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.2s ease;
}
.lets-talk__field .glass-select.has-value .glass-select__trigger {
  color: var(--cream);
}
.lets-talk__field .glass-select.is-open .glass-select__trigger,
.lets-talk__field .glass-select__trigger:hover {
  background: transparent;
  border-color: transparent;
  color: var(--cream);
}
.lets-talk__kind {
  border: 0;
  padding: 9px 12px 10px;
  margin: 0;
}
.lets-talk__kind legend {
  float: left;
  width: 100%;
  margin-bottom: 6px;
  padding: 0;
}
.lets-talk__seg {
  clear: both;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.lets-talk__seg button {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(243, 241, 234, 0.72);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.lets-talk__seg button.is-on {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.01);
}
.lets-talk__consent {
  font-size: 10px;
  line-height: 1.45;
  color: rgba(174, 191, 186, 0.82);
  margin: 4px 0 0;
  max-width: 42ch;
}
.lets-talk__consent button {
  padding: 0;
  border: 0;
  background: none;
  color: #9ee0b8;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.lets-talk__send {
  margin-top: 6px;
  justify-self: stretch;
  width: 100%;
  text-align: center;
  padding: 11px 18px !important;
  font-size: 14px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: var(--cream) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 28px rgba(0, 0, 0, 0.16) !important;
}
.lets-talk__send:hover {
  background: rgba(255, 255, 255, 0.22) !important;
}
.lets-talk__fine {
  font-size: 11px;
  color: rgba(174, 191, 186, 0.85);
  margin: 6px 0 0;
}
.lets-talk__fine a { color: #9ee0b8; }
.lets-talk__done {
  padding: 8px 0;
}
.lets-talk__done strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.lets-talk__done p {
  color: rgba(243, 241, 234, 0.78);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 36ch;
}

/* Custom liquid-glass select (no native OS chrome) */
.glass-select {
  position: relative;
  z-index: 1;
}
.glass-select.is-open {
  z-index: 40;
}
.glass-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  color: rgba(174, 191, 186, 0.7);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.glass-select.has-value .glass-select__trigger {
  color: var(--cream);
}
.glass-select.is-open .glass-select__trigger,
.glass-select__trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.glass-select__caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.glass-select.is-open .glass-select__caret {
  transform: rotate(225deg) translateY(-1px);
}
.glass-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 80;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 15, 14, 0.97);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 54px rgba(0, 0, 0, 0.55);
  max-height: min(240px, 36vh);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  transform-origin: top center;
  animation: glass-select-in 0.16s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.glass-select__menu--portal {
  position: fixed;
  left: auto;
  right: auto;
  top: auto;
  animation: glass-select-in 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.glass-select.opens-up .glass-select__menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform-origin: bottom center;
  animation-name: glass-select-in-up;
}
@keyframes glass-select-in {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(-4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes glass-select-in-up {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.glass-select__menu::-webkit-scrollbar {
  display: none;
}
.glass-select__menu button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(243, 241, 234, 0.88);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}
.glass-select__menu button:hover,
.glass-select__menu button.is-on {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
}

@media (max-width: 900px) {
  .lets-talk__panel {
    width: 100%;
    padding: 48px 14px 16px;
  }
  .lets-talk__form-row {
    grid-template-columns: 1fr;
  }
  .lets-talk__veil {
    background: linear-gradient(180deg, rgba(6,12,12,.4), rgba(6,12,12,.72));
  }
  .nav-mega__featured {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ============================================================
   Solutions page — Flex-style standalone route (/solutions)
   ============================================================ */
.btn--cream {
  background: var(--cream);
  color: var(--teal-900);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.btn--cream:hover,
.btn--cream.btn--lit {
  background: #fff;
  color: var(--teal-900);
}
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost-light:hover,
.btn--ghost-light.btn--lit {
  background: rgba(255, 255, 255, 0.14);
  color: var(--cream);
}

.sol-page {
  background: var(--teal);
  color: var(--cream);
  padding-top: 0;
  will-change: opacity, transform;
}

/* Route transition — teal wipe between home and Solutions */
.route-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: var(--teal-900);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.route-overlay.is-active {
  opacity: 1;
}

/* Shared film grain for Solutions surfaces */
.sol-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Teal colour passthrough on headlines */
.sol-passthrough {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: 0% 0;
}
.sol-passthrough--hero {
  background-image: linear-gradient(
    90deg,
    #f3f1ea 0%,
    #f3f1ea 38%,
    #9fc7bd 46%,
    #cfe8e1 50%,
    #9fc7bd 54%,
    #f3f1ea 62%,
    #f3f1ea 100%
  );
}
.sol-passthrough--warm {
  background-image: linear-gradient(
    90deg,
    #f3f1ea 0%,
    #f3f1ea 38%,
    #8fada5 46%,
    #d4e8e2 50%,
    #8fada5 54%,
    #f3f1ea 62%,
    #f3f1ea 100%
  );
}

/* Hero — cinematic window portrait */
.sol-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.sol-hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 58% 38%;
  transform: scale(1.04);
  will-change: transform;
}
.sol-hero__photo--rocket {
  background-position: 50% 42%;
}
.sol-hero__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.sol-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 28, 28, 0.88) 0%, rgba(10, 28, 28, 0.55) 42%, rgba(10, 28, 28, 0.22) 68%, rgba(10, 28, 28, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 28, 28, 0.35) 0%, transparent 28%, transparent 62%, rgba(10, 28, 28, 0.82) 100%);
}
.sol-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(120px, 16vh, 160px) clamp(20px, 5vw, 64px) clamp(72px, 10vh, 96px);
}
.sol-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 241, 234, 0.72);
  margin-bottom: 14px;
}
.sol-hero h1 {
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
  max-width: 14ch;
}
.sol-hero__lede {
  margin-top: 18px;
  max-width: 42ch;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  color: rgba(243, 241, 234, 0.82);
}
.sol-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vh, 36px);
}

/* Warm / teal bands — no flat white */
.sol-band {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 10vh, 108px) clamp(20px, 5vw, 64px);
  overflow: hidden;
}
.sol-band--warm {
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, rgba(174, 191, 186, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 88% 100%, rgba(26, 80, 80, 0.38) 0%, transparent 52%),
    linear-gradient(180deg, #123838 0%, var(--teal) 48%, var(--teal-900) 100%);
  color: var(--cream);
}
.sol-band__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.sol-band__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}
.sol-band__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.sol-band__primary h2,
.sol-band__title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
}
.sol-band__secondary p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(243, 241, 234, 0.76);
}
.sol-band__secondary p + p {
  margin-top: 16px;
}
.sol-lines {
  list-style: none;
  margin-top: clamp(28px, 4vh, 36px);
  display: grid;
  gap: 0;
}
.sol-lines li {
  padding: 14px 0 14px 18px;
  border-left: 1px solid rgba(174, 191, 186, 0.35);
  font-size: 15px;
  line-height: 1.45;
  color: rgba(243, 241, 234, 0.82);
}
.sol-lines li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Pillars — typographic needs (no icons) */
.sol-pillars {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 10vh, 108px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(26, 80, 80, 0.4) 0%, transparent 55%),
    linear-gradient(165deg, var(--teal-900) 0%, #123838 45%, var(--teal) 100%);
  color: var(--cream);
  overflow: hidden;
}
.sol-pillars__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.sol-pillars__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}
.sol-pillars__title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 18ch;
  margin-bottom: clamp(36px, 5vh, 48px);
}
.sol-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
}
.sol-pillar {
  padding: clamp(28px, 3.5vw, 36px) clamp(24px, 3vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.sol-pillar:last-child {
  border-right: 0;
}
.sol-pillar__idx {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(174, 191, 186, 0.55);
  margin-bottom: 16px;
}
.sol-pillar h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.sol-pillar p {
  font-size: 14px;
  line-height: 1.58;
  color: rgba(243, 241, 234, 0.72);
}

/* Split sections — full-viewport 50/50 panels */
.sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: 100dvh;
}
.sol-split--launch,
.sol-split--window {
  min-height: 100vh;
  min-height: 100dvh;
}
.sol-split__visual {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  min-height: 50dvh;
  will-change: transform;
}
@media (min-width: 901px) {
  .sol-split__visual {
    min-height: 100%;
  }
}
.sol-split__visual--launch {
  background-position: 52% 42%;
}
.sol-split__visual--window {
  background-position: 62% 40%;
}
.sol-split__visual-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 55%, rgba(14, 50, 50, 0.92) 100%);
}
.sol-split__visual-fade--left {
  background: linear-gradient(270deg, transparent 50%, rgba(18, 56, 56, 0.92) 100%);
}
.sol-split__visual-fade--warm {
  background: linear-gradient(270deg, transparent 50%, rgba(18, 56, 56, 0.94) 100%);
}
.sol-split__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(64px, 8vh, 96px) clamp(32px, 6vw, 80px);
}
.sol-split__panel--dark {
  background: var(--teal-900);
  color: var(--cream);
}
.sol-split__panel--warm {
  background:
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(26, 80, 80, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #123838 0%, var(--teal-900) 100%);
  color: var(--cream);
}
.sol-split__panel-inner {
  width: min(100%, 560px);
}
.sol-split__panel-inner h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 14ch;
  margin-bottom: clamp(32px, 4vh, 44px);
}
.sol-split__panel--warm .sol-split__panel-inner h2 {
  max-width: 16ch;
}
.sol-split__panel--warm .sol-split__panel-inner p {
  margin-top: 20px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.62;
  color: rgba(243, 241, 234, 0.76);
  max-width: 46ch;
}
.sol-split__panel--warm .eyebrow {
  color: rgba(174, 191, 186, 0.72);
}
.sol-fit {
  list-style: none;
  display: grid;
  gap: clamp(20px, 2.5vh, 28px);
  margin-bottom: clamp(36px, 5vh, 48px);
}
.sol-fit li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sol-fit__mark {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(174, 191, 186, 0.65);
  margin-top: 11px;
}
.sol-fit strong {
  display: block;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 500;
  margin-bottom: 6px;
}
.sol-fit p {
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.55;
  color: rgba(243, 241, 234, 0.72);
}

/* Institution grid */
.sol-audience {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 10vh, 108px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(26, 80, 80, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(174, 191, 186, 0.1) 0%, transparent 50%),
    var(--teal);
  overflow: hidden;
}
.sol-audience__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.sol-audience__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}
.sol-audience__head {
  max-width: 52ch;
  margin-bottom: clamp(36px, 5vh, 48px);
}
.sol-audience__head h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 16px;
}
.sol-audience__head p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.58;
  color: rgba(243, 241, 234, 0.76);
}
.sol-audience__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.sol-card {
  padding: clamp(18px, 2.2vw, 22px);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 132px;
}
.sol-card h3 {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.sol-card p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(243, 241, 234, 0.72);
}
.sol-audience__cta {
  margin-top: clamp(36px, 5vh, 48px);
}

/* Solutions CTA band */
.sol-cta-band {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 10vh, 96px) clamp(20px, 5vw, 64px);
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(26, 80, 80, 0.35) 0%, transparent 55%),
    var(--teal-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.sol-cta-band__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.sol-cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.sol-cta-band__inner h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.sol-cta-band__inner p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(243, 241, 234, 0.78);
}
.sol-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

/* Live verdicts — cinematic decision stream */
.lv {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: center;
  background: var(--teal-900);
}
.lv__photo {
  position: absolute;
  inset: -8% 0 -8% 0;
  background-size: cover;
  background-position: 50% 42%;
  z-index: 0;
  will-change: transform;
}
.lv__grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.lv__wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 24, 24, 0.94) 0%, rgba(8, 24, 24, 0.66) 44%, rgba(8, 24, 24, 0.28) 72%, rgba(8, 24, 24, 0.6) 100%),
    linear-gradient(180deg, var(--teal-900) 0%, transparent 20%, transparent 66%, var(--teal-900) 100%);
}
.lv__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 10vh, 108px) clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.lv__copy .eyebrow {
  color: rgba(174, 191, 186, 0.75);
}
.lv__copy h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
  max-width: 15ch;
  margin: 12px 0 16px;
}
.lv__copy p {
  max-width: 40ch;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: rgba(243, 241, 234, 0.78);
}
.lv__stat {
  margin-top: clamp(28px, 4vh, 40px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lv__count {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.lv__stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(174, 191, 186, 0.62);
}
.lv__stream {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: clamp(20px, 2.4vw, 32px);
  transform-origin: top center;
}
.lv__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.lv__verdict {
  font-weight: 500;
  color: var(--cream);
}
.lv__sep {
  color: rgba(174, 191, 186, 0.42);
  font-weight: 400;
  user-select: none;
}
.lv__amount {
  color: rgba(243, 241, 234, 0.88);
  font-variant-numeric: tabular-nums;
}
.lv__reason {
  color: rgba(174, 191, 186, 0.62);
  flex: 1 1 100%;
  padding-left: 0;
  font-size: 14px;
}
@media (min-width: 640px) {
  .lv__reason {
    flex: 1 1 auto;
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  .lv__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lv__stream {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }
  .sol-pillars__grid {
    grid-template-columns: 1fr;
  }
  .sol-pillar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sol-pillar:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .sol-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .sol-band__inner--split,
  .sol-split,
  .sol-split--window {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sol-split__panel {
    min-height: clamp(380px, 52vh, 560px);
    padding: clamp(56px, 8vh, 80px) clamp(24px, 5vw, 40px);
  }
  .sol-split__visual {
    min-height: clamp(320px, 46vh, 480px);
    order: -1;
  }
  .sol-split--window .sol-split__visual {
    order: 1;
  }
  .sol-split__visual-fade {
    background: linear-gradient(180deg, transparent 40%, rgba(14, 50, 50, 0.88) 100%);
  }
  .sol-split--window .sol-split__visual-fade--warm {
    background: linear-gradient(180deg, transparent 45%, rgba(18, 56, 56, 0.92) 100%);
  }
}
@media (max-width: 640px) {
  .sol-audience__grid {
    grid-template-columns: 1fr;
  }
  .sol-hero h1 {
    max-width: none;
  }
}

/* ============================================================
   Docs page — /docs standalone route
   ============================================================ */
.docs-page {
  min-height: 100vh;
}
.docs-hero {
  min-height: clamp(320px, 42vh, 480px);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 16vh, 160px) clamp(24px, 5vw, 64px) clamp(48px, 8vh, 72px);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(120, 210, 200, 0.12) 0%, transparent 55%),
    var(--teal-900);
}
.docs-hero__inner {
  max-width: 720px;
}
.docs-band {
  padding: clamp(48px, 8vh, 72px) clamp(24px, 5vw, 64px) clamp(72px, 10vh, 96px);
}
.docs-band__inner {
  max-width: 760px;
  margin: 0 auto;
}
.docs-quick {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(28px, 4vh, 40px);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.docs-quick__row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 12px 20px;
  align-items: baseline;
  font-size: 13px;
}
.docs-quick__label {
  color: var(--sage);
  font-weight: 500;
}
.docs-quick__value {
  color: var(--cream);
  font-family: "Vence Sans", VenceSans, sans-serif;
  font-size: 13px;
  word-break: break-all;
}
.docs-links {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
}
.docs-link-card {
  position: relative;
  display: block;
  padding: 18px 52px 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.22s ease, border-color 0.22s ease;
}
.docs-link-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.docs-link-card__title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 6px;
}
.docs-link-card__blurb {
  font-size: 14px;
  line-height: 1.5;
  color: var(--sage-200);
  max-width: 52ch;
}
.docs-link-card__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(174, 191, 186, 0.55);
  font-size: 18px;
  transition: transform 0.22s ease, color 0.22s ease;
}
.docs-link-card:hover .docs-link-card__arrow {
  color: var(--cream);
  transform: translate(3px, -50%);
}
.docs-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--sage);
}
.docs-note a {
  color: #9ee0b8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 640px) {
  .docs-quick__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

