/* ------------------------------------------------------------------
   Accent with Eliot — American Broadcaster
   Cinematic studio theme. Dark ground, warm light, one "on air" red.
   ------------------------------------------------------------------ */

:root {
  --bg: #0b0b0d;
  --bg-2: #111114;
  --bg-3: #17171b;
  --ink: #101013;
  --paper: #f3efe7;
  --paper-2: #e9e4da;
  --text: #f1ede6;
  --text-dim: #cfcac1;
  --muted: #9a968e;
  --line: rgba(241, 237, 230, 0.12);
  --line-strong: rgba(241, 237, 230, 0.24);
  --red: #e63b2e;
  --red-deep: #b8271c;
  --red-soft: rgba(230, 59, 46, 0.14);

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Golos Text", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

/* Grain overlay — subtle film texture over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.display em { font-style: italic; color: var(--red); }
.h1 { font-size: clamp(48px, 6.4vw, 96px); }
.h2 { font-size: clamp(40px, 5.2vw, 72px); }
.h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.05; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow__num {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0;
  color: var(--red);
  font-style: italic;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}
.eyebrow--bare::before { display: none; }

.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 56ch;
}
.small { font-size: 14px; color: var(--muted); }
.mono-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 10vw, 150px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 100px) 0; }
.section-head { margin-bottom: clamp(40px, 5vw, 72px); display: grid; gap: 22px; }
.section-head .h2 { max-width: 16ch; }
.section-head--row {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
}
.section-head--row .lead { justify-self: end; }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid var(--line-strong);
  color: var(--text);
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); border-color: var(--text); }
.btn--primary { background: var(--text); color: var(--ink); border-color: var(--text); }
.btn--primary:hover { background: #fff; }
.btn--red { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--ghost { border-color: transparent; padding-left: 0; padding-right: 0; }
.btn--ghost:hover { transform: none; border-color: transparent; color: var(--red); }
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--sm { padding: 12px 20px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 13, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
/* Light variant while a paper-coloured section sits under the bar */
.nav.is-light { color: var(--ink); }
.nav.is-light.is-scrolled {
  background: rgba(243, 239, 231, 0.82);
  border-bottom-color: rgba(16, 16, 19, 0.12);
}
.nav.is-light .nav__links a { color: #3a3833; }
.nav.is-light .nav__logo span, .nav.is-light .on-air { color: #6f6a62; }
.nav.is-light .btn--primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav.is-light .burger span { background: var(--ink); }
.nav__inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; }
.nav__logo strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.nav__logo span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  white-space: nowrap;
  font-size: 14px;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--red);
  transition: right 0.35s var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.on-air {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.on-air i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(230, 59, 46, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 59, 46, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(230, 59, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 59, 46, 0); }
}
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
}
.burger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav.is-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .burger span:nth-child(2) { opacity: 0; }
.nav.is-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 32px var(--gutter);
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 40px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; font-family: var(--font-body); font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding-top: 120px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 78% 40%, rgba(230, 59, 46, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 90%, rgba(241, 237, 230, 0.05), transparent 60%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  position: relative;
}
.hero__text { padding-bottom: clamp(48px, 7vw, 110px); position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 28px; }
.hero .h1 { margin-bottom: 12px; }
.hero .h1 .line { display: block; }
.hero__lead { margin: 32px 0 40px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero__visual {
  position: relative;
  align-self: end;
  justify-self: end;
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  max-height: 72vh;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: clamp(48px, 7vw, 110px);
  box-shadow: 0 40px 80px -30px rgba(230, 59, 46, 0.35), 0 30px 60px -40px rgba(0,0,0,0.9);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: contrast(1.03) saturate(0.95);
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,0.55), transparent 45%);
  pointer-events: none;
}
.hero__visual figcaption {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241,237,230,0.85);
  line-height: 1.7;
}
.hero__visual figcaption strong { display: block; font-weight: 500; color: #fff; }

/* Waveform — decorative, animated bars */
.wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 100%);
  pointer-events: none;
}
.wave i {
  flex: 1;
  background: var(--text);
  height: 10%;
  transform-origin: bottom;
  animation: wave 2.2s ease-in-out infinite;
  opacity: 0.55;
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.2); }
  50% { transform: scaleY(1); }
}


