@import url('https://cdn.jsdelivr.net/npm/@fontsource/inter@5.2.5/400.min.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/inter@5.2.5/700.min.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/inter@5.2.5/900.min.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime: #CCFF00;
  --purple: #5E17EB;
  --black: #000000;
  --white: #ffffff;
  --muted-w: rgba(255,255,255,0.55);
  --muted-b: rgba(0,0,0,0.55);
  --muted-p: rgba(255,255,255,0.65);
  --font: 'Inter', Helvetica, Arial, sans-serif;
  --nav-h: calc(3.25rem + env(safe-area-inset-top, 0px));
  --sticky-h: calc(5.5rem + var(--safe-b));
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --pad-x: max(1rem, env(safe-area-inset-left));
  --tile-h: calc(100svh - var(--nav-h));
  --stack-end-buffer: clamp(6rem, 28vh, 14rem);
  --stack-runway: calc(var(--stack-end-buffer) + var(--stick-scroll-extra, 0px));
  --vid-max-h: min(44vh, 380px);
  --vid-max-h-split: min(46vh, 400px);
  --section-rail: min(100%, 28rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 100%;
  touch-action: pan-y;
}

.page-wrap {
  width: 100%;
  max-width: 100vw;
}

/* ── NAV ── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: stretch; height: var(--nav-h); padding-top: var(--safe-t);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--black);
  transform: translateZ(0);
}

/* VERTICAL-style wordmark — Montclair & Co. */
.brand-mark {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: var(--black);
}
.brand-mark-text {
  font-size: clamp(1rem, 4.6vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--lime);
  white-space: nowrap;
}
.brand-amp {
  letter-spacing: -0.1em;
  opacity: 0.92;
}
.brand-mark--nav {
  padding: 0 0.65rem 0 max(0.85rem, env(safe-area-inset-left));
  min-height: 100%;
}
@media (max-width: 380px) {
  .brand-mark--nav .brand-mark-text {
    font-size: 0.8125rem;
    letter-spacing: -0.06em;
  }
}
.brand-mark--footer {
  display: block;
  justify-content: center;
  padding: 0 0 0.75rem;
  background: transparent;
  overflow: visible;
}
.brand-mark--footer .brand-mark-text {
  display: block;
  font-size: clamp(1.85rem, 11vw, 3.25rem);
  letter-spacing: -0.065em;
  line-height: 1;
}
.brand-mark--policies .brand-mark-text {
  font-size: clamp(1.35rem, 6vw, 2rem);
}

.nav-logo {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 1rem; background: var(--lime); color: var(--black);
  text-decoration: none; min-width: 7rem; flex-shrink: 0;
}
.nav-logo small { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.06em; color: var(--purple); line-height: 1; }
.nav-logo strong { font-size: 1.05rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; text-transform: uppercase; }
.nav-stripes {
  flex: 1; background: var(--black);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.12) 3px, rgba(255,255,255,0.12) 4px);
}
.nav-stripes--lead {
  flex: 0 0 2.75rem;
  max-width: none;
}
.nav-fill {
  flex: 1;
  background: var(--black);
  min-width: 0;
}
.nav-links {
  flex: 1; display: none; align-items: center; justify-content: flex-end; gap: 0.85rem;
  padding: 0 1rem; background: var(--black);
}
.nav-links a {
  color: var(--white); font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
}
.nav-links a.cta-nav { color: var(--lime); }
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 3.25rem; padding: 0 1rem; background: var(--black); border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent; margin-left: auto;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--white); transition: transform 0.3s var(--ease); }
.nav-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190; background: var(--black);
  padding: calc(var(--nav-h) + 1rem) 1.25rem 2rem;
  transform: translateX(100%); transition: transform 0.4s var(--ease); pointer-events: none;
}
.mobile-menu.is-open { transform: translateX(0); pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.15rem; }
.mobile-menu a {
  font-size: clamp(1.5rem, 7vw, 2rem); font-weight: 900; letter-spacing: -0.03em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { color: var(--lime); border: none; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 210;
  background: linear-gradient(90deg, var(--purple), var(--lime));
}

/* ── THEME BG ── */
.section-dark { background: var(--black); color: var(--white); }
.section-lime { background: var(--lime); color: var(--black); }
.section-purple { background: var(--purple); color: var(--white); }

/* ── TILE STACK (Bravo scroll-flip) ── */
.tile-stack { position: relative; }

/* Outer sections = scroll runway; negative margin keeps panels visually flush */
.hero-panel,
.split-stage,
.tile-stack .tile-panel,
.page-wrap > .flat-panel.tile-panel {
  position: relative;
  padding-bottom: var(--stack-runway);
}

.hero-panel,
.split-stage,
.tile-stack .tile-panel,
.page-wrap > .flat-panel.tile-panel:not(#final) {
  margin-bottom: calc(-1 * var(--stack-runway));
}

#final {
  margin-bottom: 0;
  padding-bottom: 0.35rem;
  background: #000;
}

/* ── Dream mesh + final CTA (Framet-style) ── */
.dream-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.dream-mesh-video {
  position: absolute;
  inset: -25%;
  width: 150%;
  height: 150%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  filter: saturate(1.12) contrast(1.05);
}
.dream-mesh.is-video-live .dream-mesh-video {
  opacity: 1;
}
.dream-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.85;
  will-change: transform;
}
.dream-mesh.is-video-live:has(.dream-mesh-video) .dream-mesh-blob {
  opacity: 0;
}
.dream-mesh-blob--1 {
  width: 55%;
  height: 55%;
  top: -8%;
  left: -5%;
  background: radial-gradient(circle, #ff6b8a 0%, #ff8f6b 55%, transparent 72%);
  animation: dream-mesh-drift-a 14s ease-in-out infinite;
}
.dream-mesh-blob--2 {
  width: 50%;
  height: 50%;
  top: 20%;
  right: -12%;
  background: radial-gradient(circle, #CCFF00 0%, #a8d400 50%, transparent 72%);
  animation: dream-mesh-drift-b 16s ease-in-out infinite reverse;
}
.dream-mesh-blob--3 {
  width: 48%;
  height: 48%;
  bottom: -15%;
  left: 18%;
  background: radial-gradient(circle, #ff4d9d 0%, #5E17EB 45%, transparent 72%);
  animation: dream-mesh-drift-c 18s ease-in-out infinite;
}
.dream-mesh-blob--4 {
  width: 42%;
  height: 42%;
  bottom: 5%;
  right: 8%;
  background: radial-gradient(circle, #ffb347 0%, #ff6b8a 55%, transparent 72%);
  animation: dream-mesh-drift-a 20s ease-in-out infinite reverse;
}
@keyframes dream-mesh-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(6%, -4%) scale(1.06); }
  66% { transform: translate(-4%, 5%) scale(0.96); }
}
@keyframes dream-mesh-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8%, 6%) scale(1.08); }
}
@keyframes dream-mesh-drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(5%, -7%) scale(1.05); }
  80% { transform: translate(-6%, 3%) scale(0.94); }
}

.final-tile {
  padding-top: 0.75rem;
  padding-bottom: 0;
  --stack-end-buffer: clamp(1rem, 4vh, 2rem);
}
.tile-stick--final {
  min-height: auto;
}
#offer .mega-offer-inner,
#final .final-inner {
  max-width: var(--section-rail);
}
#offer .tile-inner {
  max-width: var(--section-rail);
}
#final .tile-inner {
  max-width: var(--section-rail);
  width: 100%;
  margin-inline: auto;
  padding-bottom: 0.5rem;
}
.final-inner {
  padding-top: 0;
  padding-bottom: 0.15rem;
}

