:root {
  --bg: #0D1117;
  --bg-frame: #030507;
  --bg-2: #0a0d13;
  --bg-card: #0a0f17;
  --ink: #FFFFFF;
  --ink-2: #E8E8EC;
  --ink-3: #FFFFFF;
  --ink-4: #2a2e3a;
  --magenta: #7B2CBF;
  --magenta-mid: #4A1668;
  --plum: #2A0A40;
  --purple-hi: #A35CD9;
  --teal: #00E5D0;
  --teal-fog: #0B666A;
  --teal-deep: #052326;
  --cyan: #00E5D0;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.18);
  --warn: #7B2CBF;
}

html { background: var(--bg); }
html, body { margin: 0; padding: 0; min-height: 100%; }
body { min-height: 100vh; min-height: 100svh; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ============ GLOBAL AMBIENT ATMOSPHERE ============ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 22% 18%, rgba(123,44,191,0.18), transparent 65%),
    radial-gradient(ellipse 60% 60% at 85% 72%, rgba(0,229,208,0.08), transparent 65%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(42,10,64,0.3), transparent 75%),
    radial-gradient(ellipse 50% 30% at 70% 0%, rgba(74,22,104,0.18), transparent 70%);
  animation: bodyAmbient 70s ease-in-out infinite alternate;
}
@keyframes bodyAmbient {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(2%, -1%) scale(1.03); }
  100% { transform: translate(4%, -2%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

main, nav, footer { position: relative; z-index: 3; }

/* ============ TOP NAV ============ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5,5,7,0.72);
  border-bottom: 1px solid var(--line);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
nav.top .brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
nav.top .brand svg, nav.top .brand img { width: 24px; height: 24px; object-fit: contain; }
nav.top .brand .crumbs { color: var(--ink-3); }
nav.top .brand .crumbs b { color: var(--ink); font-weight: 600; }
nav.top .meta { color: var(--ink-3); display: flex; gap: 24px; align-items: center; }
nav.top .meta .dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  margin-right: 8px; vertical-align: middle;
}
nav.top .meta span.live { color: var(--teal); }

/* ============ SECTION FRAME ============ */
section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 120px 40px;
  position: relative;
}
section > :not(.section-caustics):not(.section-watermark):not(.final-bg):not(.hero-pyramid) {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--magenta);
  box-shadow: 0 0 6px var(--magenta);
}
.eyebrow .idx { color: var(--magenta); }
.eyebrow .sep { color: var(--ink-4); }

h1, h2, h3 { margin: 0; }

/* ============ SECTION WATERMARK ============ */
.section-watermark {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: min(820px, 90vw);
  height: 820px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0.78) contrast(1.05);
  -webkit-mask-image:
    radial-gradient(circle at 50% 50%, #000 12%, rgba(0,0,0,0.6) 38%, transparent 68%),
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    radial-gradient(circle at 50% 50%, #000 12%, rgba(0,0,0,0.6) 38%, transparent 68%),
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
          mask-composite: intersect;
}
.section-watermark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
#why > .eyebrow,
#why > .section-header,
#why > .why-grid { position: relative; z-index: 2; }
#why { overflow: hidden; padding-top: 100px; }
#why > .eyebrow { margin-bottom: 40px; }
#why > .section-header { margin-bottom: 160px; }
#why .section-watermark { top: 40%; }

/* ============ HERO ============ */
.hero {
  min-height: 92vh; min-height: 92svh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 80%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 28% 30%, rgba(123,44,191,0.32) 0%, rgba(74,22,104,0.16) 28%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 78% 38%, rgba(0,229,208,0.18) 0%, rgba(11,102,106,0.14) 30%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(42,10,64,0.5) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: -80px;
  height: 360px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(13,17,23,0.4) 35%, var(--bg) 80%);
  z-index: 1;
}
.hero-pyramid {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 780px;
  height: 780px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 60px rgba(123,44,191,0.35));
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 12%, rgba(0,0,0,0.6) 38%, transparent 68%);
          mask-image: radial-gradient(circle at 50% 50%, #000 12%, rgba(0,0,0,0.6) 38%, transparent 68%);
}
.hero-pyramid img { width: 100%; height: 100%; object-fit: contain; }
.hero-inner { position: relative; z-index: 2; max-width: 980px; }

