@import url('assets/colors_and_type.css');

/* ============================================================================
   METANOIA LANDING — base + universal stage
   ============================================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  background: var(--canvas-black);
  color: var(--fg1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; }

/* ===== Universal stage background ===== */
.stage-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: var(--canvas-black);
}
.v3-landing > nav,
.v3-landing > header,
.v3-landing > section,
.v3-landing > footer,
.v3-landing > .section-divider {
  position: relative;
  z-index: 1;
}
.stage-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transition: opacity 1100ms var(--ease-out-soft), transform 1600ms var(--ease-out-soft);
  will-change: opacity, transform;
}
.stage-halo-1 {
  top: -10%; left: -8%;
  width: 80vmin; height: 80vmin;
  background: radial-gradient(circle, rgba(60, 194, 221, 0.30) 0%, transparent 60%);
  opacity: 0;
}
.stage-halo-2 {
  top: 18%; left: 28%;
  width: 90vmin; height: 90vmin;
  background: radial-gradient(circle, rgba(167, 57, 226, 0.30) 0%, transparent 60%);
  opacity: 0;
}
.stage-halo-3 {
  bottom: -10%; right: -8%;
  width: 80vmin; height: 80vmin;
  background: radial-gradient(circle, rgba(245, 140, 86, 0.30) 0%, transparent 60%);
  opacity: 0;
}
.stage-bg[data-phase="1"] .stage-halo-1 { opacity: 0.90; transform: scale(1.04); }
.stage-bg[data-phase="1"] .stage-halo-2 { opacity: 0.35; }
.stage-bg[data-phase="1"] .stage-halo-3 { opacity: 0.05; }
.stage-bg[data-phase="2"] .stage-halo-1 { opacity: 0.30; }
.stage-bg[data-phase="2"] .stage-halo-2 { opacity: 0.95; transform: scale(1.06); }
.stage-bg[data-phase="2"] .stage-halo-3 { opacity: 0.30; }
.stage-bg[data-phase="3"] .stage-halo-1 { opacity: 0.05; }
.stage-bg[data-phase="3"] .stage-halo-2 { opacity: 0.35; }
.stage-bg[data-phase="3"] .stage-halo-3 { opacity: 0.90; transform: scale(1.04); }

.stage-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.085) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.45;
}
.stage-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, transparent 40%, rgba(11, 11, 21, 0.45) 100%);
}

/* ===== Section dividers ===== */
.section-divider {
  position: relative;
  width: 96px; height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.20) 25%,
    rgba(255,255,255,0.32) 50%,
    rgba(255,255,255,0.20) 75%,
    transparent 100%);
  box-shadow: 0 0 8px rgba(255,255,255,0.10);
}

/* ===== Scroll-margin for smooth anchor nav ===== */
section[data-phase],
header[data-phase] { scroll-margin-top: 24px; }

/* ===== Universal reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal[data-revealed] {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================================
   NAV
   ============================================================================ */
.nav {
  position: sticky; top: 16px; z-index: 50;
  width: min(1240px, calc(100% - 48px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(11,11,21,0.55);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
}
.nav .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 16px; letter-spacing: 0.28em; text-transform: uppercase;
}
.nav .brand .mark {
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
    rgba(255,255,255,0.95) 0%,
    var(--phase-1) 22%,
    var(--phase-2) 52%,
    var(--phase-3) 100%);
  box-shadow: 0 0 12px rgba(163,46,237,0.55);
}
.nav .links {
  display: flex; gap: 24px; font-size: 13px; font-weight: 500; color: var(--fg2);
}
.nav .links a { text-decoration: none; transition: color 160ms var(--ease-out-soft); }
.nav .links a:hover { color: var(--fg1); }
.nav .badge {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg3);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.nav .badge .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--phase-1);
  box-shadow: 0 0 8px var(--phase-1);
  animation: pulse-dot 2.4s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(60,194,221, 0.55); }
  100% { box-shadow: 0 0 0 8px rgba(60,194,221, 0); }
}
.nav .cta {
  background: var(--fg1); color: var(--canvas-ink);
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px;
  padding: 9px 18px; border-radius: 999px;
  border: 0; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center;
}

