/* ============================================================
   ZERO-CODE AI REPLIES — INTERCOM MASTERY FOR FOUNDERS
   Design system: "AI Command Center" theme
   Deep ink · Signal gold · Violet/Cyan gradients · Paper rhythm
   ============================================================ */

:root {
  /* palette */
  --ink: #08080f;
  --ink-2: #0c0c17;
  --ink-3: #10101d;
  --card: #131320;
  --card-2: #171728;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --paper: #f6f3ec;
  --paper-2: #fffdf7;
  --ink-text: #13131c;
  --dim: #9b9bab;
  --dim-paper: #5b5b68;
  --gold: #f5c518;
  --gold-soft: #ffd84d;
  --violet: #8b5cf6;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --green: #34d399;
  --red: #f87171;
  --grad-main: linear-gradient(120deg, #8b5cf6 0%, #3b82f6 45%, #22d3ee 100%);
  --grad-gold: linear-gradient(120deg, #ffd84d 0%, #f5c518 55%, #e0a800 100%);

  /* type */
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* misc */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 24px 60px -24px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 12px 40px -10px rgba(245, 197, 24, 0.45);
  --measure: 700px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: #e9e9f2;
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- typography helpers ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gold-text {
  color: var(--gold);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.82em;
  letter-spacing: 0.06em;
}

.dim {
  color: var(--dim);
}

.lead {
  font-size: 1.16rem;
  color: var(--dim);
  line-height: 1.6;
}

.section-pad {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
  position: relative;
}

.section-head {
  max-width: var(--measure);
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--dim);
  font-size: 1.05rem;
}

/* light sections */
.section--light {
  background: var(--paper);
  color: var(--ink-text);
}

.section--light .lead,
.section--light .dim {
  color: var(--dim-paper);
}

.section--light .eyebrow {
  color: #b8860b;
}

.section--light .eyebrow::before,
.section--light .eyebrow--center::after {
  background: #b8860b;
}

.section--light .card {
  background: #fff;
  border-color: #e7e1d4;
  box-shadow: 0 18px 44px -22px rgba(30, 25, 10, 0.18);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding: 18px 34px;
  border-radius: 14px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s;
  will-change: transform;
  position: relative;
}

.btn--gold {
  background: var(--grad-gold);
  color: #191203;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn--gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 54px -10px rgba(245, 197, 24, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn--gold.pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  border: 2px solid rgba(245, 197, 24, 0.55);
  animation: btnPulse 2.2s var(--ease) infinite;
  pointer-events: none;
}

.btn--grad {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 14px 40px -12px rgba(139, 92, 246, 0.55);
}

.btn--grad:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: #e9e9f2;
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  opacity: 0.75;
  letter-spacing: 0.01em;
  margin-top: 2px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.btn-note {
  font-size: 0.85rem;
  color: var(--dim);
  text-align: center;
  margin-top: 14px;
}

.btn-note strong {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- progress bar ---------- */
.progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: transparent;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--grad-main);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.8);
}

/* ---------- announcement marquee ---------- */
.ticker {
  background: var(--grad-gold);
  color: #191203;
  overflow: hidden;
  padding: 9px 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker__track span::after {
  content: "◆";
  margin-left: 48px;
  opacity: 0.6;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 3px;
  z-index: 150;
  background: rgba(8, 8, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  width: min(1140px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.nav__logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad-main);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(139, 92, 246, 0.7);
}

.nav__logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
}

.nav__links a {
  color: var(--dim);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  padding: 11px 20px;
  font-size: 0.9rem;
  border-radius: 11px;
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 90px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 12% -10%, rgba(139, 92, 246, 0.28), transparent 60%),
    radial-gradient(640px 420px at 88% 8%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(500px 400px at 55% 115%, rgba(245, 197, 24, 0.10), transparent 60%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero__badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--dim);
}

.hero__badge--hot {
  border-color: rgba(245, 197, 24, 0.45);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.08);
}

.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.55rem);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero h1 .strike {
  color: var(--dim);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}

.hero__sub {
  font-size: 1.12rem;
  color: var(--dim);
  max-width: 560px;
  margin-bottom: 30px;
  line-height: 1.65;
}