.hero-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-tag .pill {
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  color: var(--magenta);
  border-color: rgba(123,44,191,0.45);
  background: rgba(123,44,191,0.07);
}

h1.hero-title {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 12vw, 196px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
h1.hero-title .l1 { color: var(--ink); display: block; }
h1.hero-title .l2 {
  display: block;
  color: var(--magenta);
  text-shadow:
    0 0 32px rgba(123,44,191,0.5),
    0 0 80px rgba(123,44,191,0.22);
}
h1.hero-title .l3 {
  display: block;
  color: var(--ink);
  -webkit-text-stroke: 1.5px var(--teal);
  color: transparent;
}

.hero-credit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
  max-width: 700px;
  margin-bottom: 48px;
  border-left: 1px solid var(--teal);
  padding-left: 20px;
}
.hero-credit b { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============ BUTTONS ============ */
.btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}
.btn:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--ink);
  box-shadow: 0 0 32px rgba(123,44,191,0.45);
}
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 24px rgba(0,229,208,0.3);
}

.btn-cyan {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 22px 36px;
  font-size: 14px;
  letter-spacing: 0.18em;
  box-shadow:
    0 0 0 1px rgba(0,229,208,0.0),
    0 0 24px rgba(0,229,208,0.18),
    inset 0 0 24px rgba(0,229,208,0.06);
  text-shadow: 0 0 12px rgba(0,229,208,0.4);
}
.btn-cyan:hover {
  background: rgba(0,229,208,0.06);
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 32px rgba(0,229,208,0.55);
  animation: btnCyanPulse 1.6s ease-in-out infinite;
}
.btn-cyan .arrow { color: var(--teal); }
.btn-cyan.btn-cyan-xl {
  padding: 28px 48px;
  font-size: 16px;
  letter-spacing: 0.2em;
}
@keyframes btnCyanPulse {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(0,229,208,0.45),
      0 0 48px rgba(0,229,208,0.18),
      inset 0 0 24px rgba(0,229,208,0.06);
  }
  50% {
    box-shadow:
      0 0 40px rgba(0,229,208,0.85),
      0 0 96px rgba(0,229,208,0.35),
      inset 0 0 32px rgba(0,229,208,0.14);
  }
}

/* ============ WHO THIS IS FOR ============ */
.who-body {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
  text-align: left;
  border-left: 1px solid var(--teal);
  padding-left: 24px;
}
.who-body p { margin: 0 0 24px; }
.who-body p:last-child { margin-bottom: 0; }
.who-body b { color: var(--ink); font-weight: 600; }
.who-body .pull {
  display: block;
  margin: 36px 0;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-align: center;
}
.who-body .pull em {
  font-style: normal;
  color: var(--magenta);
  text-shadow: 0 0 18px rgba(123,44,191,0.4);
}
.who-head .stamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.who-head .stamp svg { width: 14px; height: 14px; opacity: 0.7; }

/* ============ TIERS ============ */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
  gap: 28px;
}
.section-header h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 1000px;
  text-align: center;
}
.section-header h2 em {
  font-style: normal;
  color: var(--teal);
}
.section-header .aside {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  max-width: 520px;
  line-height: 1.7;
}
section:has(> .section-header) > .eyebrow {
  justify-content: center;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding: 36px 32px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, box-shadow 0.3s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(255,255,255,0.02) inset,
    0 24px 60px rgba(0,0,0,0.45);
  overflow: hidden;
  isolation: isolate;
}

/* Water caustics */
.tier-caustics {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden; opacity: 0.42; mix-blend-mode: screen;
}
.tier-caustics::before {
  content: ""; position: absolute; inset: -40%;
  filter: blur(22px);
  animation: wcAmb 20s ease-in-out infinite;
  will-change: transform;
}
.tier-caustics::after { display: none; }
.tier-caustics-hot { display: none; }