/* ============================================================================
   GLOBAL TYPE / WRAPPERS
   ============================================================================ */
.wrap { width: min(1240px, 100%); margin: 0 auto; padding: 0 48px; position: relative; }
.wrap-narrow { width: min(840px, 100%); margin: 0 auto; padding: 0 48px; position: relative; }

.section { padding: 140px 0; position: relative; }
.section--tight { padding: 100px 0; }

.divider {
  height: 2px; width: 64px; border-radius: 999px;
  background: var(--gradient-spectrum); margin: 0 auto 28px;
}
.eyebrow {
  display: inline-flex; flex-direction: column; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 40px;
}
.eyebrow .num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--eb-c, var(--brand-purple));
}
.eyebrow .num::after { content: none; }
.s-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 64px;
}
.s-head .eyebrow { justify-content: center; }
.h2 {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.025em;
}
.h2 .grad {
  background: var(--gradient-spectrum);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lede {
  margin: 24px auto 0;
  max-width: 720px;
  font-size: clamp(17px, 1.6vw, 19px); line-height: 1.6;
  color: var(--fg2); font-weight: 300;
  text-wrap: pretty;
}

/* ============================================================================
   HERO — radiant star sigil + cycling word
   ============================================================================ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: calc(100vh - 40px);
  display: flex; align-items: center;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero .greek {
  font-family: var(--font-display); font-weight: 400;
  font-size: 13px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.hero .greek::before {
  content: ''; width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--brand-purple), transparent);
}
.hero h1 {
  margin: 0 0 32px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(52px, 7vw, 108px); line-height: 0.98; letter-spacing: -0.035em;
}
.hero h1 .line-2 {
  display: block;
  background: linear-gradient(90deg, var(--phase-1) 0%, var(--phase-2) 50%, var(--phase-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.18em;
}
.hero .hero-sub {
  margin: 0 0 36px;
  max-width: 560px;
  font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6;
  color: var(--fg2); font-weight: 300;
}
.hero .hero-sub strong { color: var(--fg1); font-weight: 500; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg3);
}
.hero-meta .chip {
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.hero-meta .chip em {
  font-style: normal;
  background: var(--gradient-phases);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
}

/* Waitlist field */
.waitlist-field {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 6px 6px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  max-width: 480px;
  transition: border-color 240ms var(--ease-out-soft), background 240ms var(--ease-out-soft);
}
.waitlist-field:focus-within {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 4px rgba(167, 57, 226, 0.12);
}
.waitlist-field input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  color: var(--fg1);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 0;
}
.waitlist-field input::placeholder { color: var(--fg3); }
.btn-primary {
  background: var(--fg1); color: var(--canvas-ink);
  font-family: var(--font-body); font-weight: 700;
  font-size: 14px;
  padding: 11px 22px; border-radius: 999px;
  border: 0; cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow 240ms var(--ease-out-soft);
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-primary:hover { box-shadow: 0 0 0 4px rgba(255,255,255,0.12); }
.btn-ghost {
  background: transparent; color: var(--fg1);
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px;
  padding: 11px 22px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center;
  transition: border-color 240ms var(--ease-out-soft);
}
.btn-ghost:hover { border-color: var(--fg1); }

/* Cycling word at end of headline */
.hero-cycler {
  position: relative;
  display: inline-block;
  min-width: 5ch;
  padding-bottom: 0.30em;
  overflow: visible;
  vertical-align: baseline;
}
.hero-cycler-word {
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  padding-bottom: 0.24em;
  background: linear-gradient(90deg, var(--phase-1) 0%, var(--phase-2) 50%, var(--phase-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 760ms var(--ease-out-soft), transform 760ms var(--ease-out-soft);
  filter: drop-shadow(0 0 20px rgba(167, 57, 226, 0.25));
}
.hero-cycler-word[data-active] { opacity: 1; transform: translateY(0); }
.hero-cycler-word[data-id="0"] { position: relative; visibility: hidden; }
.hero-cycler-word[data-id="0"][data-active] { visibility: visible; }

/* Radiant Star Sigil */
.star-stage {
  position: relative; justify-self: center;
  width: clamp(380px, 44vw, 600px);
  aspect-ratio: 1;
  display: grid; place-items: center;
  container-type: inline-size;
}
.star-stage .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(167, 57, 226, 0.16);
  pointer-events: none;
}
.star-stage .ring.r1 { inset: 0; }
.star-stage .ring.r2 { inset: 16%; border-color: rgba(60, 194, 221, 0.18); border-style: dashed; animation: ring-rotate 60s linear infinite; }
.star-stage .ring.r3 { inset: 32%; border-color: rgba(245, 140, 86, 0.18); }
@keyframes ring-rotate {
  to { transform: rotate(360deg); }
}

.star-stage .core-orb {
  position: absolute;
  width: 22%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
    rgba(255,255,255,0.92) 0%,
    var(--phase-1) 22%,
    var(--phase-2) 52%,
    var(--phase-3) 88%,
    color-mix(in srgb, var(--phase-3) 70%, #000) 100%);
  box-shadow:
    0 0 28px rgba(60, 194, 221, 0.32),
    0 0 60px rgba(167, 57, 226, 0.42),
    0 0 80px rgba(245, 140, 86, 0.38);
  animation: orb-breathe 5.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.04); filter: brightness(1.08); }
}

/* SVG rays — emanating from center, full spectrum */
.star-stage svg.rays {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.star-stage svg.rays line {
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px currentColor);
}

/* 9 interactive nodes around the star */
.star-stage .node {
  position: absolute;
  top: 50%; left: 50%;
  --radius: 38cqw;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * var(--radius)))
    rotate(calc(-1 * var(--angle)));
  width: 32px; height: 32px;
  display: grid; place-items: center;
  text-decoration: none; color: inherit;
  z-index: 3;
  transition: transform 320ms var(--ease-out-soft);
}
.star-stage .node-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 0 0 var(--c), 0 0 10px var(--c);
  transition: box-shadow 320ms var(--ease-out-soft), transform 320ms var(--ease-out-soft);
}
.star-stage .node-label {
  position: absolute;
  white-space: nowrap;
  left: 50%; top: 50%;
  transform-origin: 0 0;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(-26px)
    rotate(calc(-1 * var(--angle)));
  font-family: var(--font-display); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg1);
  background: rgba(11, 11, 21, 0.92);
  border: 1px solid color-mix(in srgb, var(--c) 35%, rgba(255,255,255,0.06));
  padding: 6px 12px; border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms var(--ease-out-soft), transform 240ms var(--ease-out-soft);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 16px color-mix(in srgb, var(--c) 22%, transparent);
}
.star-stage .node:hover .node-dot,
.star-stage .node:focus-visible .node-dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c) 18%, transparent), 0 0 14px var(--c);
}
.star-stage .node:hover .node-label,
.star-stage .node:focus-visible .node-label { opacity: 1; }
.star-stage .node:focus { outline: none; }