.hero__sub strong {
  color: #fff;
  font-weight: 600;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.hero__trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--dim);
}

.hero__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.hero__trustline .sep {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
}

/* hero chat demo */
.chat-demo {
  position: relative;
  background: linear-gradient(180deg, var(--card) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}

.chat-demo:hover {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.chat-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.chat-demo__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.chat-demo__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-main);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.chat-demo__meta {
  flex: 1;
  min-width: 0;
}

.chat-demo__meta strong {
  display: block;
  font-size: 0.86rem;
  font-family: var(--font-head);
}

.chat-demo__meta span {
  font-size: 0.72rem;
  color: var(--dim);
}

.chat-demo__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.chat-demo__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blink 1.6s infinite;
}

.chat-demo__body {
  padding: 20px 18px 14px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 86%;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  animation: msgIn 0.6s var(--ease) forwards;
}

.chat-msg--customer {
  align-self: flex-start;
  background: #1d1d30;
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  color: #e6e6f0;
}

.chat-msg--ai {
  align-self: flex-end;
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.16), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-bottom-right-radius: 5px;
  color: #f2f2fa;
}

.chat-msg__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 5px;
}

.chat-msg--ai .chat-msg__label {
  color: var(--cyan);
}

.chat-typing {
  align-self: flex-end;
  display: inline-flex;
  gap: 5px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-bottom-right-radius: 5px;
}

.chat-typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dim);
  animation: typing 1.2s infinite;
}

.chat-typing i:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing i:nth-child(3) {
  animation-delay: 0.3s;
}

.chat-demo__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.chat-demo__resolved {
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-demo__resolved::before {
  content: "✓";
  font-weight: 700;
}

.chat-demo__float {
  position: absolute;
  top: -16px;
  right: -14px;
  background: var(--grad-gold);
  color: #191203;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 9px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-gold);
  transform: rotate(3deg);
  z-index: 3;
  animation: floaty 4s ease-in-out infinite;
}

.chat-demo__float--2 {
  position: absolute;
  bottom: 64px;
  left: -18px;
  background: var(--card-2);
  border: 1px solid var(--line-strong);
  color: #fff;
  font-size: 0.72rem;
  padding: 8px 12px;
  border-radius: 10px;
  transform: rotate(-3deg);
  z-index: 3;
  box-shadow: var(--shadow-card);
  animation: floaty 5s ease-in-out infinite reverse;
}

.chat-demo__float--2 .mono {
  color: var(--gold);
}

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

/* ---------- quick bullets band ---------- */
.quick {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.95rem;
}

.quick__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.quick__item p {
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.5;
}

.quick__check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* ---------- CTA bands ---------- */
.cta-band {
  text-align: center;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(245, 197, 24, 0.12), transparent 65%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  max-width: 760px;
  margin: 0 auto 18px;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--dim);
}

/* ---------- proof section ---------- */
.proof {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.5);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-main);
  opacity: 0.7;
}

.stat-card__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card__num .unit {
  font-size: 0.5em;
  color: var(--dim);
  font-weight: 600;
  margin-left: 3px;
}

.stat-card__label {
  font-size: 0.92rem;
  color: var(--dim);
  line-height: 1.5;
}

.stat-card__label strong {
  color: #fff;
  font-weight: 600;
}

/* before/after chart */
.chart-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.chart-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.chart-card p {
  color: var(--dim);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dim);
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chart-legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.chart-legend .l-old {
  background: #4b4b5e;
}

.chart-legend .l-new {
  background: var(--grad-main);
}

.bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 16px;
}

.bar-row__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.bar-row__track {
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.bar-row__fill {
  height: 100%;
  border-radius: 9px;
  width: 0;
  transition: width 1.4s var(--ease);
}

.bar-row__fill--old {
  background: linear-gradient(90deg, #3a3a4d, #4b4b5e);
}

.bar-row__fill--new {
  background: var(--grad-main);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.4);
}

.bar-row__val {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.bar-row__val--old {
  color: #a9a9bc;
}

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

  .chart-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px;
  }
}

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