.tier:nth-of-type(1) .tier-caustics::before {
  background:
    radial-gradient(ellipse 55% 45% at 24% 30%, rgba(163,92,217,0.70), transparent 62%),
    radial-gradient(ellipse 45% 55% at 70% 65%, rgba(0,229,208,0.52), transparent 62%),
    radial-gradient(ellipse 50% 40% at 44% 90%, rgba(123,44,191,0.58), transparent 60%);
  animation-delay: 0s; animation-duration: 20s;
}
.tier:nth-of-type(2) .tier-caustics::before {
  background:
    radial-gradient(ellipse 52% 44% at 52% 24%, rgba(163,92,217,0.72), transparent 62%),
    radial-gradient(ellipse 44% 52% at 22% 68%, rgba(123,44,191,0.60), transparent 62%),
    radial-gradient(ellipse 48% 40% at 80% 58%, rgba(163,92,217,0.50), transparent 60%);
  animation-delay: -7s; animation-duration: 24s;
}
.tier:nth-of-type(3) .tier-caustics::before {
  background:
    radial-gradient(ellipse 50% 56% at 76% 22%, rgba(0,229,208,0.62), transparent 62%),
    radial-gradient(ellipse 48% 42% at 26% 64%, rgba(123,44,191,0.52), transparent 62%),
    radial-gradient(ellipse 42% 50% at 54% 90%, rgba(0,229,208,0.45), transparent 60%);
  animation-delay: -13s; animation-duration: 17s;
}

@keyframes wcAmb {
  0%   { transform: translate(0%,  0%)  scale(1.00); }
  33%  { transform: translate(3%, -4%)  scale(1.04); }
  67%  { transform: translate(-4%, 3%)  scale(0.96); }
  100% { transform: translate(0%,  0%)  scale(1.00); }
}

.tier::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  z-index: 1;
}
.tier > *:not(.tier-caustics) { position: relative; z-index: 2; }
.tier::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  z-index: 3;
}
.tier[data-accent="teal"]::before { background: var(--teal); box-shadow: 0 0 16px var(--teal); }
.tier[data-accent="magenta"]::before { background: var(--magenta); box-shadow: 0 0 16px var(--magenta); }
.tier[data-accent="cyan"]::before { background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.tier:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.tier:hover::before { opacity: 1; }
.tier:hover .tier-caustics { opacity: 0.75; }
@media (prefers-reduced-motion: reduce) {
  .tier-caustics::before,
  .tier-caustics::after,
  .tier-caustics-hot { animation: none; }
}

.tier .tier-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
}
.tier[data-accent="teal"] .tier-head .num { color: var(--teal); text-shadow: 0 0 12px rgba(0,229,208,0.55); }
.tier[data-accent="magenta"] .tier-head .num { color: var(--purple-hi); text-shadow: 0 0 12px rgba(163,92,217,0.55); }
.tier[data-accent="cyan"] .tier-head .num { color: var(--cyan); text-shadow: 0 0 12px rgba(0,229,208,0.55); }
.tier .recommended {
  padding: 8px 14px;
  border: 1.5px solid rgba(163,92,217,0.7);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(163,92,217,0.28) 0%, rgba(123,44,191,0.16) 100%);
  backdrop-filter: blur(10px) saturate(1.6);
  -webkit-backdrop-filter: blur(10px) saturate(1.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: 0 0 10px rgba(163,92,217,0.7);
  box-shadow:
    0 0 18px rgba(163,92,217,0.45),
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  border-radius: 2px;
  animation: recommendedPulse 3.4s ease-in-out infinite;
}
@keyframes recommendedPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(163,92,217,0.4), 0 1px 0 rgba(255,255,255,0.18) inset, 0 -1px 0 rgba(0,0,0,0.2) inset; }
  50%      { box-shadow: 0 0 30px rgba(163,92,217,0.75), 0 1px 0 rgba(255,255,255,0.25) inset, 0 -1px 0 rgba(0,0,0,0.2) inset; }
}

.tier h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink);
  text-align: center;
  text-shadow:
    0 0 18px rgba(123,44,191,0.65),
    0 0 36px rgba(123,44,191,0.35);
}
.tier .emoji { font-size: 24px; vertical-align: -3px; margin-left: 6px; filter: saturate(0.7); }
.tier .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  text-align: center;
}
.tier[data-accent="magenta"] .price { color: var(--teal); text-shadow: 0 0 20px rgba(0,229,208,0.75), 0 0 50px rgba(0,229,208,0.35); }
.tier .price-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
  text-align: center;
}