/* 11 · Final — Monaco-style close CTA */
.monaco-cta {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  border-radius: clamp(1.25rem, 5vw, 1.65rem);
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.12),
    0 24px 56px rgba(94, 23, 235, 0.22);
}
.monaco-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.monaco-cta-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      168deg,
      #d42f4a 0%,
      #e85a32 18%,
      #f07a48 36%,
      #e86888 54%,
      #b84db8 72%,
      var(--purple) 100%
    );
}
.monaco-cta-waves {
  position: absolute;
  inset: -5% -8%;
  width: 116%;
  height: 110%;
  opacity: 0.95;
}
.monaco-cta-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 9vw, 2.65rem) clamp(1.35rem, 5.5vw, 1.85rem) clamp(1.65rem, 7vw, 2rem);
  color: var(--white);
}
.monaco-cta-head {
  margin: 0 0 clamp(0.85rem, 3.5vw, 1.1rem);
  font-size: clamp(1.65rem, 7.8vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--white);
  text-wrap: balance;
}
.monaco-cta-copy {
  margin: 0 0 clamp(1.25rem, 5vw, 1.5rem);
  max-width: 17.5rem;
  font-size: clamp(0.9375rem, 4.1vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.018em;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}
.monaco-cta-copy strong {
  color: var(--lime);
  font-weight: 800;
}
.monaco-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
  max-width: 18.5rem;
}
.monaco-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-size: clamp(0.625rem, 2.8vw, 0.6875rem);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.monaco-cta-btn:active {
  transform: scale(0.98);
}
.monaco-cta-btn--primary {
  background: var(--white);
  color: var(--black);
  border: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.monaco-cta-btn--ghost {
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.monaco-cta-fine {
  margin: clamp(0.85rem, 3.5vw, 1rem) 0 0;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.dream-cta--intro .dream-cta-grid {
  padding: 1.1rem 1rem 1.15rem;
  gap: 0.75rem;
}
.dream-cta--intro .dream-cta-stat {
  padding-bottom: 0.65rem;
}
.dream-cta--intro .dream-cta-stat-label {
  margin: 0.35rem 0 0.5rem;
}
.dream-cta--intro .dream-cta-meter {
  margin: 0 auto;
}
.dream-cta--intro .dream-cta-head--sm {
  font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  margin-bottom: 0.35rem;
}
.dream-cta--intro .dream-cta-lede {
  margin-bottom: 0.65rem;
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}
.dream-cta--intro .dream-cta-list {
  gap: 0.4rem;
}
.dream-cta--intro .dream-cta-list li {
  font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  line-height: 1.35;
}

.dream-cta {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.dream-cta--wide {
  margin: 0;
}
.dream-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dream-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.18) 100%);
  z-index: 1;
  pointer-events: none;
}
.dream-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  padding: 1.35rem 1.2rem 1.45rem;
  color: var(--white);
}
.dream-cta-stat {
  text-align: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: visible;
}
.dream-cta-eyebrow {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 0.55rem;
}
.dream-cta-num {
  margin: 0 0 0.15rem;
  font-size: clamp(2.35rem, 11.5vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
#gci-hero-value {
  color: var(--white);
}
.dream-cta-num-prefix,
.dream-cta-num-unit {
  font-weight: 800;
}
.dream-cta-num-plus {
  display: inline-block;
  margin-left: 0.08em;
  font-size: 0.46em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-0.42em);
  opacity: 0.95;
}
.dream-cta-stat-label {
  margin: 0.45rem 0 0.75rem;
  font-size: clamp(0.875rem, 3.6vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}
.dream-cta-meter {
  display: block;
  height: 2px;
  max-width: 8rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}
.dream-cta-meter-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--white);
  border-radius: inherit;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
}
#gci-board.is-live .dream-cta-meter-fill {
  width: 100%;
}
.dream-cta-copy {
  min-width: 0;
}
.dream-cta-head {
  font-size: clamp(1.45rem, 6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0 0 0.65rem;
  color: var(--white);
}
.dream-cta-head--sm {
  font-size: clamp(1.05rem, 4.2vw, 1.25rem);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.dream-cta-lede {
  margin: 0;
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.92);
}
.dream-cta-lede--left {
  text-align: left;
}
.dream-cta-lede strong {
  color: var(--white);
  font-weight: 700;
}
.dream-cta-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}
.dream-cta-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: clamp(0.75rem, 3.1vw, 0.8125rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.94);
  text-align: left;
}
.dream-cta-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}
.dream-cta-fine {
  margin: 0.75rem 0 0;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.dream-cta-fine--left {
  text-align: left;
  margin-top: 0.65rem;
}
.dream-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dream-cta-actions--close {
  align-self: stretch;
}
.dream-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.dream-cta-btn:active {
  transform: scale(0.98);
}
.dream-cta-btn--primary {
  background: var(--white);
  color: var(--black);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.dream-cta-btn--ghost {
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

#dream-cta {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
#dream-cta.is-in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.dream-reveal > * {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#dream-cta.is-in-view .dream-reveal > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#dream-cta.is-in-view .dream-cta-copy { transition-delay: 0.1s; }
#dream-cta.is-in-view .dream-cta-actions { transition-delay: 0.2s; }
#dream-cta.is-in-view .monaco-cta-head { transition-delay: 0.05s; }
#dream-cta.is-in-view .monaco-cta-copy { transition-delay: 0.12s; }
#dream-cta.is-in-view .monaco-cta-actions { transition-delay: 0.2s; }
#dream-cta.is-in-view .monaco-cta-fine { transition-delay: 0.28s; }

@media (min-width: 640px) {
  .dream-cta-grid {
    grid-template-columns: minmax(12.5rem, 15.5rem) 1fr;
    gap: 1.5rem 2.25rem;
    align-items: center;
    padding: 1.5rem 1.65rem 1.6rem;
  }
  .dream-cta-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 0.75rem;
  }
  .dream-cta-stat {
    text-align: left;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    padding-right: 2rem;
    min-width: 12.5rem;
  }
  .dream-cta-num {
    font-size: clamp(2.85rem, 4.2vw, 3.75rem);
  }
  .dream-cta-meter {
    margin: 0;
    max-width: 9.5rem;
  }
  .dream-cta-grid--close {
    grid-template-columns: 1fr auto;
    gap: 1.5rem 2rem;
    align-items: center;
    padding: 1.65rem 1.75rem 1.7rem;
  }
  .dream-cta-actions--close {
    min-width: 13.5rem;
  }
  #offer .mega-offer-inner,
  #final .final-inner,
  #offer .tile-inner,
  #final .tile-inner,
  .close-tile .tile-inner {
    max-width: var(--section-rail);
  }
  .monaco-cta-body {
    padding: 2.75rem 2rem 2.15rem;
  }
  .monaco-cta-actions {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .dream-cta--intro .dream-cta-grid {
    grid-template-columns: minmax(10rem, 11.25rem) minmax(0, 1fr);
    gap: 0 1.35rem;
    align-items: start;
    padding: 1.35rem 1.45rem;
  }
  .dream-cta--intro .dream-cta-stat {
    text-align: left;
    padding: 0 1.15rem 0 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
  }
  .dream-cta--intro .dream-cta-copy {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    align-self: start;
  }
  .dream-cta--intro .dream-cta-num {
    font-size: clamp(2.35rem, 3.6vw, 3.1rem);
    line-height: 0.95;
  }
  .dream-cta--intro .dream-cta-meter {
    margin: 0.5rem 0 0;
    max-width: 100%;
  }
  .dream-cta--intro .dream-cta-list {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    margin-top: 0.15rem;
  }
}

@media (min-width: 900px) {
  .dream-cta-grid {
    grid-template-columns: minmax(13.5rem, 16rem) 1fr;
    gap: 2rem 2.75rem;
    padding: 1.85rem 2rem 1.9rem;
  }
  .dream-cta--intro .dream-cta-grid {
    grid-template-columns: minmax(11rem, 12.5rem) minmax(0, 1fr);
    padding: 1.65rem 1.75rem;
  }
  .dream-cta--intro .dream-cta-stat {
    padding-right: 1.75rem;
  }
  .dream-cta--intro .dream-cta-copy {
    padding-left: 1.75rem;
  }
  .dream-cta--intro .dream-cta-num {
    font-size: 3.15rem;
  }
  .dream-cta-num {
    font-size: 3.85rem;
  }
  .dream-cta-grid--close {
    padding: 2rem 2.15rem;
    gap: 2.5rem;
  }
  .dream-cta-head {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dream-mesh-blob,
  .dream-mesh-video {
    animation: none !important;
  }
  #dream-cta,
  .dream-reveal > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .dream-cta-meter-fill {
    width: 100% !important;
    transition: none !important;
  }
}

.tile-stick,
.hero-stick {
  position: sticky;
  top: var(--nav-h);
  min-height: var(--tile-h);
  z-index: 1;
  align-self: flex-start;
  width: 100%;
  flex: 0 0 auto;
}

.hero-stick {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tile-stick--bleed,
.tile-stick--close {
  overflow: visible;
  position: sticky;
}

.hero-panel {
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  background: var(--black);
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.65rem;
}

.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: min(100%, 21.5rem);
  margin-inline: auto;
  height: auto;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  border-bottom: none;
}

.hero-panel .hero-vid,
.hero-panel .tile-vid.hero-vid {
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-visual-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s var(--ease);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 1.35rem var(--pad-x) 1.5rem;
  padding-left: calc(var(--pad-x) + 0.9rem);
  padding-right: max(1rem, env(safe-area-inset-right));
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--black);
}

.hero-content::before {
  content: '';
  position: absolute;
  left: var(--pad-x);
  top: 1.35rem;
  bottom: 1.5rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--purple) 0%, var(--lime) 100%);
}

.hero-eyebrow {
  font-size: clamp(0.5625rem, 2.5vw, 0.625rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.85rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-lede {
  max-width: 21rem;
  margin-bottom: 1.15rem;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.55s var(--ease) 0.3s, transform 0.55s var(--ease) 0.3s;
}

.hero-lede-main {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  margin: 0;
}

.hero-lede-kicker {
  display: block;
  font-size: clamp(0.9375rem, 4.1vw, 1.0625rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.34;
  text-wrap: balance;
}

.hero-lede-detail {
  display: block;
  font-size: clamp(0.875rem, 3.8vw, 1rem);
  font-weight: 500;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: balance;
}

.hero-lede-main strong {
  display: block;
  font-size: clamp(0.9375rem, 4.1vw, 1.0625rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.hero-lede-tag {
  font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.01em;
}

.hero-display {
  font-weight: 900;
  font-size: clamp(2.1rem, 10vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1.05rem;
}

.hero-line {
  display: block;
  padding: 0.05em 0;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.hero-panel.is-loaded .hero-line {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-panel.is-loaded .hero-line-1 { transition-delay: 0.05s; }
.hero-panel.is-loaded .hero-line-2 { transition-delay: 0.14s; }
.hero-panel.is-loaded .hero-line-3 { transition-delay: 0.23s; }

.hero-line-1,
.hero-line-3 {
  color: var(--lime);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-line-2 {
  background: linear-gradient(90deg, var(--lime) 0%, var(--purple) 55%, var(--lime) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-shimmer 7s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-cta {
  margin-top: 0;
  min-height: 52px;
  font-size: clamp(0.5625rem, 2.45vw, 0.6875rem);
  line-height: 1.25;
  padding: 0.85rem 0.65rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.38s;
}

.hero-panel.is-loaded .hero-lede {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-panel.is-loaded .hero-cta {
  opacity: 1;
}

.hero-note {
  font-size: clamp(0.75rem, 3.2vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.85rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.46s;
}

.hero-panel.is-loaded .hero-note {
  opacity: 1;
}

.vctrl-btn--hero-min {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  min-width: min(72vw, 170px);
  min-height: 38px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}

.vctrl-btn--hero-min:active {
  transform: translateX(-50%) scale(0.97);
}

.hero-video-wrap.is-unmuted .vctrl-btn--hero-min {
  min-width: 110px;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .hero-line-2 { animation: none; }
  .hero-line,
  .hero-lede,
  .hero-cta,
  .hero-note {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-height: min(68vh, 520px);
  line-height: 0;
  overflow: hidden;
  display: block;
  background: #0a0a0a;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hero-video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  background: #0a0a0a;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.hero-video-wrap.is-playing .hero-video-poster {
  opacity: 0;
  visibility: hidden;
}

.hero-vid {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #0a0a0a;
  border-radius: 0;
}

@media (min-width: 768px) {
  :root {
    --vid-max-h: min(48vh, 440px);
    --vid-max-h-split: min(50vh, 460px);
  }
  .hero-stage { max-width: 36rem; }
  .hero-visual { border-radius: 0; }
  .hero-display { font-size: clamp(2.75rem, 5vw, 3.75rem); }
  .hero-content { padding-top: 1.5rem; }
  .hero-eyebrow { white-space: nowrap; }
  .hero-lede-main strong { display: inline; margin-bottom: 0; }
}

.tile-panel {
  display: flex;
  flex-direction: column;
}

.tile-stack .tile-panel {
  z-index: calc(10 + var(--i, 0));
  display: flex;
  flex-direction: column;
}

.tile-panel.flat-panel {
  z-index: calc(10 + var(--i, 6));
  scroll-snap-align: none;
}

/* Tall sections — full content scrolls before next panel overlaps */
.tile-panel--flow:not(.flat-panel) {
  height: auto;
  overflow: visible;
}
.flat-panel.tile-panel--flow {
  height: auto;
  overflow: visible;
}

.tile-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0.85rem var(--pad-x) 1.15rem;
  padding-right: max(1rem, env(safe-area-inset-right));
  max-width: var(--section-rail);
  width: 100%;
  margin-inline: auto;
}

/* Big step number */
.tile-num {
  font-size: clamp(3rem, 14vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.section-lime .tile-num { color: var(--purple); }
.section-dark .tile-num { color: var(--lime); }
.section-purple .tile-num { color: var(--lime); }
.tile-num-ghost { opacity: 0.35; font-size: clamp(2rem, 10vw, 3rem); }

/* Video slot — full frame, never crop */
.tile-media {
  position: relative;
  width: 100%;
  height: auto;
  background: #0a0a0a;
  overflow: hidden;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
  border-radius: 10px;
}
.section-dark .tile-media { background: #0a0a0a; }
.section-lime .tile-media { background: #0a0a0a; }

/* Portrait video frame — vertical clip, centered, no wide letterboxing */
.vid-portrait-slot {
  width: min(100%, 21.5rem);
  max-width: 100%;
  margin-inline: auto;
}

.vid-portrait-slot.hero-visual,
.vid-portrait-slot.tile-media,
.vid-portrait-slot.proof-feature-vid,
.vid-portrait-slot.split-media-col {
  width: min(100%, 21.5rem);
}

.vid-portrait-slot .hero-video-wrap,
.vid-portrait-slot .tile-video-wrap,
.vid-portrait-slot .split-video-wrap,
.vid-portrait-slot.proof-feature-vid .tile-video-wrap {
  width: 100%;
  max-width: 100%;
  max-height: min(68vh, 520px);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  margin-inline: auto;
  min-height: 0;
}

.vid-portrait-slot .hero-video-wrap .hero-vid {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.hero-video-wrap.is-playing .hero-visual-fade {
  opacity: 0.35;
}

.vid-portrait-slot .hero-vid,
.vid-portrait-slot .tile-vid,
.vid-portrait-slot .split-vid,
.vid-portrait-slot .mega-vid {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* Page videos — full frame inside portrait slot */
.hero-video-wrap,
.tile-video-wrap,
.split-video-wrap,
.proof-video-wrap {
  position: relative;
  width: 100%;
  height: auto;
  max-height: var(--vid-max-h);
  line-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.vid-portrait-slot .hero-video-wrap,
.vid-portrait-slot .tile-video-wrap,
.vid-portrait-slot .split-video-wrap,
.vid-portrait-slot .proof-video-wrap {
  max-height: min(68vh, 520px);
}

.split-video-wrap {
  max-height: var(--vid-max-h-split);
}

.hero-vid,
.tile-vid,
.split-vid,
.mega-vid {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: var(--vid-max-h);
  object-fit: contain;
  object-position: center center;
  vertical-align: top;
  background: #0a0a0a;
}

.split-vid {
  max-height: var(--vid-max-h-split);
}

.tile-vid:not(.tile-vid--color) {
  filter: grayscale(100%) contrast(1.05);
}
.tile-media.is-empty::after {
  content: 'VIDEO';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5625rem; font-weight: 800; letter-spacing: 0.2em;
  opacity: 0.25;
}

/* Copy */
.tile-copy { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.tile-copy-wide { max-width: 100%; }
.tile-meta {
  font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.35rem; opacity: 0.6;
}
.section-dark .tile-meta { color: var(--lime); opacity: 1; }
.section-purple .tile-meta { color: var(--lime); opacity: 1; }

.tile-head {
  font-size: clamp(1.65rem, 7.5vw, 2.75rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.95;
  text-transform: uppercase; margin-bottom: 0.5rem;
}

.tile-sub {
  font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  line-height: 1.45; margin-bottom: 0.75rem;
  max-width: 22rem;
}
.section-dark .tile-sub { color: var(--muted-w); }

/* Section 03 — refined fine-print block */
.tile-vid--color { filter: none !important; }

/* Section 03 — full-frame video + full copy */
#tile-03 .tile-media,
#tile-03 .tile-media--tall {
  aspect-ratio: auto;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 1rem;
}
#tile-03 .tile-video-wrap {
  position: relative;
  width: 100%;
  height: auto;
  line-height: 0;
  background: #111;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
#tile-03 .tile-vid {
  filter: none !important;
}
#tile-03 .video-controls--tile {
  align-items: flex-end;
  padding-bottom: 0.75rem;
}
.tile-video-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #111;
}
.tile-video-wrap .tile-vid {
  object-position: center center;
}
.video-controls--tile {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}
.vctrl-btn--tile-sound {
  pointer-events: auto;
  min-width: min(88vw, 210px);
  min-height: 48px;
  font-size: 0.6875rem;
  border-color: var(--white);
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.tile-video-wrap.is-unmuted .vctrl-btn--tile-sound {
  position: absolute;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  min-width: 130px;
  min-height: 44px;
  font-size: 0.625rem;
}
.tile-video-wrap.is-unmuted .vctrl-btn--tile-sound:active {
  transform: translateX(-50%) scale(0.97);
}
/* Tile play/pause control (legacy small btn) */
.vctrl-btn--tile {
  position: absolute;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  right: 0.75rem;
  z-index: 4;
  min-width: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.vctrl-btn--tile:active { transform: scale(0.94); }
.tile-video-wrap.is-playing .vctrl-btn--tile .vctrl-icon-play { display: none; }
.tile-video-wrap.is-playing .vctrl-btn--tile .vctrl-icon-pause { display: flex; }
.tile-video-wrap:not(.is-playing) .vctrl-btn--tile {
  background: var(--lime);
  border-color: var(--black);
  color: var(--black);
}
.fineprint {
  margin: 0.35rem 0 1.1rem;
}
.fineprint-line {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.9375rem, 3.7vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.28em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fineprint-line strong {
  color: var(--lime);
  font-weight: 800;
}
.section-lime .tile-sub { color: var(--muted-b); }
.section-purple .tile-sub { color: var(--muted-p); }

/* Section 02 — compact + scroll line reveal */
.tile-stack .tile-panel--type {
  min-height: auto !important;
}
.tile-panel--type .tile-inner {
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
}
.tile-panel--type .tile-copy {
  margin-top: 0;
}
.section-purple .tile-head-hero {
  color: var(--lime);
  font-size: clamp(2.15rem, 10vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 0.05rem;
}
.section-purple .tile-head-hero + .tile-head-hero {
  margin-bottom: 0.65rem;
}
/* Section 02 — Vertical scroll reveal + active bar */
.vq-runway {
  position: relative;
  min-height: 185vh;
}
.vq-pin {
  position: sticky;
  top: var(--nav-h);
  height: var(--tile-h);
  display: flex;
  align-items: center;
  z-index: 1;
}
.vq-pin .tile-inner {
  width: 100%;
}
.vq-frame {
  position: relative;
  padding-left: 1.1rem;
}
.vq-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  background: var(--lime);
  border-radius: 2px;
  opacity: 0;
  transition: top 0.22s var(--ease), height 0.22s var(--ease), opacity 0.2s linear;
  pointer-events: none;
}
.vq-frame.is-active .vq-bar {
  opacity: 1;
}
.scroll-quote--purple-vq {
  font-weight: 900;
  letter-spacing: -0.03em;
}
.scroll-quote--purple-vq .scroll-quote-line {
  display: block;
  color: rgba(255, 255, 255, 0.15);
  transform: translate3d(0, 6px, 0);
  filter: none;
  transition: color 0.2s linear, transform 0.4s var(--ease), opacity 0.3s var(--ease);
  opacity: 0.3;
}
.scroll-quote--purple-vq .scroll-quote-line.is-lit {
  color: var(--white);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.scroll-quote--purple-vq .vq-meta {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(204, 255, 0, 0.25);
  margin-bottom: 0.55rem;
  filter: none;
}
.scroll-quote--purple-vq .vq-meta.is-lit {
  color: var(--lime);
}
.scroll-quote--purple-vq .vq-hero {
  font-size: clamp(2.15rem, 10vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  color: rgba(204, 255, 0, 0.15);
  margin-bottom: 0.04em;
  filter: none;
}
.scroll-quote--purple-vq .vq-hero.is-lit {
  color: var(--lime);
  filter: blur(0);
}
.scroll-quote--purple-vq .vq-hero + .vq-hero.is-lit,
.scroll-quote--purple-vq .vq-hero.is-lit + .vq-hero {
  color: var(--lime);
}
.scroll-quote--purple-vq .vq-body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: -0.011em;
  line-height: 1.42;
  text-transform: none;
  margin-top: 0.22em;
  color: rgba(255, 255, 255, 0.35);
}
.scroll-quote--purple-vq .vq-hero + .vq-hero + .vq-body {
  margin-top: 0.7rem;
}
.scroll-quote--purple-vq .vq-body.is-lit {
  color: var(--white);
  font-weight: 600;
}
.scroll-quote--purple-vq .vq-body strong {
  color: var(--lime);
  font-weight: 800;
}
.scroll-quote--purple-vq .vq-kicker.is-lit {
  color: var(--lime);
  font-weight: 700;
}
.vq-runway--short {
  min-height: 72vh;
}
.source-note--inline {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.5625rem;
  opacity: 0.4;
}
.fineprint--lime .fineprint-line {
  color: rgba(0, 0, 0, 0.82);
  font-weight: 500;
}
.fineprint--lime .fineprint-line strong {
  color: var(--black);
  font-weight: 800;
}
.fineprint-kicker {
  font-weight: 600;
  color: var(--black) !important;
  margin-top: 0.35rem;
}

/* Section 04 — animated bleed calculator */
.bleed-section {
  position: relative;
  overflow: visible;
}
.bleed-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bleed-mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 45% at 18% 22%, rgba(94, 23, 235, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 82% 68%, rgba(255, 255, 255, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 55% 45%, rgba(94, 23, 235, 0.12) 0%, transparent 60%);
  animation: bleed-mesh-shift 16s ease-in-out infinite;
}
@keyframes bleed-mesh-shift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
  33% { transform: translate3d(2%, -3%, 0) scale(1.04); opacity: 0.92; }
  66% { transform: translate3d(-3%, 2%, 0) scale(0.98); opacity: 1; }
}
.bleed-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  animation: bleed-spark-pulse 3s ease-in-out infinite;
}
.bleed-spark--1 { top: 18%; left: 12%; animation-delay: 0s; }
.bleed-spark--2 { top: 62%; right: 15%; animation-delay: 1.4s; width: 4px; height: 4px; }
@keyframes bleed-spark-pulse {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.9; transform: scale(1.2); }
}
.bleed-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  will-change: transform;
}
.bleed-orb--1 {
  width: min(70vw, 320px);
  height: min(70vw, 320px);
  top: -8%;
  right: -12%;
  background: radial-gradient(circle, rgba(94, 23, 235, 0.55) 0%, transparent 70%);
  animation: bleed-drift-1 14s ease-in-out infinite;
}
.bleed-orb--2 {
  width: min(55vw, 260px);
  height: min(55vw, 260px);
  bottom: 15%;
  left: -18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  animation: bleed-drift-2 18s ease-in-out infinite;
}
.bleed-orb--3 {
  width: min(45vw, 200px);
  height: min(45vw, 200px);
  top: 42%;
  right: 5%;
  background: radial-gradient(circle, rgba(94, 23, 235, 0.35) 0%, transparent 70%);
  animation: bleed-drift-3 12s ease-in-out infinite;
}
@keyframes bleed-drift-1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-6%, 8%, 0) scale(1.08); }
}
@keyframes bleed-drift-2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10%, -6%, 0) scale(1.06); }
}
@keyframes bleed-drift-3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-8%, -10%, 0) scale(1.1); }
}
.tile-inner--bleed {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding-bottom: 0.5rem;
}
#tile-03 .tile-inner,
#tile-05 .tile-inner {
  flex: none;
  min-height: 0;
}
#tile-03 .tile-copy,
#tile-05 .tile-copy {
  flex: none;
  min-height: 0;
}
.bleed-scenario--hook,
.bleed-scenario--year {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
#tile-05.is-active .bleed-scenario--hook {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.05s;
}
#tile-05.is-active .bleed-scenario--year {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.12s;
}
.bleed-scenario {
  margin-bottom: 0.65rem;
}
.bleed-scenario--hook {
  margin-bottom: 0.85rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 20px rgba(94, 23, 235, 0.06);
}
.bleed-scenario--year {
  margin-bottom: 0.45rem;
}
.bleed-scenario-tag {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  background: var(--purple);
  color: var(--lime);
  border-radius: 999px;
  margin-bottom: 0.45rem;
}
.bleed-hook {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  font-size: clamp(0.9375rem, 4.2vw, 1.125rem);
}
.bleed-scenario-inline {
  font-size: clamp(0.6875rem, 3vw, 0.8125rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 0.55rem;
}
.bleed-scenario-inline strong {
  color: var(--purple);
  font-weight: 800;
}
.bleed-sheet {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow:
    0 12px 40px rgba(94, 23, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.bleed-sheet-head {
  display: none;
}
.bleed-calc {
  margin: 0.35rem 0 1rem;
}
.bleed-meter {
  margin: 0.85rem 0 1rem;
  padding: 0.75rem;
  background: var(--black);
  color: var(--white);
  border-left: 3px solid var(--purple);
  border-radius: 10px;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.bleed-meter.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.bleed-meter-top,
.bleed-meter-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.53125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.75;
}
.bleed-meter-foot {
  margin-top: 0.55rem;
  opacity: 1;
}
.bleed-meter-foot strong {
  font-size: clamp(1rem, 4.5vw, 1.25rem);
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -0.03em;
}
.bleed-meter-pct {
  font-size: clamp(0.875rem, 3.8vw, 1.0625rem);
  font-weight: 900;
  color: var(--lime);
  opacity: 1;
}
.bleed-meter-track {
  height: 8px;
  margin-top: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.bleed-meter-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--purple), var(--lime), var(--purple));
  background-size: 200% 100%;
  border-radius: 4px;
  transition: width 0.75s var(--ease);
  will-change: width;
  animation: bleed-meter-shimmer 3s ease-in-out infinite;
}
@keyframes bleed-meter-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.bleed-whisper {
  margin-top: 0.35rem;
  font-size: clamp(0.625rem, 2.8vw, 0.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
  opacity: 0;
  transform: translate3d(-6px, 0, 0);
  transition: opacity 0.45s var(--ease) 0.12s, transform 0.45s var(--ease) 0.12s;
}
.bleed-row--deduct .bleed-whisper,
.bleed-row--subtotal .bleed-whisper {
  color: rgba(94, 23, 235, 0.75);
}
.bleed-row--final .bleed-whisper {
  color: rgba(255, 255, 255, 0.82);
}
.bleed-whisper.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.bleed-aside {
  font-size: clamp(0.6875rem, 3vw, 0.8125rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: var(--purple);
  padding: 0.4rem 0.65rem;
  margin: 0.1rem 0;
  background: rgba(94, 23, 235, 0.08);
  border-left: 3px solid var(--purple);
  border-radius: 0 8px 8px 0;
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.bleed-aside.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.bleed-aside--tax {
  color: rgba(0, 0, 0, 0.72);
  background: rgba(0, 0, 0, 0.04);
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bleed-rows {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.bleed-row {
  padding: 0.6rem 0.7rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.98);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.bleed-calc.is-ready .bleed-row--gci,
.bleed-row.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.bleed-row.is-pop {
  animation: bleed-pop 0.55s var(--ease);
}
@keyframes bleed-pop {
  0% { transform: translate3d(0, 0, 0) scale(0.97); }
  55% { transform: translate3d(0, -2px, 0) scale(1.015); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
.bleed-row--gci {
  background: var(--black);
  color: var(--white);
  border-color: var(--purple);
  border-left: 3px solid var(--lime);
  box-shadow: 0 4px 20px rgba(94, 23, 235, 0.2);
}
.bleed-row--deduct,
.bleed-row--subtotal {
  background: var(--white);
  color: var(--black);
}
.bleed-row--deduct .bleed-row-label,
.bleed-row--subtotal .bleed-row-label {
  color: var(--black);
}
.bleed-row--deduct .bleed-row-quote,
.bleed-row--subtotal .bleed-row-quote {
  color: rgba(0, 0, 0, 0.62);
}
.bleed-row--deduct .bleed-row-pct,
.bleed-row--subtotal .bleed-row-pct {
  background: rgba(94, 23, 235, 0.1);
  color: var(--purple);
}
.bleed-row--gci .bleed-row-amt {
  color: var(--lime);
  font-size: clamp(1.25rem, 5.5vw, 1.5rem);
}
.bleed-row--gci .bleed-row-pct {
  background: var(--purple);
  color: var(--lime);
}
.bleed-gci-plaque {
  margin-top: 0.45rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}
.bleed-row.is-active {
  border-color: rgba(94, 23, 235, 0.45);
  box-shadow: 0 6px 24px rgba(94, 23, 235, 0.18);
  transform: translate3d(0, -1px, 0) scale(1.008);
}
.bleed-row.is-active .bleed-row-amt--loss {
  animation: bleed-flash 0.55s var(--ease);
}
.bleed-row--deduct.is-visible .bleed-row-amt--loss {
  animation: bleed-flash 0.5s var(--ease);
}
@keyframes bleed-flash {
  0%, 100% { opacity: 1; }
  40% { opacity: 0.35; color: var(--purple); }
}
.bleed-row--subtotal {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(94, 23, 235, 0.35);
  border-left: 3px solid var(--purple);
}
.bleed-row--subtotal .bleed-row-amt {
  color: var(--purple);
  font-weight: 900;
}
.bleed-row--final {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.bleed-row--final .bleed-row-amt {
  color: var(--lime);
  font-size: clamp(1.15rem, 5vw, 1.35rem);
}
.bleed-row--final .bleed-row-pct {
  background: var(--black);
  color: var(--lime);
}
.bleed-row--final .bleed-row-quote {
  color: rgba(255, 255, 255, 0.9);
}
.bleed-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0;
}
.bleed-row-label {
  font-size: clamp(0.6875rem, 3vw, 0.8125rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-transform: uppercase;
}
.bleed-row--gci .bleed-row-label,
.bleed-row--final .bleed-row-label {
  color: inherit;
}
.bleed-row-amt {
  font-size: clamp(0.9375rem, 4.2vw, 1.0625rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.bleed-row-amt--loss {
  color: var(--purple);
}
.bleed-row-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.bleed-row-pct {
  flex-shrink: 0;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.22rem 0.38rem;
  background: rgba(94, 23, 235, 0.1);
  color: var(--purple);
}
.bleed-row--gci .bleed-row-quote {
  color: rgba(255, 255, 255, 0.75);
}
.bleed-row-quote {
  font-size: clamp(0.6875rem, 2.9vw, 0.8125rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.38;
  color: rgba(0, 0, 0, 0.62);
}
.bleed-takeaway {
  margin-top: 1rem;
  padding: 0.85rem 0.9rem;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--purple);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.bleed-takeaway.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.bleed-takeaway-stat {
  font-size: clamp(1rem, 4.5vw, 1.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.45rem;
  color: var(--lime);
}
.bleed-takeaway-stat strong {
  color: var(--white);
  font-size: 1.15em;
}
.bleed-takeaway-body {
  font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.bleed-takeaway-body strong {
  color: var(--lime);
}
.bleed-cta {
  margin-top: 0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .bleed-row,
  .bleed-takeaway {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bleed-meter-fill { transition: none; }
  .bleed-row--deduct.is-visible .bleed-row-amt--loss { animation: none; }
}

.tile-panel--type .scroll-quote-cta {
  margin-top: 1rem;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.tile-panel--type .scroll-quote-cta.is-lit {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 767px) {
  .vq-runway { min-height: 108vh; }
  .vq-runway--short { min-height: 68vh; }
  .vq-pin {
    position: sticky;
    top: var(--nav-h);
    height: var(--tile-h);
    display: flex;
    align-items: center;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-quote--purple-vq .scroll-quote-line {
    opacity: 1;
    transform: none;
    filter: none;
    color: var(--white);
  }
  .scroll-quote--purple-vq .vq-meta.is-lit,
  .scroll-quote--purple-vq .vq-meta { color: var(--lime); }
  .scroll-quote--purple-vq .vq-hero { color: var(--lime); filter: none; }
  .tile-panel--type .scroll-quote-cta { opacity: 1; transform: none; }
}

.tile-punch {
  font-size: clamp(1rem, 4.5vw, 1.35rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 0.35rem;
}
.section-dark .tile-punch { color: var(--lime); }
.section-lime .tile-punch { color: var(--black); }
.tile-punch.big { font-size: clamp(2rem, 12vw, 3rem); letter-spacing: -0.04em; }
.tile-punch.big span { font-size: 0.35em; opacity: 0.55; }

.tile-tags, .tag-row, .stat-row {
  display: flex; flex-wrap: wrap; gap: 0.4rem 0.65rem;
  margin-bottom: 0.75rem;
}
.tile-tags span, .tag-row span {
  font-size: 0.5625rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.3rem 0.5rem;
  border: 1px solid currentColor; opacity: 0.75;
}
.stat-row span {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section-dark .stat-row strong { color: var(--lime); }
.section-purple .stat-row strong { color: var(--lime); }
.stat-row-big span {
  font-size: clamp(0.625rem, 2.8vw, 0.75rem);
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(204, 255, 0, 0.35);
  background: rgba(0, 0, 0, 0.15);
}

/* Empirical data blocks — sections 04–05 */
.data-stack {
  margin: 0.5rem 0 0.85rem;
}
.data-line {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.875rem, 3.6vw, 1rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.42;
  margin-bottom: 0.32em;
  -webkit-font-smoothing: antialiased;
}
.section-lime .data-line { color: rgba(0, 0, 0, 0.72); }
.section-lime .data-line strong { color: var(--black); font-weight: 700; }
.section-purple .data-line { color: rgba(255, 255, 255, 0.78); }
.section-purple .data-line strong { color: var(--lime); font-weight: 700; }
.data-line-kicker {
  font-weight: 600;
  margin-top: 0.35rem;
}
.section-lime .data-line-kicker { color: var(--black); }
.section-purple .data-line-kicker { color: var(--white); }
.data-line-contrast {
  font-weight: 700;
  color: var(--lime) !important;
  margin: 0.65rem 0 0.5rem;
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  letter-spacing: -0.01em;
}
.source-note {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
  opacity: 0.45;
  margin: 0.5rem 0 0.35rem;
  max-width: 20rem;
}
.section-purple .source-note { color: var(--white); }
.section-lime .source-note { color: var(--black); }

/* Buttons */
.btn-dark, .btn-lime {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 52px; margin-top: auto;
  font-family: inherit; font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn-dark:active, .btn-lime:active { transform: scale(0.98); }
.btn-dark { background: var(--black); color: var(--lime); }
.btn-lime { background: var(--lime); color: var(--black); }
.section-dark .btn-lime { background: var(--lime); color: var(--black); }
.section-lime .btn-dark { background: var(--black); color: var(--lime); }
.section-purple .btn-lime { background: var(--lime); color: var(--black); }

/* ── PRICING ── */
.price-stack { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 0.75rem; }
.price-card {
  padding: 1rem; border: 2px solid rgba(255,255,255,0.15); position: relative;
}
.section-lime .price-card { border-color: rgba(0,0,0,0.15); }
.price-card.featured { background: var(--lime); border-color: var(--lime); color: var(--black); }
.price-badge {
  position: absolute; top: -0.5rem; left: 0.85rem;
  font-size: 0.5rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.15rem 0.4rem; background: var(--lime); color: var(--black);
}
.price-card h3 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.2rem; }
.price-amt { font-size: 1.75rem; font-weight: 900; letter-spacing: -0.03em; }
.price-amt span { font-size: 0.45em; opacity: 0.6; }
.price-card ul { list-style: none; margin: 0.5rem 0; font-size: 0.75rem; line-height: 1.55; opacity: 0.85; }
.price-card .btn-dark, .price-card .btn-lime { margin-top: 0.5rem; min-height: 46px; }

/* ── MESSAGES ── */
.msg-list.compact { margin-top: 0.5rem; }
.msg-block { padding: 0.65rem 0; border-top: 1px solid rgba(0,0,0,0.12); }
.section-dark .msg-block { border-color: rgba(255,255,255,0.1); }
.msg-meta { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.45; margin-bottom: 0.35rem; }
.bubble-you {
  display: inline-block; max-width: 95%; padding: 0.5rem 0.65rem; border-radius: 14px;
  font-size: 0.75rem; line-height: 1.35; background: var(--black); color: var(--lime);
  border-bottom-right-radius: 4px;
}
.section-dark .bubble-you { background: var(--lime); color: var(--black); }
.disclaimer { font-size: 0.5rem; opacity: 0.4; margin-top: 0.65rem; }

/* ── MEGA OFFER (06) — Spector black ── */
.close-tile--spector {
  background: #000;
}
.close-tile--spector .tile-num {
  color: var(--lime);
  opacity: 0.72;
}
.close-tile-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 15%, transparent 75%);
}
.mega-offer {
  position: relative;
  overflow: hidden;
  padding-top: 1.5rem;
}
.mega-offer-inner {
  position: relative;
  z-index: 1;
}
.mega-offer-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mega-intro {
  margin-bottom: 0;
  padding-bottom: 1.15rem;
}
.close-eyebrow {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem;
}
.close-lede {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: clamp(1.05rem, 4.2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.38;
  color: var(--white);
  margin: 0;
}
.close-lede-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.close-reveal.is-in-view .close-lede-line:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.08s;
}
.close-reveal.is-in-view .close-lede-line:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.2s;
}
.close-reveal.is-in-view .close-lede-line:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.34s;
}
.close-lede-line--accent {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* Spector panel — dot grid card */
.close-panel {
  position: relative;
  border-radius: 18px;
  padding: clamp(1.75rem, 6vw, 2.5rem) clamp(1.15rem, 4vw, 1.75rem);
  text-align: center;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.close-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.55;
  pointer-events: none;
}
.close-panel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 55%;
  transform: translate(-50%, -58%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.close-panel > * {
  position: relative;
  z-index: 1;
}
.close-panel-eyebrow {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 0.85rem;
}
.close-panel-num {
  margin: 0;
  font-size: clamp(3rem, 16vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.close-panel-num--money #gci-hero-value {
  color: var(--lime);
  text-shadow: 0 0 48px rgba(204, 255, 0, 0.35);
}
.close-panel-num--money .close-panel-num-suffix {
  color: var(--lime);
  opacity: 1;
  font-weight: 800;
}
.close-shift-band {
  padding: 1.15rem 0 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.close-shift-head {
  font-size: clamp(1.2rem, 5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.close-shift-line {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  line-height: 1.5;
}
.proof-video-wrap {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.vctrl-btn--play-once {
  min-width: min(78vw, 220px);
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.vctrl-btn--play-once:active {
  transform: scale(0.98);
}
.tile-video-wrap.is-playing .vctrl-btn--play-once {
  min-width: min(52vw, 140px);
  min-height: 40px;
  font-size: 0.5625rem;
}
.hero-video-wrap .vctrl-btn--hero-min {
  min-width: min(78vw, 220px);
  border: none;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.close-panel-num-prefix,
.close-panel-num-suffix {
  font-size: 0.45em;
  font-weight: 600;
  opacity: 0.85;
}
.close-panel-num--intent .close-panel-num-suffix {
  color: var(--lime);
  opacity: 1;
}
.close-panel-title {
  font-size: clamp(1.15rem, 5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
  margin: 0.65rem 0 0;
}
.close-panel-rule {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 1rem auto;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.close-panel-rule-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--lime);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.close-spector.is-live .close-panel-rule-fill,
#gci-board.is-live .close-panel--gci .close-panel-rule-fill {
  width: 100%;
}
.close-stat-row--lead.is-in-view .close-panel-rule-fill--match {
  width: 87%;
}
.close-panel-desc {
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
.close-panel-desc strong {
  color: var(--white);
  font-weight: 700;
}
.close-panel-fine {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.85rem 0 0;
  line-height: 1.45;
}
.close-spector {
  margin: 0.25rem 0;
}
.close-panel--lead {
  width: 100%;
}

/* Editorial stat rows */
.close-stat-row {
  display: grid;
  grid-template-columns: minmax(4.5rem, 6rem) 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.close-stat-bar {
  flex-shrink: 0;
  width: 1px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  min-height: 2.5rem;
  align-self: stretch;
}
.close-stat-num {
  margin: 0;
  font-size: clamp(2rem, 10vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.close-stat-index {
  font-size: clamp(1.5rem, 7vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(204, 255, 0, 0.22);
  padding-top: 0.15rem;
}
.close-stat-meta {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.4rem;
}
.close-stat-title {
  font-size: clamp(1rem, 4.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.close-stat-title--lg {
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: none;
  margin-bottom: 0.55rem;
}
.close-stat-desc {
  font-size: clamp(0.875rem, 3.6vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 0.4rem;
  max-width: 30rem;
}
.close-stat-desc strong {
  color: var(--white);
  font-weight: 700;
}
.close-stat-desc--dim {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}
.close-stat-tags {
  font-size: clamp(0.5625rem, 2.5vw, 0.625rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0;
  line-height: 1.5;
}
.close-stat-tags span {
  opacity: 0.55;
  font-weight: 400;
  padding: 0 0.2rem;
}
.close-feature-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.close-feature-list li {
  font-size: clamp(0.875rem, 3.6vw, 1rem);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: -0.01em;
}
.close-feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.close-feature-list strong {
  color: var(--white);
  font-weight: 700;
}
.close-stat-row--pillar {
  border-bottom: none;
  padding-bottom: 0.85rem;
  padding-top: 0;
}
.close-stat-num-col {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  min-height: 100%;
}
.close-stat-num-col--label {
  align-items: flex-start;
}
.close-stat-copy {
  min-width: 0;
}
.close-stat-row--lead {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
  padding: 1.75rem 0 0;
  margin-top: 0;
}
.close-stat-row--lead.lead-showcase-wrap {
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#offer .mega-offer-copy {
  width: 100%;
  min-width: 0;
}

/* Mobile — section 06 & 07 readability + stack */
@media (max-width: 767px) {
  #offer .close-stat-row--lead {
    padding-top: 1.25rem;
  }
  #pricing .plan-stack {
    gap: 0.65rem;
  }
  #pricing .plan-card {
    padding: 1.15rem 1rem 1.25rem;
  }
  #pricing .plan-card-price-num {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .close-panel-rule-fill { transition: none; width: 100% !important; }
  .close-panel-rule-fill--match { width: 87% !important; }
}
.mega-pillar--shift {
  padding: 0;
  margin: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mega-pillar--system {
  padding: 1rem 0 0;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mega-pillar-system-copy .close-stat-meta {
  margin-bottom: 0.3rem;
}
.mega-pillar-system-copy .close-stat-title--lg {
  margin-bottom: 0.45rem;
}
.mega-pillar-media {
  border-radius: 8px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: #111;
}
.mega-pillar-system-copy .close-stat-row--pillar {
  padding-top: 0;
}

@media (min-width: 768px) {
  .close-stat-row {
    grid-template-columns: minmax(7rem, 9rem) 1fr;
    gap: 1.25rem 2rem;
    padding: 1.75rem 0;
  }
  .close-stat-num {
    font-size: clamp(2.75rem, 5vw, 4rem);
  }
  .close-stat-title--lg {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
  }
  .close-stat-desc {
    font-size: 0.9375rem;
    max-width: 32rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .close-stat-rule-fill { transition: none; width: 100% !important; }
  .close-stat-rule-fill--match { width: 87% !important; }
}

/* Legacy gci-board — kept for JS hooks only */
.gci-board {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1rem 0.9rem 0.85rem;
  border: 2px solid rgba(204, 255, 0, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(165deg, rgba(204, 255, 0, 0.06) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.75) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(204, 255, 0, 0.06);
  overflow: hidden;
}
.gci-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.65;
}
.gci-board-head {
  margin-bottom: 0.85rem;
}
.gci-board-tag {
  display: block;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.8;
  margin-bottom: 0.4rem;
}
.gci-board-lede {
  font-size: clamp(0.875rem, 3.6vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.78);
}
.gci-board-lede strong {
  color: var(--white);
  font-weight: 800;
}
.gci-hero {
  text-align: center;
  margin-bottom: 0.85rem;
  padding: 0.65rem 0 0.5rem;
}
.gci-hero-label {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}
.gci-hero-num {
  font-size: clamp(2.75rem, 14vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--lime);
  text-shadow: 0 0 40px rgba(204, 255, 0, 0.35);
  font-variant-numeric: tabular-nums;
}
.gci-hero-prefix,
.gci-hero-suffix {
  font-size: 0.55em;
  opacity: 0.85;
}
.gci-hero-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.35rem;
}
.gci-meter {
  margin-bottom: 0.75rem;
  padding: 0.55rem 0.65rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gci-board.is-live .gci-meter {
  opacity: 1;
  transform: none;
}
.gci-meter-top,
.gci-meter-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}
.gci-meter-foot {
  margin-bottom: 0;
  margin-top: 0.35rem;
}
.gci-meter-foot strong {
  color: var(--lime);
  font-size: 0.625rem;
  letter-spacing: 0.04em;
}
.gci-meter-pct {
  color: var(--lime);
  font-weight: 900;
  font-size: 0.6875rem;
}
.gci-meter-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.gci-meter-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(204, 255, 0, 0.65), var(--lime));
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.45);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.gci-stack-viz {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.28rem;
  height: 5.5rem;
  margin-bottom: 0.85rem;
  padding: 0 0.25rem;
}
.gci-block {
  flex: 1;
  max-width: 2.75rem;
  min-height: 0;
  height: 0;
  background: linear-gradient(180deg, var(--lime) 0%, rgba(204, 255, 0, 0.45) 100%);
  border-radius: 4px 4px 2px 2px;
  border: 1px solid rgba(204, 255, 0, 0.5);
  box-shadow: 0 0 12px rgba(204, 255, 0, 0.2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.25rem;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: opacity 0.35s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}
.gci-block span {
  font-size: 0.4375rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.85;
}
.gci-block--cap {
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.45);
}
.gci-board.is-live .gci-block {
  opacity: 1;
  transform: scaleY(1);
}
.gci-ladder {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.gci-rung {
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0.45;
  transform: translateX(-6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.35s, background 0.35s;
}
.gci-rung.is-visible {
  opacity: 1;
  transform: none;
}
.gci-rung.is-active {
  border-color: rgba(204, 255, 0, 0.45);
  background: rgba(204, 255, 0, 0.08);
  box-shadow: 0 0 24px rgba(204, 255, 0, 0.08);
}
.gci-rung-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.65rem;
}
.gci-rung-formula {
  font-size: clamp(0.6875rem, 3vw, 0.8125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
}
.gci-rung-total {
  font-size: clamp(0.875rem, 3.8vw, 1.0625rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--lime);
  white-space: nowrap;
}
.gci-rung-note {
  font-size: 0.5625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
  line-height: 1.35;
}
.gci-fine {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  opacity: 0.38;
  margin-top: 0.65rem;
  text-align: center;
}
.close-tile-bg .close-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.close-orb--1 {
  width: 280px;
  height: 280px;
  top: 5%;
  right: -8%;
  background: rgba(204, 255, 0, 0.12);
  animation: close-orb-drift 14s ease-in-out infinite;
}
.close-orb--2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: -5%;
  background: rgba(120, 80, 255, 0.15);
  animation: close-orb-drift 18s ease-in-out infinite reverse;
}
@keyframes close-orb-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}
.close-spec-ribbon {
  position: relative;
  margin: 0.85rem 0 1rem;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(204, 255, 0, 0.55) 0%,
    rgba(204, 255, 0, 0.12) 40%,
    rgba(204, 255, 0, 0.35) 100%
  );
  box-shadow:
    0 0 0 1px rgba(204, 255, 0, 0.12) inset,
    0 8px 28px rgba(0, 0, 0, 0.35);
}
.close-spec-ribbon::before,
.close-spec-ribbon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(204, 255, 0, 0.45);
  pointer-events: none;
}
.close-spec-ribbon::before {
  top: 6px;
  left: 6px;
  border-right: none;
  border-bottom: none;
  border-radius: 4px 0 0 0;
}
.close-spec-ribbon::after {
  bottom: 6px;
  right: 6px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 4px 0;
}
.close-spec-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.88) 100%);
  text-align: center;
}
.close-spec-chip {
  font-size: clamp(0.5625rem, 2.6vw, 0.6875rem);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lime);
  line-height: 1.35;
  text-wrap: balance;
}
.close-spec-divider {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.55;
  box-shadow: 0 0 8px rgba(204, 255, 0, 0.4);
}
.close-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-i, 0) * 70ms);
}
.close-reveal.is-in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.close-system-list {
  gap: 0.5rem;
}
.close-system-list li {
  padding: 0.7rem 0.8rem 0.7rem 0.9rem;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(90deg, rgba(204, 255, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 2px solid rgba(204, 255, 0, 0.55);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.close-system-list li strong {
  display: inline;
  margin-bottom: 0;
  font-size: inherit;
  letter-spacing: -0.01em;
}
.mega-pillar-system-grid {
  display: grid;
  gap: 1rem;
}
.mega-pillar-system-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mega-pillar--shift {
  padding-top: 1.5rem;
  margin-top: 0.25rem;
}
.mega-pillar--system {
  padding-top: 0;
  padding-bottom: 0.5rem;
}
.mega-pillar--system .mega-pillar-title {
  margin-bottom: 0.35rem;
}
.mega-pillar-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mega-pillar-lede {
  margin-bottom: 0;
}
.mega-pillar-text {
  max-width: 36rem;
}

@media (max-width: 767px) {
  .close-spec-ribbon-inner {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 0.85rem;
  }
  .close-spec-divider {
    width: 2rem;
    height: 1px;
    border-radius: 999px;
    opacity: 0.35;
  }
}

@media (min-width: 768px) {
  #offer .tile-inner,
  #final .tile-inner,
  .close-tile .tile-inner {
    max-width: var(--section-rail);
  }
  #pricing.mega-reality .tile-inner {
    max-width: var(--section-rail);
  }
  .mega-pillar-system-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.35rem;
    align-items: start;
  }
  .mega-pillar-media {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
  }
  .close-spec-ribbon-inner {
    justify-content: flex-start;
    text-align: left;
    padding: 0.75rem 1rem;
  }
  .close-spec-chip {
    letter-spacing: 0.1em;
  }
  .mega-pillar-title {
    font-size: clamp(1.55rem, 3.2vw, 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .close-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .close-lede-line {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 768px) {
  .gci-board {
    padding: 1.15rem 1.1rem 1rem;
  }
  .gci-board-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: end;
  }
  .gci-stack-viz {
    height: 7rem;
    margin-bottom: 0;
    grid-row: span 2;
  }
  .gci-block {
    max-width: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gci-meter,
  .gci-block,
  .gci-rung {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gci-meter-fill { transition: none; }
  .close-orb { animation: none; }
}
.mega-pillar {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mega-pillar:last-of-type {
  border-bottom: none;
}
.mega-pillar-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.85;
  margin-bottom: 0.45rem;
}
.mega-pillar-title {
  font-size: clamp(1.45rem, 6.5vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}
.mega-pillar-lede {
  font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.55rem;
}
.mega-pillar-text {
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 32rem;
}
.mega-pillar--shift .mega-pillar-title {
  color: var(--white);
}
.mega-pillar--system {
  display: block;
}
.mega-pillar-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(204, 255, 0, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  background: #111;
}
.mega-pillar-media .tile-video-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
  background: #111;
}
.mega-pillar-media .mega-vid {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  filter: none !important;
  background: #111;
}
.mega-pillar-media .video-controls--tile {
  align-items: flex-end;
  padding-bottom: 0.75rem;
}
.mega-tags {
  margin-bottom: 0.5rem;
}
.mega-tags span {
  border-color: rgba(204, 255, 0, 0.45);
  color: var(--lime);
  opacity: 1;
}
.mega-system-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mega-system-list li {
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 0.85rem;
  border-left: 2px solid rgba(204, 255, 0, 0.35);
}
.mega-system-list strong {
  color: var(--white);
  font-weight: 700;
}
.mega-pillar--reality .mega-pillar-title {
  color: var(--lime);
}
.mega-steps {
  list-style: none;
  margin: 0.85rem 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mega-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.mega-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  font-weight: 900;
  background: var(--lime);
  color: var(--black);
  border-radius: 50%;
}
.mega-step-body {
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.68);
}
.mega-step-body strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.mega-pipelines-kicker {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem;
}
.mega-price-stack {
  margin-top: 0.35rem;
}
.mega-proof {
  padding: 1.35rem 0 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}
.mega-proof-kicker {
  font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.85rem;
}
.mega-proof-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.proof-card {
  padding: 0.85rem 0.95rem;
  background: rgba(204, 255, 0, 0.06);
  border: 1px solid rgba(204, 255, 0, 0.18);
  border-radius: 8px;
}
.proof-result {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.35rem;
}
.proof-quote {
  font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 0.45rem;
}
.proof-agent {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.45;
}
.mega-lifestyle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 1.1rem 0 0.85rem;
  border-radius: 10px;
  overflow: hidden;
  min-height: 5.5rem;
}
.mega-lifestyle-cell {
  min-height: 5.5rem;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}
.mega-lifestyle-cell--1 {
  background-image: linear-gradient(135deg, rgba(204,255,0,0.15), rgba(0,0,0,0.6)), url('assets/lifestyle.jpg');
}
.mega-lifestyle-cell--2 {
  background-image: linear-gradient(135deg, rgba(120,80,255,0.2), rgba(0,0,0,0.5)), url('assets/lifestyle.jpg');
  background-position: 60% center;
}
.mega-lifestyle-cell--3 {
  background-image: linear-gradient(135deg, rgba(204,255,0,0.1), rgba(0,0,0,0.55)), url('assets/lifestyle.jpg');
  background-position: 30% 70%;
}
.mega-lock-cta {
  margin-top: 0.5rem;
  min-height: 56px;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  box-shadow: 0 8px 32px rgba(204, 255, 0, 0.22);
}
.mega-lock-note {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.45;
  margin-top: 0.55rem;
  line-height: 1.45;
}
.mega-offer-cta {
  margin-top: 1.5rem;
  min-height: 52px;
}

/* Lead showcase — Apple-style scroll + iPhone */
.lead-showcase-wrap {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: none;
}
.lead-showcase-kicker {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
  text-align: center;
}
.lead-showcase-runway {
  position: relative;
  min-height: 220vh;
}
.lead-showcase-pin {
  position: sticky;
  top: calc(var(--nav-h) + 0.5rem);
  z-index: 2;
  padding-bottom: 0.5rem;
}
.lead-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
.lead-showcase-copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}
.lead-feature-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}
.lead-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem 0.5rem 0.55rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: clamp(0.875rem, 3.8vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.lead-feature-pill.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.lead-feature-pill:active {
  transform: scale(0.98);
}
.lead-feature-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
}
.lead-feature-pill.is-active .lead-feature-mark {
  border: none;
  background: transparent;
  font-size: 0;
  color: transparent;
}
.lead-feature-pill.is-active .lead-feature-mark::before {
  content: '';
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b8a, #CCFF00);
  box-shadow: 0 0 12px rgba(255, 107, 138, 0.55);
}
.lead-feature-details {
  position: relative;
  min-height: 12.5rem;
}
.lead-feature-detail {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
.lead-feature-detail.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.lead-feature-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.lead-feature-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
}
.lead-feature-body {
  margin: 0;
  font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
  max-width: 22rem;
}

/* Payoff slide — GCI-style gradient card */
.lead-feature-detail--payoff {
  display: flex;
  align-items: center;
}
.lead-payoff-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}
.lead-payoff-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(128deg, #e91e8c 0%, #ff4d6d 38%, #ff8f3d 100%);
}
.lead-payoff-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.14) 100%);
  z-index: 1;
  pointer-events: none;
}
.lead-payoff-bg .dream-mesh-blob {
  opacity: 0.95;
  filter: blur(44px);
}
.lead-payoff-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem 1.15rem;
  text-align: center;
  color: #fff;
}
.lead-payoff-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.lead-payoff-num {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.85rem, 8.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.lead-payoff-label {
  margin: 0.35rem 0 0;
  width: 100%;
  max-width: 14rem;
  font-size: clamp(0.8125rem, 3.6vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  text-wrap: balance;
}
.lead-payoff-body {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  width: 100%;
  max-width: 15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  text-wrap: balance;
}
.lead-showcase-device {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0.25rem 0 0.5rem;
}
.lead-phone {
  width: min(72vw, 220px);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
}
.lead-phone-frame {
  position: relative;
  border-radius: 2.35rem;
  padding: 0.45rem;
  background: linear-gradient(145deg, #3a3a3c 0%, #1c1c1e 45%, #2c2c2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.8);
}
.lead-phone-island {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 1.15rem;
  border-radius: 999px;
  background: #000;
  z-index: 4;
}
.lead-phone-status {
  position: absolute;
  top: 0.85rem;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.88);
  pointer-events: none;
}
.lead-phone-screens {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 1.95rem;
  overflow: hidden;
  background: #f5f5f7;
}
.lead-phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0.85rem 2rem;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  background: #f5f5f7;
}
.lead-phone-screen.is-active {
  opacity: 1;
  transform: scale(1);
}
.lead-phone-bar {
  width: 32%;
  height: 0.2rem;
  margin: 0.45rem auto 0.15rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}
.lead-notif {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 1.05rem;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.lead-notif--hot {
  background: #000;
  border-color: rgba(255, 255, 255, 0.1);
}
.lead-notif--cta {
  border-color: rgba(255, 255, 255, 0.1);
}
.lead-notif--payoff {
  background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
  border-color: rgba(255, 107, 138, 0.35);
  box-shadow: 0 16px 40px rgba(255, 77, 109, 0.2);
}
.lead-notif-title--money {
  font-size: clamp(1.35rem, 6vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ff6b8a 0%, #ffb347 55%, #CCFF00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-notif-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.lead-notif-title {
  margin: 0 0 0.35rem;
  font-size: clamp(0.9375rem, 4vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
}
.lead-notif-body {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.68);
}
.lead-notif-btn {
  display: block;
  margin-top: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
.lead-showcase-disclaimer {
  font-size: 0.5625rem;
  opacity: 0.55;
  text-align: center;
  margin-top: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 767px) {
  .lead-showcase-runway {
    min-height: 175vh;
  }
  .lead-showcase-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 0.55rem;
    align-items: start;
  }
  .lead-showcase-copy {
    gap: 0.55rem;
    min-width: 0;
  }
  .lead-feature-nav {
    gap: 0.28rem;
  }
  .lead-feature-pill {
    padding: 0.38rem 0.55rem 0.38rem 0.42rem;
    font-size: clamp(0.6875rem, 2.9vw, 0.8125rem);
    gap: 0.4rem;
    width: 100%;
  }
  .lead-feature-mark {
    width: 1.05rem;
    height: 1.05rem;
    font-size: 0.65rem;
  }
  .lead-feature-details {
    min-height: 9.5rem;
  }
  .lead-feature-eyebrow {
    font-size: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .lead-feature-title {
    font-size: clamp(0.9375rem, 4vw, 1.0625rem);
  }
  .lead-feature-body {
    font-size: clamp(0.6875rem, 2.9vw, 0.75rem);
    line-height: 1.38;
  }
  .lead-showcase-device {
    padding: 0;
    align-items: flex-start;
    justify-content: center;
    position: sticky;
    top: calc(var(--nav-h) + 0.35rem);
  }
  .lead-phone {
    width: min(40vw, 138px);
  }
  .lead-notif {
    padding: 0.55rem 0.5rem;
  }
  .lead-notif-title {
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  }
  .lead-notif-body {
    font-size: 0.5625rem;
  }
}

@media (min-width: 768px) {
  .lead-showcase-runway {
    min-height: 180vh;
  }
  .lead-showcase-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
  }
  .lead-showcase-device {
    justify-content: flex-end;
    padding-right: 0.5rem;
  }
  .lead-phone {
    width: min(240px, 100%);
  }
  .lead-feature-details {
    min-height: 13.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-feature-detail,
  .lead-phone-screen,
  .lead-feature-pill {
    transition: none;
  }
  .lead-feature-detail {
    position: relative;
    display: none;
  }
  .lead-feature-detail.is-active {
    display: block;
    transform: none;
  }
  .lead-phone-screen {
    position: relative;
    display: none;
    aspect-ratio: auto;
    min-height: 12rem;
  }
  .lead-phone-screen.is-active {
    display: flex;
    transform: none;
  }
}

/* 07 · Reality tile */
.mega-reality {
  padding-top: 1.25rem;
  padding-bottom: calc(1.5rem + var(--safe-b));
}
.mega-reality-inner {
  max-width: var(--section-rail);
}
.mega-reality-head {
  margin-bottom: 1rem;
}
.mega-reality-head .tile-head {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.mega-reality-head .tile-sub {
  color: rgba(255, 255, 255, 0.58);
  max-width: 100%;
}
.mega-reality-head .tile-sub--amp {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.8125rem, 3.6vw, 0.9375rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.022em;
  max-width: 100%;
}
.mega-reality-head .tile-sub--amp strong {
  color: var(--lime);
  font-weight: 800;
}
.mega-reality .mega-step {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.mega-reality .mega-step-body {
  color: rgba(255, 255, 255, 0.88);
}
.mega-reality .mega-step-body strong {
  color: var(--white);
  font-weight: 700;
}
.mega-reality .mega-steps--elaborate {
  gap: 0.75rem;
  margin: 1.1rem 0 1.35rem;
}
.mega-reality .mega-steps--elaborate .mega-step {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.12);
}
.mega-reality .mega-steps--elaborate .mega-step-num {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.9375rem;
  font-weight: 900;
}
.mega-reality .mega-steps--elaborate .mega-step-body {
  font-size: clamp(0.875rem, 3.9vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.88);
}
.mega-reality .mega-steps--elaborate .mega-step-body strong {
  display: block;
  font-size: clamp(0.9375rem, 4.2vw, 1.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.mega-reality .mega-lock-note {
  color: rgba(255, 255, 255, 0.65);
}

/* Plan cards — Spector-style (vertical stack) */
.plan-stack-kicker {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 1.35rem 0 0.75rem;
}
.plan-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.25rem 1.5rem;
  color: var(--white);
}
.plan-card--featured {
  border-color: rgba(204, 255, 0, 0.32);
  box-shadow: 0 0 0 1px rgba(204, 255, 0, 0.08);
}
.plan-card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.plan-card-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 35% 35%, var(--lime) 0%, var(--lime) 18%, transparent 19%),
    radial-gradient(circle at 65% 65%, rgba(255, 255, 255, 0.15) 0%, transparent 45%);
  flex-shrink: 0;
}
.plan-card--featured .plan-card-mark {
  border-color: rgba(204, 255, 0, 0.45);
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.2);
}
.plan-card-name {
  margin: 0;
  font-size: clamp(0.9375rem, 4vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}
.plan-card-price {
  margin: 0 0 0.55rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-card-price-num {
  font-size: clamp(2.35rem, 11vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--white);
}
.plan-card-price-period {
  font-size: clamp(0.875rem, 3.8vw, 1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 0.15rem;
}
.plan-card-lede {
  margin: 0;
  font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.62);
  max-width: 22rem;
}
.plan-card-rule {
  height: 1px;
  margin: 1rem 0 0.85rem;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  opacity: 0.7;
}
.plan-card-features {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.plan-card-features li {
  position: relative;
  padding-left: 1.15rem;
  font-size: clamp(0.8125rem, 3.4vw, 0.875rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
}
.plan-card-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}
.plan-card--featured .plan-card-features li::before {
  color: var(--lime);
}
.plan-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: none;
  background: var(--white);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.plan-card-cta:active {
  transform: scale(0.98);
}
.plan-card-cta--lime {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 8px 28px rgba(204, 255, 0, 0.18);
}
.plan-card-note {
  margin: 0.85rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
}
.plan-card--featured .plan-card-note {
  border-top-color: rgba(204, 255, 0, 0.15);
  color: rgba(255, 255, 255, 0.55);
}
.setup-legal {
  margin: 1rem 0 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(0.6875rem, 2.9vw, 0.75rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
}
.setup-legal strong {
  color: var(--white);
  font-weight: 700;
}
.setup-legal--tight {
  margin: 0.85rem 0 0.75rem;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}

#proof,
#zip,
#faq {
  --stack-end-buffer: clamp(1.25rem, 5vh, 2rem);
}

#final {
  --stack-end-buffer: clamp(2rem, 8vh, 3.5rem);
}

.mega-steps--compact {
  margin-bottom: 0.75rem;
}
.mega-steps--compact .mega-step {
  padding: 0.65rem 0.75rem;
}
.mega-steps--compact .mega-step-body {
  font-size: clamp(0.8125rem, 3.5vw, 0.875rem);
  line-height: 1.42;
}

@media (min-width: 768px) {
  .plan-card-price-num {
    font-size: 3rem;
  }
}

/* 08 · Proof — Apple-style white feature cards */
.section-proof-white {
  background: #f5f5f7;
  color: var(--black);
}
.section-proof-white .tile-num {
  color: var(--purple);
}
.section-proof-white .tile-meta {
  color: rgba(0, 0, 0, 0.45);
}
.section-proof-white .btn-dark {
  background: var(--black);
  color: var(--lime);
}
.proof-tile {
  padding-top: 1.25rem;
  padding-bottom: calc(1.5rem + var(--safe-b));
  background: #f5f5f7;
}
.proof-tile-head {
  margin-bottom: 1.15rem;
  text-align: center;
}
.proof-tile-head .tile-meta {
  color: rgba(0, 0, 0, 0.45);
}
.proof-tile-head .tile-head {
  color: var(--black);
  max-width: 16rem;
  margin-inline: auto;
}
.proof-feature-vid {
  margin-bottom: 1.5rem;
}
.proof-feature-vid .proof-video-wrap {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.proof-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proof-social-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}
.proof-social-head {
  margin: 0;
  font-size: clamp(1.35rem, 6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-align: center;
  color: var(--black);
}
.proof-closing-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.55rem;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
}
.proof-closing-from {
  margin: 0;
  flex: 0 0 auto;
  font-size: clamp(1.35rem, 6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--black);
  white-space: nowrap;
}
.proof-broker-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1 1 auto;
  min-width: 0;
}
.proof-broker-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 2.45rem;
  padding: 0.3rem 0.55rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.proof-broker-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 1.35rem;
  object-fit: contain;
  object-position: center;
}
.proof-broker-logo--remax img {
  max-height: 1.15rem;
  max-width: 4.75rem;
}
.proof-broker-logo--kw img {
  max-height: 1.65rem;
  max-width: 3.5rem;
}
.proof-broker-logo--c21 img {
  max-height: 1.05rem;
  max-width: 5.5rem;
}
.proof-broker-logo--cb img {
  max-height: 1.5rem;
  max-width: 2rem;
}
.proof-apple-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 17.5rem);
  gap: 0.65rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad-x);
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem var(--pad-x) 0.35rem;
  margin-inline: calc(-1 * var(--pad-x));
}
.proof-apple-grid::-webkit-scrollbar {
  display: none;
}
.proof-apple-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06);
}
.proof-apple-copy {
  margin: 0;
  font-size: clamp(1.125rem, 4.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #1d1d1f;
}
.proof-accent {
  font-weight: 700;
}
.proof-accent--lime {
  color: #7a9400;
}
.proof-accent--purple {
  color: var(--purple);
}
.proof-disclaimer {
  margin: 0.85rem 0 0;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(0, 0, 0, 0.38);
}
.proof-tile-cta {
  margin-top: 1.15rem;
  min-height: 52px;
}

@media (min-width: 520px) {
  .proof-closing-row {
    max-width: 32rem;
    gap: 0.55rem 0.65rem;
  }
  .proof-broker-logo {
    height: 2.55rem;
    padding: 0.32rem 0.6rem;
  }
}

@media (min-width: 768px) {
  .proof-closing-row {
    max-width: 36rem;
  }
  .proof-tile-head .tile-head {
    max-width: 22rem;
  }
  .proof-apple-grid {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    scroll-snap-type: none;
  }
  .proof-apple-card {
    min-height: 11.5rem;
    padding: 1.5rem 1.35rem;
    border-radius: 1.5rem;
  }
  .proof-apple-copy {
    font-size: 1.4rem;
  }
  .mega-offer-inner {
    max-width: var(--section-rail);
  }
  .mega-pillar-system-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.35rem;
    align-items: start;
  }
  .mega-pillar-media {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
    grid-row: auto;
    max-height: none;
  }
  .mega-pillar-media .mega-vid {
    max-height: none;
  }
  .mega-pillar--system .mega-pillar-head {
    grid-column: auto;
  }
  .mega-system-list {
    grid-column: auto;
  }
  .mega-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
}

/* ── ZIP — compact territory check ── */
.zip-tile {
  padding-bottom: calc(1.25rem + var(--safe-b));
}
.zip-tile-inner {
  padding-top: 0.85rem;
  padding-bottom: 1.15rem;
}
#zip .tile-stick {
  min-height: auto;
  position: relative;
  top: auto;
}

/* Flat flow sections — content height only (no phantom viewport gap) */
#pricing .tile-stick,
#proof .tile-stick,
#faq .tile-stick,
#final .tile-stick {
  min-height: auto;
  position: relative;
  top: auto;
}
.zip-sub {
  margin: 0 0 0.65rem;
  font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.78);
  max-width: 100%;
}
.zip-input {
  width: 100%; padding: 0.85rem; font-size: 1.35rem; font-weight: 900;
  text-align: center; letter-spacing: 0.2em; font-family: inherit;
  background: rgba(0,0,0,0.2); color: var(--white); border: 2px solid rgba(255,255,255,0.2);
  margin: 0.65rem 0 0.5rem;
}
.zip-input:focus { outline: none; border-color: var(--lime); }
.zip-result { display: none; padding: 0.65rem; font-size: 0.8125rem; margin-top: 0.35rem; }
.zip-result.show { display: block; }
.zip-result.ok { background: rgba(0,0,0,0.2); border: 1px solid rgba(204,255,0,0.35); }
.zip-package-row {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.zip-package-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.zip-package-pills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.zip-package-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
}
.zip-package-pill--featured {
  background: rgba(204, 255, 0, 0.1);
  border-color: rgba(204, 255, 0, 0.28);
  color: var(--white);
}
.zip-package-num {
  font-weight: 800;
  color: var(--lime);
  margin-right: 0.15rem;
}
.zip-onboard-cta {
  margin-top: 1rem;
  min-height: 52px;
  width: 100%;
}

@media (min-width: 520px) {
  .zip-package-pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
  }
  .zip-package-pill {
    flex: 1 1 auto;
    min-width: 7.5rem;
  }
}

/* ── FAQ — Spector-style accordion ── */
.faq-tile-inner {
  max-width: var(--section-rail);
  width: 100%;
  margin-inline: auto;
  padding-top: 0.5rem;
}
.faq-head {
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: transparent;
  overflow: hidden;
}
.section-lime .faq-item {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.04);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: clamp(0.875rem, 3.8vw, 1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  min-height: 54px;
  -webkit-tap-highlight-color: transparent;
}
.faq-q::after {
  content: '+';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s var(--ease);
}
.section-lime .faq-q::after {
  color: var(--black);
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 24rem;
}
.faq-a-inner {
  padding: 0 1.15rem 1.15rem;
  font-size: clamp(0.8125rem, 3.4vw, 0.875rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.5);
}
.section-lime .faq-a-inner {
  color: rgba(0, 0, 0, 0.58);
}

/* ── FAQ legacy overrides removed ── */
.faq-item { border-bottom: none; }

/* ── STICKY CTA ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 180;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.45rem max(0.85rem, env(safe-area-inset-left)) calc(0.45rem + var(--safe-b)) max(0.85rem, env(safe-area-inset-right));
  background: rgba(0,0,0,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translate3d(0, 110%, 0);
  transition: transform 0.3s var(--ease);
}
.sticky-bar.visible { transform: translate3d(0, 0, 0); }
.sticky-bar.is-suppressed { transform: translate3d(0, 110%, 0) !important; }
.sticky-bar-consent {
  margin: 0;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.38);
}
.sticky-bar-consent a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.sticky-bar > a[data-track] {
  display: flex; align-items: center; justify-content: center; min-height: 50px;
  background: var(--lime); color: var(--black); font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
}

.checkout-consent {
  margin: 0 0 0.75rem;
  font-size: clamp(0.5rem, 2.1vw, 0.5625rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
  max-width: 22rem;
}
.legal-muted,
.checkout-consent a,
.sticky-bar-consent a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.checkout-consent--monaco {
  margin: 0 0 0.15rem;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.5rem;
}
.monaco-cta-legal {
  color: rgba(255, 255, 255, 0.42);
}
.setup-legal .legal-link {
  color: rgba(255, 255, 255, 0.42);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem var(--pad-x) calc(0.85rem + var(--sticky-h));
  padding-right: max(1rem, env(safe-area-inset-right));
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}
.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  margin-bottom: 1rem;
}
.site-footer-legal a {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s var(--ease);
}
.site-footer-legal a:hover {
  color: var(--lime);
}

.footer-note {
  font-size: 0.5rem; line-height: 1.55; opacity: 0.35;
  padding: 0;
  text-align: center; max-width: var(--section-rail); margin-inline: auto;
}

/* ── POLICIES PAGE ── */
.policies-page {
  min-height: 100svh;
  background: var(--black);
  color: var(--white);
  padding-top: var(--nav-h);
}
.policies-wrap {
  max-width: var(--section-rail);
  margin-inline: auto;
  padding: 1.25rem var(--pad-x) calc(2rem + var(--safe-b));
  padding-right: max(1rem, env(safe-area-inset-right));
}
.policies-back {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lime);
}
.policies-head {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}
.policies-subhead {
  margin: 0 0 0.35rem;
  font-size: clamp(0.5625rem, 2.2vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.policies-updated {
  margin: 0 0 1.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.policies-toc {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 2rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.policies-toc-label {
  margin: 0 0 0.35rem;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}
.policies-toc a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  line-height: 1.4;
}
.policies-toc a:hover {
  color: var(--lime);
}
.policy-block {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: calc(var(--nav-h) + 0.75rem);
}
.policy-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.policy-block h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 4.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}
.policy-block h3 {
  margin: 1rem 0 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lime);
}
.policy-block p,
.policy-block li {
  font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
}
.policy-block ul,
.policy-block ol {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.15rem;
}
.policy-block li {
  margin-bottom: 0.35rem;
}
.policy-block a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-agree {
  margin-top: 2rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(204, 255, 0, 0.2);
  background: rgba(204, 255, 0, 0.06);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}
.policy-contact {
  margin: 1rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}
.policy-contact a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── MOBILE: IG in-app — spacing, sticky-safe, full content ── */
@media (max-width: 767px) {
  :root {
    --stack-end-buffer: clamp(1.5rem, 6vh, 2.75rem);
    --sticky-h: calc(5.75rem + var(--safe-b));
  }

  html {
    scroll-padding-bottom: var(--sticky-h);
  }

  .page-wrap section,
  .split-stage {
    scroll-margin-top: var(--nav-h);
  }

  .tile-stack .tile-panel {
    padding-top: 0.85rem;
    scroll-margin-top: var(--nav-h);
  }

  /* Hero — full-frame video */
  .hero-visual {
    border-radius: 0 0 10px 10px;
  }

  .hero-eyebrow {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 0.5625rem;
    letter-spacing: 0.08em;
  }

  .hero-lede {
    max-width: 100%;
    margin-bottom: 0.75rem;
  }

  .hero-lede-main {
    gap: 0.38rem;
  }

  .hero-lede-kicker {
    font-size: clamp(1rem, 4.5vw, 1.125rem);
    line-height: 1.38;
    letter-spacing: -0.022em;
    max-width: 19rem;
  }

  .hero-lede-detail {
    font-size: clamp(0.9375rem, 4vw, 1.0625rem);
    line-height: 1.4;
    max-width: 17.5rem;
  }

  .hero-note {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
  }

  .hero-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-content::before {
    top: 1rem;
    bottom: 1rem;
  }

  .hero-display {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
    line-height: 0.95;
    margin-bottom: 0.75rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.625rem;
  }

  .hero-note {
    margin-top: 0.55rem;
    margin-bottom: 0.15rem;
  }

  .btn-dark, .btn-lime {
    min-height: 54px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  .sticky-bar > a[data-track] {
    min-height: 54px;
    font-size: 0.75rem;
  }

  .monaco-cta-btn {
    min-height: 54px;
    font-size: 0.6875rem;
  }

  .tile-inner {
    padding-top: 0.65rem;
    padding-bottom: 0.85rem;
  }

  .faq-tile-inner {
    padding-bottom: 0.75rem;
  }

  .proof-tile {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .mega-reality {
    padding-top: 0.65rem;
  }

  .zip-tile-inner {
    padding-top: 0.65rem;
    padding-bottom: 0.85rem;
  }

  .lead-showcase-runway {
    min-height: 175vh;
  }

  .dream-cta--intro .dream-cta-grid {
    grid-template-columns: 1fr !important;
    gap: 0.7rem;
    padding: 1.05rem 1rem 1.1rem;
    align-items: stretch;
  }
  .dream-cta--intro .dream-cta-stat {
    text-align: center;
    padding: 0 0 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: none;
    justify-content: flex-start;
    align-self: stretch;
  }
  .dream-cta--intro .dream-cta-copy {
    padding-left: 0;
    justify-content: flex-start;
  }
  .dream-cta--intro .dream-cta-num {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }
  .dream-cta--intro .dream-cta-meter {
    margin: 0.35rem auto 0;
    max-width: 7.5rem;
  }
  .dream-cta--intro .dream-cta-list {
    margin-top: 0.45rem;
    gap: 0.35rem;
  }

  a, button {
    touch-action: manipulation;
  }

  .vctrl-btn {
    min-height: 48px;
    min-width: 48px;
  }

  .tile-media { margin-bottom: 0.75rem; }
  .tile-media--tall {
    max-width: 100%;
    margin-bottom: 0.65rem;
  }
  /* Section 03 — full video + full copy, scrollable */
  #tile-03 {
    padding-top: 0.5rem;
    overflow: visible;
  }
  #tile-03 .tile-inner {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
  }
  #tile-03 .tile-media,
  #tile-03 .tile-media--tall {
    aspect-ratio: auto;
    max-height: none;
    order: 2;
    margin-bottom: 0.65rem;
  }
  #tile-03 .tile-copy {
    order: 1;
  }
  #tile-03 .tile-num {
    order: 0;
  }
  #tile-03 .tile-meta {
    margin-bottom: 0.25rem;
  }
  #tile-03 .tile-head {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    line-height: 0.98;
    margin-bottom: 0.65rem;
  }
  #tile-03 .fineprint {
    margin-bottom: 1rem;
  }
  #tile-03 .fineprint-line {
    font-size: clamp(1rem, 4.4vw, 1.125rem);
    line-height: 1.42;
    margin-bottom: 0.35em;
  }
  #tile-03 .btn-lime {
    margin-top: 0.25rem;
    margin-bottom: 0;
  }

  /* Section 04 — fluid ledger, full section visible */
  #tile-05 {
    padding-top: 0.35rem;
    overflow: visible;
  }
  #tile-05 .tile-inner {
    padding-bottom: 1rem;
  }
  #tile-05 .tile-num {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0.1rem;
  }
  #tile-05 .tile-meta {
    margin-bottom: 0.2rem;
  }
  #tile-05 .tile-head {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    line-height: 1.06;
    margin-bottom: 0.3rem;
  }
  #tile-05 .tile-head br {
    display: none;
  }
  #tile-05 .bleed-hook {
    font-size: 0.8125rem;
    margin-bottom: 0;
  }
  .bleed-scenario--hook {
    margin-bottom: 0.55rem;
  }
  .bleed-scenario-tag {
    font-size: 0.4375rem;
    padding: 0.22rem 0.45rem;
    margin-bottom: 0.3rem;
  }
  .bleed-calc {
    margin: 0.2rem 0 0.45rem;
  }
  .bleed-scenario--year {
    margin-bottom: 0.35rem;
  }
  .bleed-scenario-inline {
    font-size: 0.5625rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
  }
  .bleed-sheet {
    gap: 0;
    border-radius: 10px;
    padding: 0;
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
  .bleed-rows {
    gap: 0;
  }
  .bleed-row {
    padding: 0.38rem 0.5rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    min-height: 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .bleed-whisper,
  .bleed-aside {
    opacity: 1 !important;
    transform: none !important;
  }
  .bleed-meter,
  .bleed-takeaway {
    opacity: 1 !important;
    transform: none !important;
  }
  .bleed-row:last-child {
    border-bottom: none;
  }
  .bleed-row--gci {
    border-left: none;
    border-bottom: 2px solid var(--lime);
    box-shadow: none;
  }
  .bleed-row-head {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-bottom: 0;
    align-items: center;
    gap: 0.35rem;
  }
  .bleed-row-label {
    font-size: 0.53125rem;
    line-height: 1.15;
    flex: 1;
    min-width: 0;
  }
  .bleed-row-amt {
    font-size: 0.75rem;
  }
  .bleed-row--gci .bleed-row-amt {
    font-size: 0.875rem;
  }
  .bleed-row--final .bleed-row-amt {
    font-size: 0.8125rem;
  }
  .bleed-whisper {
    font-size: 0.5rem;
    margin-top: 0.2rem;
    line-height: 1.25;
  }
  .bleed-aside {
    font-size: 0.5625rem;
    padding: 0.28rem 0.45rem;
    margin: 0;
    border-radius: 0;
    border-left-width: 2px;
  }
  .bleed-orb {
    opacity: 0.3;
    filter: blur(45px);
  }
  .bleed-meter {
    margin: 0.45rem 0 0.4rem;
    padding: 0.45rem 0.5rem;
  }
  .bleed-meter-top,
  .bleed-meter-foot {
    font-size: 0.4375rem;
  }
  .bleed-meter-pct {
    font-size: 0.8125rem;
  }
  .bleed-meter-foot strong {
    font-size: 0.9375rem;
  }
  .bleed-meter-track {
    height: 6px;
    margin-top: 0.35rem;
  }
  .bleed-takeaway {
    margin-top: 0.4rem;
    padding: 0.55rem 0.6rem;
  }
  .bleed-takeaway-stat {
    font-size: 0.8125rem;
    margin-bottom: 0;
    line-height: 1.3;
  }
  .bleed-takeaway-body {
    display: none;
  }
  .bleed-cta {
    margin-top: 0.55rem;
    margin-bottom: 0.75rem;
    min-height: 48px;
  }
  #tile-05 .bleed-takeaway-body {
    display: none;
  }
  #tile-04 {
    padding-top: 0.35rem;
  }
  #tile-04 .scroll-quote-cta {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  #offer,
  #pricing,
  #proof {
    padding-top: 1rem;
  }
  /* Section 01 — manifesto scroll + number in flow */
  .split-runway { min-height: 100vh; }
  .split-pin {
    position: sticky;
    top: var(--nav-h);
    height: auto;
    min-height: var(--tile-h);
  }
  .split-quote-col {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
  .split-num {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 0.65rem;
    font-size: clamp(2rem, 9vw, 2.75rem);
  }
  .footer-note {
    padding-bottom: 0;
  }

  .tile-copy .btn-lime,
  .tile-copy .btn-dark {
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
    flex-shrink: 0;
  }
  .data-stack { margin-bottom: 0.65rem; }
  .data-line { font-size: clamp(0.875rem, 3.8vw, 0.9375rem); }
  .stat-row-big { margin-bottom: 0.5rem; }
  .source-note { font-size: 0.5625rem; opacity: 0.55; }
  .sticky-bar { z-index: 190; }
}

/* ── DESKTOP: sticky tile stack (Vertical-style overlap) ── */
@media (min-width: 768px) {
  :root {
    --section-rail: min(100%, 36rem);
  }

  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-fill { display: none; }
  .nav-stripes--lead {
    flex: 1;
    max-width: 4rem;
  }
  .tile-inner {
    max-width: var(--section-rail);
    padding-top: 1.25rem;
  }
  .tile-panel.flat-panel .tile-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: var(--section-rail);
    margin-inline: auto;
    width: 100%;
  }
  .flat-panel .tile-num {
    grid-row: unset;
    margin-bottom: 0.35rem;
  }

  /* Sections 03 & 04 — compact, fully visible (no sticky clip) */
  #tile-03 .tile-inner {
    display: grid;
    grid-template-columns: minmax(2.5rem, 3.5rem) 1fr;
    column-gap: 1.25rem;
    row-gap: 0.65rem;
    align-items: start;
    max-width: 42rem;
  }
  #tile-03 .tile-num {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
  #tile-03 .tile-media--tall {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    order: unset;
  }
  #tile-03 .tile-copy {
    grid-column: 2;
    grid-row: 2;
    order: unset;
  }
  #tile-03 .tile-num,
  #tile-05 .tile-num {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 0.25rem;
  }
  #tile-03 .tile-head {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    line-height: 0.98;
    margin-bottom: 0.65rem;
  }
  #tile-03 .fineprint-line {
    font-size: clamp(1rem, 4.4vw, 1.125rem);
    line-height: 1.42;
    margin-bottom: 0.35em;
  }
  #tile-03 .fineprint {
    margin-bottom: 1rem;
  }
  #tile-05 .tile-head {
    font-size: clamp(1.25rem, 3.5vw, 1.55rem);
    line-height: 1.06;
    margin-bottom: 0.35rem;
  }
  #tile-05 .tile-head br {
    display: none;
  }
  #tile-05 .bleed-scenario--hook {
    padding: 0.45rem 0.6rem;
    margin-bottom: 0.65rem;
  }
  #tile-05 .bleed-row {
    padding: 0.5rem 0.6rem;
  }
  #tile-05 .bleed-whisper {
    font-size: 0.5625rem;
    margin-top: 0.22rem;
  }
  #tile-05 .bleed-aside {
    font-size: 0.625rem;
    padding: 0.32rem 0.55rem;
    margin: 0.08rem 0;
  }
  #tile-05 .bleed-meter {
    margin: 0.65rem 0 0.55rem;
    padding: 0.6rem 0.65rem;
  }
  #tile-05 .bleed-takeaway {
    margin-top: 0.55rem;
    padding: 0.65rem 0.7rem;
  }
  #tile-05 .bleed-cta {
    margin-top: 0.65rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  #tile-05 .bleed-row,
  #tile-05 .bleed-aside,
  #tile-05 .bleed-whisper,
  #tile-05 .bleed-meter,
  #tile-05 .bleed-takeaway {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tile-stack .tile-panel { box-shadow: none; }
  .split-runway { min-height: auto; }
  .scroll-quote-line { color: var(--black); }
  .scroll-quote-attr { opacity: 1; }
  .bleed-orb { animation: none; }
  .bleed-mesh { animation: none; }
  .bleed-spark { animation: none; opacity: 0.3; }
  .bleed-meter-fill { animation: none; }
  .bleed-row { opacity: 1; transform: none; transition: none; }
  .bleed-whisper, .bleed-aside { opacity: 1; transform: none; transition: none; }
  .bleed-meter { opacity: 1; transform: none; }
  .bleed-takeaway { opacity: 1; transform: none; }
}