/* Stats strip */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 34px 28px 34px 0;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.stat + .stat { padding-left: 28px; }
.stat:last-child { border-right: 0; }
.stat b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat b em { font-style: italic; color: var(--red); }
.stat span { font-size: 14px; color: var(--muted); }

/* ---------- Problem / Shift ---------- */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.quote {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  position: sticky;
  top: 120px;
}
.quote::before {
  content: "«";
  color: var(--red);
}
.quote::after { content: "»"; color: var(--red); }
.pain-list { display: grid; }
.pain-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  font-size: 18px;
  color: var(--text-dim);
}
.pain-list li:last-child { border-bottom: 1px solid var(--line); }
.pain-list li span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--red);
  font-size: 22px;
  line-height: 1.3;
}

.shift {
  margin-top: clamp(56px, 8vw, 110px);
  display: grid;
  gap: 0;
}
.shift__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.shift__row:last-child { border-bottom: 1px solid var(--line); }
.shift__from { color: var(--muted); }
.shift__to { text-align: right; }
.shift__to em { color: var(--red); font-style: italic; }
.shift__arrow {
  width: clamp(60px, 8vw, 120px);
  height: 1px;
  background: var(--line-strong);
  position: relative;
}
.shift__arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -4px;
  width: 8px; height: 8px;
  border-top: 1px solid var(--text);
  border-right: 1px solid var(--text);
  transform: rotate(45deg);
}

/* ---------- Method ---------- */
.method { background: var(--bg-2); }
.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.module {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 3vw, 44px) clamp(22px, 2.4vw, 34px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
  min-height: 420px;
  position: relative;
  transition: background 0.4s;
}
.module:hover { background: var(--bg-3); }
.module__num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.9;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.4s;
}
.module:hover .module__num { color: var(--red); }
.module__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.module__text { font-size: 15.5px; color: var(--text-dim); line-height: 1.6; }
.module__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.module__tags span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
}
.method__sum {
  margin-top: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.method__sum p {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.15;
  max-width: 28ch;
}
.method__sum p em { color: var(--red); font-style: italic; }

/* ---------- Course preview ---------- */
.course__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.course__phone { max-width: 380px; justify-self: center; width: 100%; }
.inside-list { display: grid; margin-top: 36px; }
.inside-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 18px;
}
.inside-list li:last-child { border-bottom: 1px solid var(--line); }
.inside-list li span {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ---------- Video player ---------- */
.player {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  aspect-ratio: 9 / 16;
  isolation: isolate;
}
.player--wide { aspect-ratio: 16 / 9; }
.player--square { aspect-ratio: 1 / 1; }
.player video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.player--contain video { object-fit: contain; }
.player__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05) 50%);
  transition: opacity 0.4s;
  z-index: 2;
}
.player__play::before {
  content: "";
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(241, 237, 230, 0.92);
  backdrop-filter: blur(4px);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.player__play::after {
  content: "";
  position: absolute;
  width: 0; height: 0;
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}
.player:hover .player__play::before { transform: scale(1.08); background: var(--red); }
.player:hover .player__play::after { border-left-color: #fff; }
.player.is-playing .player__play { opacity: 0; pointer-events: none; }
.player__meta {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,237,230,0.9);
  pointer-events: none;
  transition: opacity 0.3s;
}
.player.is-playing .player__meta { opacity: 0; }
.player__meta strong { display: block; font-weight: 500; letter-spacing: 0.06em; text-transform: none; font-size: 14px; margin-bottom: 2px; }
.player__meta time { color: var(--muted); white-space: nowrap; }
.video-caption { margin-top: 12px; font-size: 14px; color: var(--muted); }
.video-caption strong { color: var(--text); font-weight: 500; }

/* ---------- Programs ---------- */
.programs { background: var(--bg-2); }
.ladder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--muted);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ladder b { font-weight: 400; color: var(--text); }
.ladder i { font-style: normal; color: var(--red); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 24px;
  transition: transform 0.45s var(--ease), border-color 0.4s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.plan--flagship {
  background: linear-gradient(180deg, #17121280, var(--bg)) , var(--bg);
  border-color: rgba(230, 59, 46, 0.5);
}
.plan--flagship::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(230,59,46,0.9), rgba(230,59,46,0.1) 50%, rgba(230,59,46,0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.plan__badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.plan__step { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.plan__step b { color: var(--red); font-weight: 500; margin-right: 8px; }
.plan__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.6vw, 38px);
  line-height: 1;
}
.plan__title small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}
.plan__price { display: grid; gap: 6px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan__price b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.plan__price span { font-size: 13px; color: var(--muted); }
.plan__list { display: grid; gap: 10px; font-size: 15px; color: var(--text-dim); }
.plan__list li { display: grid; grid-template-columns: 16px 1fr; gap: 12px; align-items: start; }
.plan__list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 9px;
  justify-self: center;
}
.plan__list li.is-no { color: var(--muted); }
.plan__list li.is-no::before { background: transparent; border: 1px solid var(--muted); width: 5px; height: 5px; }
.plan__list .plan__sub {
  display: block;
  grid-column: 1 / -1;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.plan__addon {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.plan__addon b { color: var(--text); font-weight: 500; }
.plan .btn { width: 100%; }

.soon {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.soon__card {
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  padding: clamp(26px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 32px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.soon__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(241,237,230,0.025) 14px 15px);
  pointer-events: none;
}
.soon__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(230,59,46,0.5);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
}
.soon__card h4 { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 34px); line-height: 1.05; margin-bottom: 10px; }
.soon__card p { font-size: 15px; color: var(--text-dim); max-width: 44ch; }
.soon__card .btn { grid-column: 1 / -1; justify-self: start; }

/* ---------- Imitation ---------- */
.imitation__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.imitation__text { position: sticky; top: 110px; }
.steps { display: grid; margin: 36px 0 40px; }
.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 17px;
  color: var(--text-dim);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li span {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--red);
  font-style: italic;
}
.imit-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.imit-videos .is-wide { grid-column: 1 / -1; }

/* ---------- Proof ---------- */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.proof__grid > * { grid-column: span 3; }
.proof__grid > .span-4 { grid-column: span 4; }
.proof__grid > .span-6 { grid-column: span 6; }
.photo {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--bg-3);
}
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.photo:hover img { transform: scale(1.04); }
.photo figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,237,230,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.proof__note {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.proof__note p { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 34px); line-height: 1.15; }
.proof__note p em { color: var(--red); font-style: italic; }