.tier .best-for {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
  text-align: center;
}
.tier .best-for-body {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 28px;
  text-align: center;
}

.tier .divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 24px;
}

.tier ul.deliv {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tier ul.deliv li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}
.tier ul.deliv li::before {
  content: "+";
  position: absolute;
  left: 0;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-3);
  font-weight: 600;
}
.tier[data-accent="teal"] ul.deliv li::before { color: var(--teal); }
.tier[data-accent="magenta"] ul.deliv li::before { color: var(--magenta); }
.tier[data-accent="cyan"] ul.deliv li::before { color: var(--cyan); }

.tier .turn {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}
.tier .turn b { color: var(--ink); font-weight: 600; }

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto 1fr;
  gap: 32px;
}
.why-card {
  padding-top: 32px;
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / span 4;
  gap: 0;
}
.why-card .big {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 88px;
  line-height: 0.85;
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-card .big-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.why-card h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  align-self: end;
}
.why-card p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

/* ============ SECTION CAUSTICS ============ */
.section-caustics {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.6;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 68%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 68%, transparent 100%);
}
.section-caustics::before,
.section-caustics::after {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 30% 35% at 18% 28%, rgba(123,44,191,0.75), transparent 55%),
    radial-gradient(ellipse 24% 30% at 75% 62%, rgba(0,229,208,0.5), transparent 55%),
    radial-gradient(ellipse 38% 24% at 52% 88%, rgba(163,92,217,0.45), transparent 55%),
    radial-gradient(ellipse 18% 26% at 88% 12%, rgba(0,229,208,0.35), transparent 60%);
  filter: blur(70px);
  animation: sectionCausticsA 34s ease-in-out infinite alternate;
  will-change: transform;
}
.section-caustics::after {
  background:
    radial-gradient(ellipse 26% 32% at 80% 18%, rgba(123,44,191,0.55), transparent 55%),
    radial-gradient(ellipse 34% 26% at 18% 72%, rgba(0,229,208,0.45), transparent 55%),
    radial-gradient(ellipse 22% 30% at 58% 48%, rgba(163,92,217,0.4), transparent 55%);
  filter: blur(90px);
  animation: sectionCausticsB 44s ease-in-out infinite alternate;
  animation-delay: -16s;
  opacity: 0.85;
}
@keyframes sectionCausticsA {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(3%, -3%) rotate(6deg) scale(1.06); }
  100% { transform: translate(6%, -5%) rotate(12deg) scale(1.1); }
}
@keyframes sectionCausticsB {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1.05); }
  50%  { transform: translate(-4%, 4%) rotate(-7deg) scale(1.1); }
  100% { transform: translate(-7%, 6%) rotate(-13deg) scale(1.15); }
}

#how, #who { overflow: hidden; }
#how > .eyebrow,
#how > .section-header,
#how > .how,
#who > .eyebrow,
#who > .section-header,
#who > .who-body { position: relative; z-index: 2; }

/* ============ HOW IT WORKS ============ */
.how {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.how-row {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.2s ease;
}
.how-row:hover { background: rgba(123,44,191,0.08); }
.how-row .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--magenta);
  letter-spacing: 0.15em;
  font-weight: 600;
}
.how-row .label {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 32px;
  line-height: 0.95;
  color: var(--ink);
  text-transform: uppercase;
}
.how-row .body {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

/* ============ DONT ============ */
.dont-wrap {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(123,44,191,0.05) 0%, transparent 60%),
    linear-gradient(135deg, rgba(42,10,64,0.18) 0%, transparent 50%);
  padding: 64px;
}
.dont-intro {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 auto 48px;
  max-width: 580px;
  line-height: 1.7;
  text-align: center;
}
ul.dont-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
ul.dont-list li {
  padding-left: 0;
  padding-top: 56px;
  position: relative;
  text-align: center;
}
ul.dont-list li::before {
  content: "✕";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--warn);
  color: var(--warn);
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  background: rgba(123,44,191,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 16px rgba(123,44,191,0.35);
}
ul.dont-list li h4 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  text-align: center;
}
ul.dont-list li p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item .q-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-shadow:
    0 0 12px rgba(0,229,208,0.7),
    0 0 28px rgba(0,229,208,0.35);
  padding: 6px 14px;
  border: 1px solid rgba(0,229,208,0.4);
  background: rgba(0,229,208,0.06);
  border-radius: 2px;
}
.faq-item h4 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  max-width: 760px;
}
.faq-item p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