/* ============================================================================
   SECTION — THE PROBLEM (2)
   ============================================================================ */
.problem .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem h2 {
  margin: 0 0 28px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.04; letter-spacing: -0.025em;
}
.problem .lede {
  margin: 0;
  text-align: left;
  font-size: 18px; line-height: 1.65; color: var(--fg2); font-weight: 300;
  max-width: 560px;
}
.problem .lede em {
  font-style: normal;
  background: var(--gradient-phases);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.problem-stack {
  display: grid;
  gap: 12px;
}
.problem-row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display); font-weight: 400;
  font-size: 18px; line-height: 1.3;
  color: var(--fg1);
}
.problem-row::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 10px var(--c);
}
.problem-row span { color: var(--fg3); margin-left: 6px; }

/* ============================================================================
   SECTION — THE INSIGHT (3)
   ============================================================================ */
.insight {
  text-align: center;
}
.insight .wrap-narrow { max-width: 920px; }
.insight .h2 {
  margin-bottom: 32px;
  text-wrap: balance;
}
.insight-quote {
  margin: 56px auto 0;
  max-width: 760px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.25; letter-spacing: -0.015em;
  color: var(--fg1);
  position: relative;
  padding: 32px 40px;
}
.insight-quote::before,
.insight-quote::after {
  position: absolute;
  font-family: var(--font-display);
  font-size: 96px; line-height: 1;
  color: var(--brand-purple); opacity: 0.45;
}
.insight-quote::before { content: '“'; top: 12px; left: -8px; }
.insight-quote::after  { content: '”'; bottom: 0; right: -8px; }
.insight-quote em {
  font-style: normal;
  background: var(--gradient-spectrum);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================================
   SECTION — THE SOLUTION (4)
   ============================================================================ */
.solution .s-head { max-width: 920px; }
.solution-stage {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.solution-copy {
  display: flex; flex-direction: column; gap: 22px;
}
.solution-copy p {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.3; letter-spacing: -0.015em;
  color: var(--fg1);
}
.solution-copy p .nope {
  color: var(--fg3);
  text-decoration: line-through;
  text-decoration-color: rgba(167, 57, 226, 0.45);
  text-decoration-thickness: 1px;
}
.solution-copy p.yes {
  color: var(--fg1);
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.solution-copy p.yes em {
  font-style: normal;
  background: var(--gradient-spectrum);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solution-flow {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}
.solution-flow .step {
  font-family: var(--font-display); font-weight: 400;
  font-size: 14px; letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--c) 40%, rgba(255,255,255,0.06));
  background: color-mix(in srgb, var(--c) 6%, transparent);
  color: var(--c);
}
.solution-flow .arrow { color: var(--fg3); font-size: 14px; }

.solution-diffs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.diff-chip {
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 240ms var(--ease-out-soft);
}
.diff-chip:hover { border-color: var(--c); }
.diff-chip .tag {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--c); font-weight: 600;
}
.diff-chip .name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 19px; letter-spacing: -0.01em;
  color: var(--fg1);
}
.diff-chip .desc {
  font-size: 13.5px; line-height: 1.55; color: var(--fg3); font-weight: 300;
}