/* ---------- problem section (light) ---------- */
.problem h2 {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 20px;
  font-size: clamp(1.8rem, 4.2vw, 2.7rem);
}

.problem__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--dim-paper);
}

.problem__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.problem__pain {
  background: #fff;
  border: 1px solid #e7e1d4;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.problem__pain:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -22px rgba(30, 25, 10, 0.25);
}

.problem__pain h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem__pain h4::before {
  content: "✕";
  color: var(--red);
  font-size: 0.85em;
  font-weight: 800;
}

.problem__pain p {
  font-size: 0.95rem;
  color: var(--dim-paper);
}

.problem__punch {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

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

/* ---------- old vs new ---------- */
.ovn {
  background: var(--ink);
}

.ovn__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ovn__col {
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.ovn__col--old {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.ovn__col--new {
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.12), rgba(34, 211, 238, 0.06));
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 30px 70px -30px rgba(139, 92, 246, 0.4);
}

.ovn__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.ovn__col--old .ovn__tag {
  background: rgba(248, 113, 113, 0.1);
  color: var(--red);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.ovn__col--new .ovn__tag {
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.ovn__col h3 {
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.ovn__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ovn__item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--dim);
  line-height: 1.5;
}

.ovn__item strong {
  color: #fff;
  font-weight: 600;
}

.ovn__col--old .ovn__item i {
  color: var(--red);
  flex-shrink: 0;
  font-style: normal;
  font-weight: 800;
}

.ovn__col--new .ovn__item i {
  color: var(--green);
  flex-shrink: 0;
  font-style: normal;
  font-weight: 800;
}

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

/* ---------- reveal / product ---------- */
.reveal-card {
  position: relative;
  background: linear-gradient(180deg, var(--card-2), var(--ink-3));
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.reveal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 260px at 80% -10%, rgba(139, 92, 246, 0.25), transparent 60%),
    radial-gradient(400px 240px at 10% 110%, rgba(34, 211, 238, 0.14), transparent 60%);
  pointer-events: none;
}

.reveal-card__inner {
  position: relative;
  padding: 64px;
}

.reveal-card h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 16px;
}

.reveal-card__sub {
  max-width: 620px;
  color: var(--dim);
  font-size: 1.08rem;
  margin-bottom: 44px;
}

/* course box mockup */
.course-box {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

.course-box__stack {
  display: grid;
  gap: 10px;
  perspective: 1200px;
}

.module-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 20px;
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
  transform: rotateX(1deg);
  animation: tileIn 0.7s var(--ease) both;
}

.module-tile:hover {
  transform: translateX(8px) rotateX(0);
  border-color: rgba(139, 92, 246, 0.55);
  background: rgba(139, 92, 246, 0.08);
}

.module-tile__n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 197, 24, 0.4);
  background: rgba(245, 197, 24, 0.08);
  flex-shrink: 0;
}

.module-tile__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.module-tile__text span {
  font-size: 0.82rem;
  color: var(--dim);
}

.course-box__badge {
  position: absolute;
  top: -18px;
  left: -14px;
  background: var(--grad-gold);
  color: #191203;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 12px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-gold);
  z-index: 4;
}

.course-box__badge2 {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: var(--card-2);
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  transform: rotate(3deg);
  z-index: 4;
  box-shadow: var(--shadow-card);
}

.course-box__badge2 strong {
  color: var(--gold);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .reveal-card__inner {
    padding: 36px 24px;
  }

  .course-box__badge {
    left: -4px;
    top: -14px;
  }

  .course-box__badge2 {
    right: -4px;
  }
}

/* ---------- how it works ---------- */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: phase;
}

.phase {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.35s var(--ease), border-color 0.3s;
}

.phase:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.5);
}

.phase__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phase__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.phase h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #fff;
}

.phase p {
  color: var(--dim);
  font-size: 0.93rem;
  margin-bottom: 16px;
}

.phase__timeline {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.3);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
}

.phase__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--dim);
}

.phase__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.phase__list li::before {
  content: "→";
  color: var(--gold);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

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

/* 15-minute rhythm */
.rhythm {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.rhythm__clock {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 50%, rgba(255, 255, 255, 0.08) 50% 100%);
  display: grid;
  place-items: center;
  position: relative;
  animation: spin 10s linear infinite;
}

.rhythm__clock::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--ink-2);
}