/* ============ FINAL CTA ============ */
.final {
  text-align: center;
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
}
.final-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.final-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(22%) scale(1.12);
  transform-origin: center top;
  filter: brightness(0.55) contrast(1.05) saturate(0.7);
  opacity: 0.78;
  -webkit-mask-image:
    radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, rgba(0,0,0,0.6) 60%, transparent 92%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, rgba(0,0,0,0.6) 60%, transparent 92%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-composite: intersect;
}
.final-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(13,17,23,0.18) 0%, rgba(13,17,23,0.6) 75%),
    linear-gradient(180deg, var(--bg) 0%, transparent 22%, transparent 78%, var(--bg) 100%),
    linear-gradient(135deg, rgba(123,44,191,0.18) 0%, rgba(0,229,208,0.05) 100%);
  mix-blend-mode: normal;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(123,44,191,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(0,229,208,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at center, rgba(42,10,64,0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.final-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.final .pyramid-mark {
  width: 88px; height: 88px;
  margin: 0 auto 32px;
  opacity: 0.95;
  filter: drop-shadow(0 0 24px rgba(123,44,191,0.4));
}
.final .pyramid-mark img { width: 100%; height: 100%; object-fit: contain; }
.final h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.final h2 em {
  font-style: normal;
  color: var(--magenta);
  text-shadow: 0 0 40px rgba(123,44,191,0.5);
}
.final .lead {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 48px;
}
.final .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final .contact {
  margin-top: 56px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.final .contact a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.final .contact a:hover { border-color: var(--teal); }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  gap: 32px;
  flex-wrap: wrap;
}
footer .brand { display: flex; align-items: center; gap: 12px; color: var(--ink-2); }
footer .brand svg, footer .brand img { width: 22px; height: 22px; object-fit: contain; }
footer .links { display: flex; gap: 28px; flex-wrap: wrap; }
.mobile-cross-link { display: none; }

/* ============ LISTEN SECTION SCROLL HINT ============ */
.listen-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-top: 52px; cursor: pointer;
  position: relative; z-index: 2;
  transition: opacity 0.5s ease;
}

/* ============ SCROLL INDICATOR ============ */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; z-index: 3;
  transition: opacity 0.5s ease;
}
.hero-scroll.hidden, .listen-scroll.hidden { opacity: 0; pointer-events: none; }
.hero-scroll-track {
  width: 1px; height: 52px;
  background: rgba(0,229,208,0.18);
  position: relative; overflow: hidden; border-radius: 1px;
}
.hero-scroll-dot {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 14px;
  background: var(--teal); border-radius: 2px;
  box-shadow: 0 0 6px var(--teal);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
.hero-scroll-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(0,229,208,0.45);
}
@keyframes scrollDrop {
  0%   { top: -14px; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.9; }
  100% { top: 52px;  opacity: 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  section { padding: 80px 28px; }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .tiers { grid-template-columns: 1fr; }
  .how-row { grid-template-columns: 60px 1fr; }
  .how-row .body { grid-column: 1 / -1; padding-left: 100px; }
  ul.dont-list { grid-template-columns: 1fr; }
  .dont-wrap { padding: 40px 28px; }
  nav.top { padding: 14px 24px; }
  nav.top .meta { display: none; }
  .hero-pyramid { display: none; }
}
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .mobile-cross-link { display: block; margin-top: 28px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; text-align: center; }
  .mobile-cross-link a { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(0,229,208,0.3); padding-bottom: 2px; }
  footer { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; gap: 20px; }
  footer .links { justify-content: center; gap: 14px 20px; }
  section { padding: 60px 20px; }
  .hero { min-height: 80vh; min-height: 80svh; }
  #why { padding-top: 80px; position: relative; }
  #why > .eyebrow { margin-bottom: 16px; }
  #why > .section-header { margin-bottom: 60px; }
  #why .section-watermark { top: 240px; opacity: 0.32; }
  .why-grid { display: block; }
  .why-card { display: block; grid-row: auto; margin-bottom: 48px; padding-top: 16px; }
  .why-card:last-child { margin-bottom: 0; }
  .why-card .big { font-size: 64px; }
  .why-card p { font-size: 17px; line-height: 1.7; }
  .section-watermark { opacity: 0.22; }
  .tiers { grid-template-columns: 1fr; }
  ul.dont-list { grid-template-columns: 1fr; }
  ul.dont-list li p { font-size: 17px; line-height: 1.7; }
  .dont-wrap { padding: 40px 20px; }
  .how-row { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .how-row .body { padding-left: 0; text-align: center; }
  .how-row .body p { font-size: 17px; line-height: 1.7; }
  .how-row .label { font-size: 26px; }
  .eyebrow { justify-content: center; text-align: center; }
  .section-header { text-align: center; align-items: center; flex-direction: column; }
  .section-header .aside { text-align: center; max-width: none; }
  h1.hero-title { font-size: clamp(44px, 13vw, 72px); }
  .hero-credit { font-size: 13px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; text-align: center; justify-content: center; }
  nav.top { padding: 14px 20px; justify-content: center; }
  nav.top .meta { display: none; }
  nav.top .brand .crumbs {
    font-size: 8.5px;
    letter-spacing: 0.05em;
    max-width: 72vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-scroll {
    position: relative;
    bottom: auto; left: auto;
    transform: none;
    margin-top: 40px;
    align-self: center;
  }
  .faq-item { grid-template-columns: 1fr; gap: 8px; }
  .faq-item h4 { font-size: 20px; }
}

/* ============ SCROLL PROGRESS BAR ============ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--magenta), var(--teal));
  box-shadow: 0 0 8px rgba(0,229,208,0.6);
  z-index: 1000;
  pointer-events: none;
  transition: width 0.05s linear;
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot {
  position: fixed;
  left: 0; top: 0;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-200px, -200px, 0);
  box-shadow: 0 0 10px var(--teal), 0 0 24px rgba(0,229,208,0.4);
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  left: 0; top: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,229,208,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-200px, -200px, 0);
  transition: scale 0.25s ease, border-color 0.25s ease;
}
.cursor-ring.over-link {
  scale: 1.44;
  border-color: rgba(123,44,191,0.55);
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============ PAGE LOAD OVERLAY ============ */
#page-loader {
  position: fixed;
  inset: 0;
  background: #030507;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#page-loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 52px; height: 52px;
  opacity: 0;
  animation: ldFadeIn 0.5s ease 0.15s forwards;
  filter: drop-shadow(0 0 18px rgba(0,229,208,0.4));
}
.loader-logo img {
  width: 100%; height: 100%; object-fit: contain;
  -webkit-mask-image: radial-gradient(ellipse 68% 68% at 50% 50%, black 38%, transparent 72%);
  mask-image: radial-gradient(ellipse 68% 68% at 50% 50%, black 38%, transparent 72%);
}
.loader-track {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
  opacity: 0;
  animation: ldFadeIn 0.4s ease 0.4s forwards;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--magenta), var(--teal));
  box-shadow: 0 0 8px var(--teal);
  width: 0;
  animation: ldFill 1.4s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;
}
.loader-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  animation: ldFadeIn 0.4s ease 0.6s forwards;
}
@keyframes ldFadeIn { to { opacity: 1; } }
@keyframes ldFill { 0% { width: 0; } 100% { width: 100%; } }