/* ---------- About (light cut) ---------- */
.about {
  background: var(--paper);
  color: var(--ink);
}
.about ::selection { background: var(--ink); color: var(--paper); }
.about .eyebrow { color: #6f6a62; }
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: sticky;
  top: 110px;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
.about__photo figcaption {
  position: absolute;
  left: 18px; bottom: 16px; right: 18px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.about .h2 { color: var(--ink); margin-bottom: 28px; }
.about .h2 em { color: var(--red); }
.about__text { display: grid; gap: 20px; font-size: 18px; line-height: 1.65; color: #2b2925; max-width: 60ch; }
.about__text p:first-child { font-size: 21px; }
.creds {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  border-top: 1px solid rgba(16,16,19,0.14);
}
.creds li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(16,16,19,0.14);
  display: grid;
  gap: 4px;
}
.creds li b { font-weight: 500; font-size: 16px; }
.creds li span { font-size: 13px; color: #6f6a62; letter-spacing: 0.04em; }
.about__links { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.about .btn { border-color: rgba(16,16,19,0.25); color: var(--ink); }
.about .btn:hover { border-color: var(--ink); }
.about .btn--primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.about .btn--primary:hover { background: #000; }

/* ---------- FAQ ---------- */
.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.faq__intro { position: sticky; top: 110px; display: grid; gap: 20px; justify-items: start; }
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red); }
.faq summary i {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.faq summary i::before, .faq summary i::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary i { transform: rotate(45deg); border-color: var(--red); color: var(--red); }
.faq details p {
  padding: 0 60px 26px 0;
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 62ch;
}

/* ---------- Apply ---------- */
.apply {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.apply__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 30%, rgba(230,59,46,0.16), transparent 60%);
  pointer-events: none;
}
.apply__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  position: relative;
}
.apply__text { display: grid; gap: 24px; align-content: start; }
.contacts { display: grid; gap: 14px; margin-top: 12px; }
.contacts a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  transition: color 0.3s;
}
.contacts a:last-child { border-bottom: 1px solid var(--line); }
.contacts a:hover { color: var(--red); }
.contacts a svg { width: 22px; height: 22px; }
.contacts a span { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); display: block; }
.contacts a b { font-weight: 500; font-size: 17px; }
.contacts a em { font-style: normal; color: var(--muted); font-size: 18px; }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font: inherit;
  font-size: 18px;
  padding: 12px 0;
  border-radius: 0;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239a968e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 28px;
}
.field select option { background: var(--bg-3); color: var(--text); }
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--red); }
.field input::placeholder, .field textarea::placeholder { color: rgba(241,237,230,0.35); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--red); }
.form__submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form__note { font-size: 13px; color: var(--muted); max-width: 30ch; }
.form__done {
  display: none;
  border: 1px solid rgba(230,59,46,0.5);
  border-radius: 12px;
  padding: 28px;
  gap: 12px;
}
.form__done.is-visible { display: grid; }
.form__done h4 { font-family: var(--font-display); font-size: 30px; line-height: 1.1; }
.form__done p { color: var(--text-dim); font-size: 15px; }
.form__done a { color: var(--red); border-bottom: 1px solid currentColor; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.footer__tag { font-family: var(--font-display); font-size: 22px; color: var(--text); }
.footer__tag em { color: var(--red); }
.footer__links { display: flex; gap: 22px; }
.footer__links a:hover { color: var(--text); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Hero entrance */
.hero .rise { opacity: 0; transform: translateY(24px); animation: rise 1.1s var(--ease) forwards; }
.hero .rise:nth-child(1) { animation-delay: 0.1s; }
.hero .rise:nth-child(2) { animation-delay: 0.25s; }
.hero .rise:nth-child(3) { animation-delay: 0.45s; }
.hero .rise:nth-child(4) { animation-delay: 0.6s; }
.hero__visual { opacity: 0; animation: fade 1.6s var(--ease) 0.3s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes fade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .rise, .hero__visual { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .method__grid { grid-template-columns: repeat(2, 1fr); }
  .module { min-height: 340px; }
  .plans { grid-template-columns: 1fr; max-width: 640px; }
  .plan--flagship { order: -1; }
  .proof__grid > * { grid-column: span 4; }
  .proof__grid > .span-6 { grid-column: span 8; }
  .stat b { font-size: 36px; }
}

@media (max-width: 1024px) {
  .nav__links, .nav__right .on-air, .nav__right .btn { display: none; }
  .burger { display: flex; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 128px; }
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__text { padding-bottom: 40px; }
  .hero__visual { width: 100%; max-height: none; aspect-ratio: 4 / 5; justify-self: stretch; margin-bottom: 48px; }
  .wave { height: 80px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 20px 24px 0; }
  .stat + .stat { padding-left: 20px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stat:nth-child(3) { padding-left: 0; }
  .section-head--row { grid-template-columns: 1fr; }
  .section-head--row .lead { justify-self: start; }
  .problem__grid, .course__grid, .imitation__grid, .about__grid, .faq__grid, .apply__grid { grid-template-columns: 1fr; }
  .quote, .imitation__text, .faq__intro { position: static; }
  .about__photo { position: relative; top: auto; }
  .shift__row { grid-template-columns: 1fr; gap: 12px; }
  .shift__to { text-align: left; }
  .shift__arrow { width: 48px; }
  .method__sum { grid-template-columns: 1fr; }
  .soon { grid-template-columns: 1fr; }
  .proof__grid > *, .proof__grid > .span-4 { grid-column: span 6; }
  .proof__grid > .span-6 { grid-column: span 12; }
  .proof__note { grid-template-columns: 1fr; }
  .about__photo { aspect-ratio: 4 / 5; }
  .creds { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .h1 { font-size: clamp(44px, 13vw, 64px); }
  .h2 { font-size: clamp(34px, 10vw, 48px); }
  .hero__visual { aspect-ratio: 4 / 5; }
  .hero__actions .btn { width: 100%; }
  .method__grid { grid-template-columns: 1fr; }
  .module { min-height: auto; }
  .imit-videos { grid-template-columns: 1fr 1fr; }
  .proof__grid { gap: 10px; }
  .proof__grid > *, .proof__grid > .span-4 { grid-column: span 6; }
  .pain-list li { grid-template-columns: 36px 1fr; font-size: 16px; }
  .plan { padding: 26px 22px; }
  .plan__price b { font-size: 38px; }
  .faq summary { font-size: 21px; }
  .faq details p { padding-right: 0; }
  .form__submit .btn { width: 100%; }
}