.rhythm__clock span {
  position: relative;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
}

.rhythm__content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.rhythm__content p {
  color: var(--dim);
  font-size: 0.95rem;
}

.rhythm__blocks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.rhythm__block {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  color: var(--dim);
}

.rhythm__block b {
  color: var(--gold);
}

@media (max-width: 700px) {
  .rhythm {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rhythm__clock {
    margin: 0 auto;
  }

  .rhythm__blocks {
    justify-content: center;
  }
}

/* ---------- journey pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  transition: transform 0.35s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.5);
}

.pillar::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
  pointer-events: none;
}

.pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.pillar__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--cyan);
}

.pillar h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.pillar p {
  color: var(--dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pillar__proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--green);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

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

/* ---------- "no need" list ---------- */
.noneed {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.noneed h3 {
  grid-column: 1 / -1;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.noneed p {
  grid-column: 1 / -1;
  color: var(--dim);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.noneed li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
  color: #d8d8e4;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.noneed li i {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .noneed {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}

/* ---------- bonuses ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus {
  position: relative;
  background: linear-gradient(180deg, var(--card-2), var(--ink-3));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.3s;
}

.bonus:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.55);
}

.bonus__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.35);
  padding: 5px 11px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 18px;
}

.bonus__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.35);
  margin-bottom: 18px;
}

.bonus__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.bonus h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: #fff;
}

.bonus p {
  color: var(--dim);
  font-size: 0.92rem;
  flex: 1;
}

.bonus__aha {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.25);
  font-size: 0.85rem;
  color: #c9ecf5;
}

.bonus__aha b {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.bonus__value {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--dim);
}

.bonus__value s {
  color: #6d6d7d;
}

.bonus__value b {
  color: var(--green);
}

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

/* ---------- pricing ---------- */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.value-stack {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.value-stack h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.value-stack .dim {
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.value-row:last-of-type {
  border-bottom: none;
}

.value-row__price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--dim);
  white-space: nowrap;
}

.value-row--total {
  margin-top: 14px;
  background: rgba(245, 197, 24, 0.07);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 700;
  font-family: var(--font-head);
}

.value-row--total .value-row__price {
  color: var(--gold);
  font-size: 1.1rem;
}

.price-card {
  position: relative;
  background: linear-gradient(180deg, var(--card-2), var(--ink-3));
  border: 1px solid rgba(245, 197, 24, 0.45);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 70px -30px rgba(245, 197, 24, 0.3);
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.price-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.price-card__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.price-card__price small {
  font-size: 1rem;
  color: var(--dim);
  font-weight: 600;
  letter-spacing: 0;
}

.price-card__was {
  font-size: 0.95rem;
  color: var(--dim);
  margin-bottom: 20px;
}

.price-card__was s {
  color: #6d6d7d;
}

.price-card__was b {
  color: var(--red);
  font-family: var(--font-mono);
}

.price-card__timer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
}

.price-card__timer .t-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}

.timer-nums {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.timer-nums .t-unit {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--dim);
  letter-spacing: 0.1em;
}

.timer-nums .t-box {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  padding: 8px 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  min-width: 46px;
}

.price-card__points {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: #d8d8e4;
}

.price-card__points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-card__points li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.price-card .btn {
  margin-top: auto;
}

.pay-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.pay-badges span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 9px;
  color: var(--dim);
}

.price-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.88rem;
  color: var(--dim);
}

.price-note strong {
  color: var(--gold);
}

@media (max-width: 900px) {
  .pricing-wrap {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(139, 92, 246, 0.5);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: #fff;
}

.faq-q__icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #d8d8e4;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}

.faq-item.open .faq-q__icon {
  transform: rotate(45deg);
  background: rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.5);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.faq-a__inner {
  padding: 0 22px 22px;
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-a__inner a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 50% 120%, rgba(245, 197, 24, 0.16), transparent 65%),
    radial-gradient(500px 300px at 15% 0%, rgba(139, 92, 246, 0.2), transparent 60%),
    radial-gradient(500px 300px at 85% 0%, rgba(34, 211, 238, 0.14), transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  position: relative;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  max-width: 780px;
  margin: 0 auto 18px;
}

.final-cta .lead {
  position: relative;
  max-width: 620px;
  margin: 0 auto 34px;
}

.final-cta__badges {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: var(--dim);
}

.final-cta__badges .lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.final-cta__badges .lock svg {
  width: 15px;
  height: 15px;
  stroke: var(--green);
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 600;
}

.footer p {
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--dim);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #6d6d7d;
}

.footer__bottom a {
  color: #8b8b9c;
}

.footer__bottom a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  margin-top: 26px;
  font-size: 0.78rem;
  color: #6e6e80;
  line-height: 1.6;
  max-width: 900px;
}