/* ============ HERO STAGGER-IN ============ */
.hero-tag,
.hero-title .l1,
.hero-title .l2,
.hero-title .l3,
.hero-credit,
.hero-cta-row {
  opacity: 0;
  transform: translateY(24px);
}
.site-ready .hero-tag      { animation: hReveal 0.65s ease 0.1s  forwards; }
.site-ready .hero-title .l1 { animation: hReveal 0.65s ease 0.28s forwards; }
.site-ready .hero-title .l2 { animation: hReveal 0.65s ease 0.43s forwards; }
.site-ready .hero-title .l3 { animation: hReveal 0.65s ease 0.58s forwards; }
.site-ready .hero-credit    { animation: hReveal 0.65s ease 0.73s forwards; }
.site-ready .hero-cta-row   { animation: hReveal 0.65s ease 0.88s forwards; }
@keyframes hReveal { to { opacity: 1; transform: translateY(0); } }

/* ============ GLITCH ON .l3 ============ */
.hero-title .l3 { position: relative; }
.hero-title .l3::before,
.hero-title .l3::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  color: transparent;
  pointer-events: none;
  -webkit-text-stroke: 1.5px var(--teal);
}
.hero-title .l3::before {
  -webkit-text-stroke: 1.5px rgba(123,44,191,0.7);
  clip-path: polygon(0 18%, 100% 18%, 100% 40%, 0 40%);
  animation: glitchA 6s infinite 3s;
}
.hero-title .l3::after {
  -webkit-text-stroke: 1.5px rgba(0,229,208,0.6);
  clip-path: polygon(0 58%, 100% 58%, 100% 78%, 0 78%);
  animation: glitchB 6s infinite 3.6s;
}
@keyframes glitchA {
  0%,90%,100% { transform: none; opacity: 0; }
  91% { transform: translateX(-5px); opacity: 1; clip-path: polygon(0 10%,100% 10%,100% 32%,0 32%); }
  93% { transform: translateX(3px);  opacity: 1; clip-path: polygon(0 42%,100% 42%,100% 62%,0 62%); }
  96% { transform: translateX(-2px); opacity: 1; clip-path: polygon(0 66%,100% 66%,100% 82%,0 82%); }
}
@keyframes glitchB {
  0%,90%,100% { transform: none; opacity: 0; }
  91% { transform: translateX(5px);  opacity: 1; clip-path: polygon(0 54%,100% 54%,100% 74%,0 74%); }
  93% { transform: translateX(-3px); opacity: 1; clip-path: polygon(0 22%,100% 22%,100% 42%,0 42%); }
  96% { transform: translateX(2px);  opacity: 1; clip-path: polygon(0 72%,100% 72%,100% 92%,0 92%); }
}