/* ── SECTION 01 · SPLIT MANIFESTO ── */
.split-stage {
  z-index: 2;
  background: var(--lime);
  color: var(--black);
}
.split-stage.is-video-focus {
  z-index: 24;
}
.split-num {
  display: block;
  flex-shrink: 0;
  font-size: clamp(2.5rem, 12vw, 4rem);
  color: var(--purple);
  line-height: 1;
  pointer-events: none;
}
.split-runway {
  min-height: 90vh;
  position: relative;
}
.split-pin {
  position: sticky;
  top: var(--nav-h);
  height: auto;
  min-height: var(--tile-h);
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  align-content: start;
  overflow: visible;
  z-index: 1;
}
.split-quote-col {
  position: relative;
  padding: 1.25rem max(1rem, env(safe-area-inset-right)) 1.35rem max(1rem, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  order: 2;
}
#section-01 .scroll-quote {
  position: relative;
  z-index: 1;
}
.scroll-quote {
  font-size: clamp(1.25rem, 4.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}
.scroll-quote-line {
  display: block;
  margin-bottom: 0.18em;
  color: rgba(0,0,0,0.12);
  transition: color 0.12s linear;
}
#section-01 .scroll-quote-line {
  color: rgba(0, 0, 0, 0.2);
}
#section-01 .scroll-quote-line.is-lit { color: var(--black); }
.scroll-quote-line.is-lit { color: var(--black); }
.scroll-quote-attr {
  display: block;
  margin-top: 1rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0;
}
.scroll-quote-attr.is-lit { opacity: 1; }