/* ============================================================================
   SECTION — WHAT IS METANOIA (5)
   ============================================================================ */
.about {
  position: relative;
}
.about .wrap-narrow { max-width: 880px; }
.about .h2 { text-align: center; }
.about-body {
  margin: 64px auto 0;
  display: grid; gap: 32px;
  max-width: 760px;
  text-align: center;
}
.about-body p {
  margin: 0;
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(17px, 1.6vw, 19px); line-height: 1.7;
  color: var(--fg2);
}
.about-body p strong { color: var(--fg1); font-weight: 500; }
.about-body p em {
  font-style: normal;
  background: var(--gradient-phases);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.about-belief {
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em;
  color: var(--fg1) !important;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-pair {
  margin-top: 32px;
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
  font-size: clamp(20px, 2.2vw, 26px) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em;
  color: var(--fg1) !important;
}
.about-pair span {
  display: inline-block;
  padding: 4px 0;
}
.about-pair .vs { color: var(--fg3); padding: 0 6px; }

/* ============================================================================
   SECTION — HOW IT WORKS (6)
   ============================================================================ */
.how .s-head { max-width: 920px; }
.how-flow {
  max-width: 980px;
  margin: 0 auto 80px;
  padding: 24px 36px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center; gap: 8px 14px;
}
.how-flow .term {
  font-family: var(--font-display); font-weight: 400;
  font-size: 14px; letter-spacing: 0.04em;
  color: var(--c);
}
.how-flow .arrow { color: var(--fg3); font-size: 11px; }

.how-beats {
  max-width: 880px;
  margin: 0 auto;
  display: grid; gap: 0;
  position: relative;
}
.how-beats::before {
  content: '';
  position: absolute;
  left: 30px; top: 24px; bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg,
    var(--act-1) 0%, var(--act-2) 16%, var(--act-3) 32%,
    var(--act-4) 48%, var(--act-5) 64%, var(--act-6) 80%, var(--act-7) 100%);
  opacity: 0.35;
}
.how-beat {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.how-beat:last-child { border-bottom: 0; }
.how-beat .meta {
  display: flex; align-items: center; gap: 14px;
  padding-top: 4px;
  position: relative;
}
.how-beat .meta-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 32px; line-height: 1; letter-spacing: -0.025em;
  color: var(--c);
  padding-left: 48px;
  position: relative;
}
.how-beat .meta-num::before {
  content: '';
  position: absolute;
  left: 19px; top: 50%;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c);
  border: 3px solid var(--canvas-black);
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px var(--c), 0 0 12px var(--c);
}
.how-beat .body { display: grid; gap: 8px; max-width: 600px; }
.how-beat .name {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.015em; line-height: 1.1;
  color: var(--fg1);
}
.how-beat .detail {
  margin: 0;
  font-size: 15.5px; line-height: 1.6; color: var(--fg2); font-weight: 300;
}
.how-beat .detail em {
  font-style: normal; color: var(--c); font-weight: 500;
}