/* ============ SOUND WAVE ============ */
.sound-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  vertical-align: middle;
  margin-left: 8px;
}
.sound-wave b {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: var(--teal);
  box-shadow: 0 0 4px rgba(0,229,208,0.7);
  animation: swBar 1.2s ease-in-out infinite;
}
.sound-wave b:nth-child(1) { height: 4px;  animation-delay: 0s;    }
.sound-wave b:nth-child(2) { height: 10px; animation-delay: 0.18s; }
.sound-wave b:nth-child(3) { height: 14px; animation-delay: 0.36s; }
.sound-wave b:nth-child(4) { height: 8px;  animation-delay: 0.54s; }
.sound-wave b:nth-child(5) { height: 12px; animation-delay: 0.72s; }
@keyframes swBar {
  0%,100% { transform: scaleY(0.25); opacity: 0.35; }
  50%     { transform: scaleY(1);    opacity: 1; }
}

/* ============ SCROLL REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal="up"]    { transform: translateY(32px); }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="scale"] { transform: scale(0.93); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============ HOW ROWS ============ */
.how-row {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.2s ease;
}
.how-row.is-visible { opacity: 1; transform: none; }

/* ============ FAQ ACCORDION ============ */
.faq-item {
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
  gap: 0;
}
.faq-item:hover { background: rgba(0,229,208,0.025); }
.faq-item .q-num  { margin-bottom: 14px; transition: color 0.2s, border-color 0.2s, background 0.2s, text-shadow 0.2s; }
.faq-item h4      { margin-bottom: 0; }
.faq-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}
.faq-item.faq-open p {
  max-height: 400px;
  opacity: 1;
  margin-top: 14px;
}
.faq-item.faq-open .q-num {
  color: var(--magenta);
  border-color: rgba(123,44,191,0.5);
  background: rgba(123,44,191,0.08);
  text-shadow: 0 0 12px rgba(123,44,191,0.5);
}