.split-media-col {
  order: 1;
  height: auto;
  min-height: auto;
  align-self: start;
  overflow: visible;
  background: var(--black);
}
.split-video-wrap {
  isolation: isolate;
}
.split-vid {
  filter: none;
  border-radius: 0;
}
.split-video-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.28);
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.split-video-wrap.is-playing .split-video-dim {
  opacity: 0;
}

/* Always-visible play / pause control */
.video-controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}
.vctrl-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: min(88vw, 220px);
  min-height: 56px;
  padding: 0 1.35rem;
  border: 3px solid var(--black);
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.vctrl-btn:active { transform: scale(0.97); }
.vctrl-icon {
  display: flex;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.vctrl-icon svg { width: 100%; height: 100%; }
.vctrl-icon-pause { display: none; }
.split-video-wrap.is-playing .vctrl-icon-play { display: none; }
.split-video-wrap.is-playing .vctrl-icon-pause { display: flex; }
.split-video-wrap.is-playing .vctrl-btn {
  position: absolute;
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  min-width: 140px;
  min-height: 48px;
  font-size: 0.6875rem;
}
.split-video-wrap.is-playing .vctrl-btn:active {
  transform: translateX(-50%) scale(0.97);
}

@media (min-width: 768px) {
  .split-runway { min-height: 110vh; }
  .split-pin {
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: var(--tile-h);
    align-items: start;
  }
  .split-quote-col {
    order: 1;
    padding: 2rem 2rem 2rem 1.5rem;
    justify-content: center;
    min-height: var(--tile-h);
  }
  .split-num {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    margin-bottom: 0;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
  }
  #section-01 .scroll-quote {
    padding-left: 3.75rem;
  }
  .split-media-col { order: 2; height: auto; min-height: auto; align-self: start; }
  .scroll-quote { font-size: clamp(1.5rem, 2.4vw, 2.35rem); }
}

@media (max-width: 767px) {
  .split-runway { min-height: 100vh; }
  .split-pin { height: auto; min-height: var(--tile-h); }
  .split-media-col {
    height: auto;
    min-height: auto;
    align-self: start;
  }
  .vctrl-btn {
    min-width: min(90vw, 240px);
    min-height: 58px;
    font-size: 0.875rem;
  }
}