/* ============================================================================
   SECTION — SEVEN LIFE DOMAINS (7)
   ============================================================================ */
.domains .s-head { max-width: 920px; }
.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.domain-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 200px;
  overflow: hidden;
  transition: transform 240ms var(--ease-out-soft), border-color 240ms var(--ease-out-soft);
}
.domain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c);
  box-shadow: 0 0 14px var(--c);
}
.domain-card:hover { transform: translateY(-4px); border-color: var(--c); }
.domain-card .num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--c);
}
.domain-card .name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; letter-spacing: -0.015em; line-height: 1.1;
  color: var(--fg1);
  margin-top: auto;
}
.domain-card .desc {
  font-size: 13px; line-height: 1.55; color: var(--fg3); font-weight: 300;
}
.domain-card.anchor {
  grid-column: span 4;
  background: linear-gradient(135deg, rgba(60,194,221,0.05), rgba(167,57,226,0.08), rgba(245,140,86,0.05));
  border-color: rgba(167,57,226,0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  min-height: auto;
}
.domain-card.anchor::before { display: none; }
.domain-card.anchor .name {
  font-size: 32px;
}

/* ============================================================================
   SECTION — MOMENTUM MODEL (8)
   ============================================================================ */
.momentum .s-head { max-width: 920px; }
.momentum-balance {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
  display: grid; gap: 12px;
}
.momentum-balance p {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px); line-height: 1.35; letter-spacing: -0.01em;
  color: var(--fg2);
}
.momentum-balance p strong {
  color: var(--fg1);
  background: var(--gradient-phases);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.momentum-equation {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 32px 1fr;
  gap: 14px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.mq-card {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
}
.mq-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c);
  box-shadow: 0 0 14px var(--c);
}
.mq-card .tag {
  font-family: var(--font-display); font-weight: 600;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--c);
}
.mq-card .name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.02em; line-height: 1;
  color: var(--fg1);
}
.mq-card .desc {
  font-size: 14px; line-height: 1.6; color: var(--fg2); font-weight: 300;
}
.mq-op,
.mq-eq {
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 400;
  font-size: 32px; color: var(--fg3);
}
.mq-result {
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(60,194,221,0.10), rgba(167,57,226,0.14), rgba(245,140,86,0.10));
  border: 1px solid rgba(167,57,226,0.30);
  display: flex; flex-direction: column; gap: 10px; justify-content: center;
  position: relative; overflow: hidden;
}
.mq-result::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-spectrum);
  box-shadow: 0 0 14px rgba(167,57,226,0.45);
}
.mq-result .tag {
  font-family: var(--font-display); font-weight: 600;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg1);
}
.mq-result .name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px); letter-spacing: -0.02em; line-height: 1;
  background: var(--gradient-spectrum);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mq-result .desc {
  font-size: 14px; line-height: 1.6; color: var(--fg2); font-weight: 300;
}

/* ============================================================================
   SECTION — FINAL CTA (9)
   ============================================================================ */