/* ============ PULSE DOT ============ */
nav.top .meta .dot {
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 6px var(--teal); transform: scale(1); }
  50%     { box-shadow: 0 0 14px var(--teal), 0 0 30px rgba(0,229,208,0.25); transform: scale(1.35); }
}

/* ============ DISCO PLAYER ============ */
#listen { overflow: hidden; }
#listen > .eyebrow,
#listen > .section-header,
#listen > .disco-wrap { position: relative; z-index: 2; }
#listen .disco-wrap {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
  box-shadow:
    0 0 0 1px rgba(0,229,208,0.04) inset,
    0 8px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}
#listen .disco-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,208,0.4), transparent);
  z-index: 3;
  pointer-events: none;
}
#listen .disco-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  background: var(--bg);
}

/* ============ SECTION REVEAL RIPPLE ============ */
.reveal-ripple {
  position: fixed;
  pointer-events: none;
  z-index: 500;
  top: 0; left: 0;
  width: 0; height: 0;
}
.reveal-ring {
  position: absolute;
  top: 0; left: 0;
  width: 1400px; height: 1400px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  border: 1.5px solid rgba(0,229,208,0.65);
  animation: ringExpand 1.5s cubic-bezier(0.15, 0.5, 0.25, 1) forwards;
}
.reveal-ring:nth-child(2) {
  border-color: rgba(123,44,191,0.55);
  animation-delay: 0.14s;
}
.reveal-ring:nth-child(3) {
  border-color: rgba(0,229,208,0.3);
  animation-delay: 0.28s;
}
@keyframes ringExpand {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  60%  { opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-dot { animation: none; top: 18px; }
  [data-reveal], .how-row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-tag, .hero-title .l1, .hero-title .l2,
  .hero-title .l3, .hero-credit, .hero-cta-row {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .sound-wave b, .cursor-dot, .cursor-ring, .reveal-ripple { display: none !important; }
  nav.top .meta .dot { animation: none; }
  #page-loader { display: none !important; }
}

/* ============ NAV LINK (cross-page routing) ============ */
nav.top .meta .nav-link {
  color: var(--ink-3);
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: color 0.15s ease;
}
nav.top .meta .nav-link:hover { color: var(--teal); }

/* ============ COACHING CROSS-PROMO (mix page) ============ */
.coaching-promo {
  text-align: center;
  padding: 32px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, rgba(0,229,208,0.03), transparent);
}
.coaching-promo a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.15s ease;
}
.coaching-promo a:hover { color: var(--teal); }
.coaching-promo a span { color: var(--teal); }

/* ============ FOOTER LINKS ============ */
footer .links a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.15s ease;
}

/* ============================== TESTIMONIAL PULL QUOTES ============================== */
/* 4 typographic moments between sections on /coaching.
   Not a section header. Not a card. Not a grid.
   Single column, centered, max-width 720px, breathing room between sections. */

.testimonial-pull {
  display: block;
  width: 100%;
  padding: 80px 24px;
  background: transparent;
}

.testimonial-pull-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-pull .quote-mark {
  display: block;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--teal);
  margin: 0;
  font-weight: 400;
}

.testimonial-pull .quote-mark-open { margin-bottom: 12px; }
.testimonial-pull .quote-mark-close { margin-top: 12px; }

.testimonial-pull blockquote {
  font-family: 'JetBrains Mono', monospace;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--teal);
  margin: 0;
  padding: 0;
  text-align: center;
  text-wrap: balance;
  border-left: 0;
}

.testimonial-pull cite {
  display: block;
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.55;
}

@media (max-width: 768px) {
  .testimonial-pull { padding: 56px 20px; }
  .testimonial-pull .quote-mark { font-size: 48px; }
  .testimonial-pull blockquote { font-size: 15px; line-height: 1.65; }
  .testimonial-pull cite { font-size: 10px; margin-top: 22px; }
}
/* ============================== END TESTIMONIAL PULL QUOTES ============================== */
footer .links a:hover { color: var(--teal); }