@media (max-width: 800px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 160;
  background: rgba(8, 8, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(245, 197, 24, 0.3);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 14px;
}

.mobile-cta__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.mobile-cta__price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--dim);
}

.mobile-cta .btn {
  flex: 1;
  padding: 15px 18px;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}

/* ---------- sub pages (legal / support) ---------- */
.sub-hero {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% -20%, rgba(139, 92, 246, 0.22), transparent 60%);
  pointer-events: none;
}

.sub-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 12px;
  position: relative;
}

.sub-hero p {
  color: var(--dim);
  max-width: 620px;
  position: relative;
}

.sub-body {
  background: var(--ink);
  padding: 72px 0 90px;
}

.sub-body__inner {
  max-width: 780px;
  margin: 0 auto;
}

.sub-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 20px;
}

.sub-card h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.sub-card h3 {
  font-size: 1.05rem;
  margin: 22px 0 10px;
}

.sub-card p {
  color: var(--dim);
  font-size: 0.97rem;
  margin-bottom: 14px;
  line-height: 1.7;
}

.sub-card ul {
  margin: 0 0 16px;
}

.sub-card ul li {
  color: var(--dim);
  font-size: 0.97rem;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.65;
}

.sub-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-mono);
}

.sub-card a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sub-card .updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d6d7d;
  display: block;
  margin-bottom: 18px;
}

.sub-card--support-cta {
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.05));
  border-color: rgba(139, 92, 246, 0.4);
}

.sub-card--support-cta h2 {
  border-color: rgba(139, 92, 246, 0.3);
}

.sub-card--support-cta .btn {
  margin-top: 6px;
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ---------- keyframes ---------- */
@keyframes btnPulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.06);
    opacity: 0;
  }

  100% {
    transform: scale(1.06);
    opacity: 0;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floaty {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -9px;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes msgIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tileIn {
  from {
    opacity: 0;
    transform: translateY(16px) rotateX(4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(1deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

  100% {
    background-position: 200% 50%;
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(24px, -18px) scale(1.06);
  }

  66% {
    transform: translate(-16px, 14px) scale(0.96);
  }
}

/* gradient shimmer headline word */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 25%, #fff 50%, var(--gold-soft) 75%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- light-section readability overrides ----------
   Dark cards inside cream sections: headings fixed to white above.
   The rhythm card gets a proper light treatment so its text stays readable. */
.section--light .rhythm {
  background: #fff;
  border-color: #e7e1d4;
  box-shadow: 0 18px 44px -22px rgba(30, 25, 10, 0.18);
}

.section--light .rhythm__content p {
  color: var(--dim-paper);
}

.section--light .rhythm__block {
  color: var(--dim-paper);
  border-color: #e0dacb;
}

.section--light .rhythm__block b {
  color: #b8860b;
}

.section--light .rhythm__clock {
  background: conic-gradient(#f5c518 0 50%, #efe6d2 50% 100%);
}

.section--light .rhythm__clock::before {
  background: #fff;
}

.section--light .rhythm__clock span {
  color: #b8860b;
}

/* FAQ cards keep their dark look but stay crisp on cream */
.section--light .faq-item {
  border-color: rgba(19, 19, 28, 0.14);
}

.section--light .faq-item.open {
  border-color: rgba(139, 92, 246, 0.5);
}

.section--light .faq-a__inner a {
  color: #2563eb;
}