.final-cta {
  text-align: center;
  position: relative;
  padding: 160px 0 100px;
}
.final-cta .wrap-narrow { max-width: 920px; }
.final-cta h2 {
  margin: 0 0 24px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.035em;
}
.final-cta h2 .grad {
  background: var(--gradient-spectrum);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta .sub {
  font-size: clamp(17px, 1.8vw, 21px); line-height: 1.55; color: var(--fg2);
  max-width: 620px; margin: 0 auto 48px; font-weight: 300;
}
.final-cta .triplet {
  display: inline-flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; align-items: baseline;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 48px auto 24px; max-width: 920px;
}
.final-cta .triplet span:not(.sep) em {
  font-style: normal; font-weight: 500;
}
.final-cta .triplet .a em { background: linear-gradient(90deg, var(--phase-1), color-mix(in srgb, var(--phase-1) 60%, white)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-cta .triplet .b em { background: linear-gradient(90deg, var(--phase-2), color-mix(in srgb, var(--phase-2) 60%, white)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-cta .triplet .c em { background: linear-gradient(90deg, var(--phase-3), color-mix(in srgb, var(--phase-3) 60%, white)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-cta .triplet .sep { color: var(--fg3); font-size: 0.6em; padding: 0 4px; }
.final-cta .caveat {
  margin: 0 auto 56px;
  max-width: 720px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(16px, 1.5vw, 18px); line-height: 1.5; letter-spacing: -0.005em;
  color: var(--fg3);
}
.final-cta .caveat em {
  font-style: normal;
  background: var(--gradient-spectrum);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.final-cta .waitlist-field {
  margin: 0 auto 18px;
  max-width: 520px;
}
.final-cta .ctas-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  align-items: center;
}
.final-cta .meta {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--font-body); font-size: 12px;
  color: var(--fg3); letter-spacing: 0.04em;
}
.final-cta .meta .item { display: flex; align-items: center; gap: 6px; }
.final-cta .meta .item::before {
  content: '✓'; color: var(--phase-1); font-size: 11px;
}
.final-cta .sig {
  margin-top: 80px;
  font-family: var(--font-display); font-weight: 400;
  font-size: 13px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--fg3);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
  position: relative;
  padding: 96px 0 32px;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer > .wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 48px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.footer .brand-block {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 360px;
}
.footer .brand-block .wordmark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 400;
  font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg1);
}
.footer .brand-block .wordmark .mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
    rgba(255,255,255,0.95) 0%,
    var(--phase-1) 22%,
    var(--phase-2) 52%,
    var(--phase-3) 100%);
  box-shadow: 0 0 14px rgba(167, 57, 226, 0.45), 0 0 22px rgba(245, 140, 86, 0.25);
}
.footer .brand-block p {
  margin: 0;
  font-size: 14px; line-height: 1.65; color: var(--fg3); font-weight: 300;
  max-width: 360px;
}
.footer h5 {
  margin: 0 0 18px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg2);
}
.footer a {
  display: block;
  text-decoration: none;
  font-family: var(--font-body); font-weight: 300;
  font-size: 14px; line-height: 1.85;
  color: var(--fg3);
  transition: color 200ms var(--ease-out-soft);
}
.footer a:hover { color: var(--fg1); }
.footer .bottom {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg3);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1000px) {
  .nav .links { display: none; }
  .hero .grid { grid-template-columns: 1fr; gap: 48px; }
  .star-stage { max-width: 480px; }
  .problem .grid { grid-template-columns: 1fr; gap: 32px; }
  .solution-stage { grid-template-columns: 1fr; gap: 32px; }
  .solution-diffs { grid-template-columns: 1fr; }
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
  .domain-card.anchor { grid-column: span 2; grid-template-columns: 1fr; gap: 16px; }
  .momentum-equation { grid-template-columns: 1fr; }
  .mq-op, .mq-eq { padding: 0; }
  .how-beat { grid-template-columns: 1fr; gap: 16px; }
  .how-beat .meta { padding-top: 0; }
  .how-beat .meta-num::before { left: 0; }
  .how-beat .meta-num { padding-left: 30px; font-size: 28px; }
  .how-beats::before { left: 6px; }
  .footer .grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer .brand-block { grid-column: span 2; }
  .footer .bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wrap, .wrap-narrow { padding: 0 24px; }
  .section { padding: 100px 0; }
  .hero { padding: 80px 0 60px; }
}
