:root {
  --night: #070707;
  --night-2: #14120f;
  --ink: #141312;
  --muted: #5a6475;
  --paper: #f4f0e7;
  --white: #ffffff;
  --mist: #f5f5f2;
  --lab: #ece9e2;
  --cyan: #20d3ef;
  --blue: #2248d8;
  --amber: #d8a24c;
  --green: #54bd89;
  --coral: #ff725c;
  --line: rgba(20, 25, 35, 0.14);
  --shadow: 0 22px 70px rgba(9, 11, 15, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f5ef;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

main > section {
  scroll-margin-top: 86px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 18px 42px;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.88);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 252px;
  text-decoration: none;
}

.brand img {
  width: 267px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a,
.header-cta {
  text-decoration: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a:hover {
  color: var(--white);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 4px;
  padding: 11px 18px;
  font-weight: 850;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: end;
  padding: 118px 0 24px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.06);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.82) 73%, rgba(0, 0, 0, 0.98) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 14px 34px;
  align-items: end;
}

.hero-main-copy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 10px 42px;
  align-items: end;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow {
  text-transform: none;
}

.hero-main-copy > .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: -2px;
}

.hero h1 {
  grid-column: 1;
  grid-row: 2 / 4;
  align-self: end;
  margin: 0;
  max-width: 690px;
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  max-width: 520px;
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.92);
}

.hero-ai-note {
  grid-column: 2;
  grid-row: 3;
  max-width: 680px;
  margin: 10px 0 0;
  border-left: 2px solid var(--amber);
  padding: 6px 0 6px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-actions {
  grid-column: 1 / -1;
  grid-row: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #101010;
  background: var(--amber);
  box-shadow: 0 16px 36px rgba(216, 162, 76, 0.22);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary-dark {
  color: var(--night);
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 8px;
  max-width: 820px;
  margin: 6px 0 0;
}

.hero-proof div {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof dt {
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  color: var(--white);
}

.hero-proof dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.mission-console {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 20px;
  background:
    linear-gradient(140deg, rgba(11, 11, 11, 0.88), rgba(31, 27, 22, 0.66)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.36),
    inset 0 0 42px rgba(216, 162, 76, 0.08);
  backdrop-filter: blur(14px);
}

.console-label {
  margin: 0 0 14px;
  color: #f2c777;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-block {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.console-block + .console-block {
  margin-top: 12px;
}

.console-block h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
}

.console-block ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.console-block li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.console-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 16px rgba(216, 162, 76, 0.8);
}

.band-paper {
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, #11100e 0%, #1f1a13 100%);
}

.band-white {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 162, 76, 0.14), transparent 34%),
    linear-gradient(135deg, #070707 0%, #15130f 100%);
}

.band-mist {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 162, 76, 0.16), transparent 34%),
    linear-gradient(135deg, #0b0a08 0%, #1b160f 100%);
}

.band-lab {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 22%, rgba(32, 211, 239, 0.08), transparent 30%),
    linear-gradient(135deg, #0a0a09 0%, #17130d 100%);
}

.band-night {
  color: var(--white);
  background:
    linear-gradient(135deg, #08111d 0%, #111827 54%, #1c2130 100%);
}

.band-amber {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 162, 76, 0.22), transparent 32%),
    linear-gradient(135deg, #120f09 0%, #2a2114 100%);
}

.band-contact {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 14%, rgba(216, 162, 76, 0.16), transparent 34%),
    linear-gradient(135deg, #070707 0%, #15120d 100%);
}

.intro-strip {
  padding: 18px 0;
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.intro-strip p {
  max-width: 920px;
  margin: 0;
  font-size: 17px;
  font-weight: 750;
}

.intro-strip a {
  color: var(--amber);
  font-weight: 850;
  text-decoration-color: rgba(216, 162, 76, 0.45);
}

.section {
  padding: 56px 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head h2,
.split-copy h2,
.program-intro h2,
.course-copy h2,
.trial-grid h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p:not(.section-kicker),
.split-copy p,
.program-intro p,
.course-copy p,
.trial-grid p,
.contact-copy p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.section-head-invert p:not(.section-kicker),
.band-night .faq-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-card,
.module-card,
.offer-card,
.lead-form {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.value-card {
  padding: 20px;
}

.value-mark,
.module-card span,
.trial-steps span {
  color: var(--amber);
  font-weight: 900;
  font-size: 13px;
}

.value-card h3,
.module-card h3,
.offer-card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.value-card p,
.module-card p,
.offer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.split,
.program-layout,
.course-layout,
.contact-layout,
.faq-layout,
.trial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-reverse .split-copy {
  order: 2;
}

.result-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.result-list span {
  border-radius: 4px;
  padding: 8px 10px;
  color: #fff2d2;
  background: rgba(216, 162, 76, 0.14);
  font-size: 14px;
  font-weight: 800;
}

.media-panel {
  margin: 0;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.hero-characters-panel img {
  max-height: 300px;
  background:
    radial-gradient(circle at 48% 42%, rgba(25, 199, 230, 0.15), transparent 42%),
    #ffffff;
}

.premium-film-strip {
  margin-top: 20px;
}

figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.band-night figcaption {
  color: rgba(255, 255, 255, 0.66);
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
}

.film-strip figure {
  min-width: 0;
  margin: 0;
}

.film-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 6px;
  background: rgba(0, 0, 0, 0.36);
}

.film-strip figure:last-child img {
  padding: 12px;
}

.film-mission-copy {
  max-width: 880px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.42;
  font-weight: 780;
}

.creative-section {
  position: relative;
  overflow: hidden;
}

.creative-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(25, 199, 230, 0.16), transparent 30%),
    radial-gradient(circle at 84% 58%, rgba(255, 178, 63, 0.12), transparent 28%);
  pointer-events: none;
}

.route-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 34px;
  align-items: center;
}

.route-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
}

.route-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.route-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.route-metrics span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 820;
}

.route-visual {
  margin: 0;
}

.route-brand-fragment {
  padding: 10px;
  border: 1px solid rgba(216, 162, 76, 0.24);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.22);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.route-visual img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.route-orbit {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(216, 162, 76, 0.28);
  border-radius: 4px;
  background:
    radial-gradient(circle at center, rgba(216, 162, 76, 0.2), transparent 22%),
    radial-gradient(circle at center, transparent 0 34%, rgba(216, 162, 76, 0.18) 34.3% 34.7%, transparent 35%),
    radial-gradient(circle at center, transparent 0 48%, rgba(32, 211, 239, 0.12) 48.3% 48.7%, transparent 49%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.route-orbit::before,
.route-orbit::after {
  content: "";
  position: absolute;
  inset: 72px;
  border: 1px solid rgba(216, 162, 76, 0.18);
  border-radius: 50%;
}

.route-orbit::after {
  inset: 126px;
  border-color: rgba(32, 211, 239, 0.14);
}

.orbit-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(216, 162, 76, 0.72);
  border-radius: 50%;
  color: #fff5d8;
  background:
    radial-gradient(circle, rgba(216, 162, 76, 0.26), rgba(14, 12, 9, 0.94) 68%);
  box-shadow: 0 0 58px rgba(216, 162, 76, 0.25);
  transform: translate(-50%, -50%);
  text-align: center;
}

.orbit-core span {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.orbit-core strong {
  max-width: 110px;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.orbit-step {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 148px;
  border: 1px solid rgba(216, 162, 76, 0.34);
  border-radius: 4px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(9, 9, 9, 0.72);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  font-weight: 850;
}

.orbit-step span {
  color: var(--amber);
  font-weight: 950;
}

.step-1 { left: 50%; top: 32px; transform: translateX(-50%); }
.step-2 { left: 42px; top: 132px; }
.step-3 { left: 50px; bottom: 132px; }
.step-4 { left: 50%; bottom: 32px; transform: translateX(-50%); }
.step-5 { right: 50px; bottom: 132px; }
.step-6 { right: 42px; top: 132px; }
.step-7 { right: 38px; top: 50%; transform: translateY(-50%); }

.program-layout {
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.program-intro {
  position: sticky;
  top: 94px;
}

.program-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.program-images img {
  width: 100%;
  aspect-ratio: 10 / 14;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.module-card {
  padding: 16px;
}

.module-card p {
  font-size: 14px;
}

.module-card-final {
  background: rgba(216, 162, 76, 0.13);
}

.image-stack {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 12px;
  align-items: stretch;
  min-height: 380px;
}

.image-stack img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  transform: none;
  object-position: center top;
}

.studio-moon-panel {
  margin: 0;
}

.studio-moon-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(216, 162, 76, 0.2);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.check-list li {
  border-left: 4px solid var(--green);
  padding: 7px 0 7px 12px;
  font-weight: 780;
}

.trial-grid {
  align-items: start;
}

.trial-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trial-steps li {
  border: 1px solid rgba(216, 162, 76, 0.22);
  border-radius: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.trial-steps strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.trial-steps p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  padding: 24px;
}

.offer-card-accent {
  background: rgba(216, 162, 76, 0.14);
  color: var(--white);
}

.offer-card-accent p {
  color: rgba(255, 255, 255, 0.74);
}

.offer-price {
  margin: 12px 0;
  color: var(--amber);
  font-size: 26px;
  font-weight: 900;
}

.offer-card-accent .offer-price {
  color: var(--amber);
}

.offer-card .btn {
  width: 100%;
  margin-top: 22px;
}

.faq-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.faq-intro img {
  margin-top: 20px;
  aspect-ratio: 1402 / 1122;
  max-height: 430px;
  width: 100%;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 18px;
}

details p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  align-items: start;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-direct a,
.contact-direct span {
  border: 1px solid rgba(216, 162, 76, 0.26);
  border-radius: 4px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 850;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 162, 76, 0.24);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(25, 199, 230, 0.24);
  border-color: var(--cyan);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .btn {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--night);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 0;
    overflow: visible;
    background: #070707;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    height: min(52svh, 430px);
    min-height: 310px;
    object-position: center top;
  }

  .hero-shade {
    inset: 0 0 auto;
    height: min(52svh, 430px);
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 56%, rgba(0, 0, 0, 0.78) 100%);
  }

  .hero-content {
    padding: 26px 0 36px;
  }

  .hero h1 {
    grid-column: auto;
    grid-row: auto;
    max-width: 760px;
    font-size: 52px;
  }

  .hero-lead {
    grid-column: auto;
    grid-row: auto;
    max-width: 720px;
    margin: 30px 0 0;
    font-size: 20px;
  }

  .hero-ai-note {
    grid-column: auto;
    grid-row: auto;
    max-width: 760px;
    margin: 24px 0 0;
  }

  .hero-actions {
    grid-column: auto;
    grid-row: auto;
    margin-top: 20px;
  }

  .value-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content-grid,
  .route-layout {
    grid-template-columns: 1fr;
  }

  .hero-content-grid,
  .hero-main-copy {
    display: block;
  }

  .hero-main-copy > .eyebrow {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 14px;
  }

  .hero-main-copy,
  .hero-proof {
    grid-column: auto;
  }

  .hero-proof {
    max-width: none;
    margin-top: 18px;
  }

  .split,
  .split-reverse,
  .program-layout,
  .course-layout,
  .contact-layout,
  .faq-layout,
  .trial-grid {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-copy,
  .program-intro {
    order: initial;
  }

  .program-intro {
    position: static;
  }

  .section {
    padding: 52px 0;
  }

  .film-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  main > section {
    scroll-margin-top: 70px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 180px;
  }

  .brand img {
    width: 204px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-bg {
    height: min(48svh, 360px);
    min-height: 270px;
  }

  .hero-shade {
    height: min(48svh, 360px);
    background:
      linear-gradient(180deg, rgba(6, 8, 12, 0.03) 0%, rgba(6, 8, 12, 0.05) 56%, rgba(6, 8, 12, 0.84) 100%);
  }

  .hero-content {
    padding: 22px 0 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lead {
    max-width: 460px;
    font-size: 17px;
  }

  .hero-ai-note {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .mission-console {
    display: none;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }

  .section-head h2,
  .split-copy h2,
  .program-intro h2,
  .course-copy h2,
  .trial-grid h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 32px;
  }

  .route-copy h2 {
    font-size: 32px;
  }

  .section-head p:not(.section-kicker),
  .split-copy p,
  .program-intro p,
  .course-copy p,
  .trial-grid p,
  .contact-copy p {
    font-size: 16px;
  }

  .program-images {
    grid-template-columns: 1fr;
  }

  .route-brand-fragment {
    padding: 6px;
  }

  .route-orbit {
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 18px;
  }

  .route-orbit::before,
  .route-orbit::after {
    display: none;
  }

  .orbit-core,
  .orbit-step {
    position: static;
    width: auto;
    height: auto;
    min-width: 0;
    transform: none;
  }

  .orbit-core {
    padding: 20px;
    border-radius: 4px;
  }

  .image-stack img:nth-child(2) {
    transform: none;
  }

  .image-stack {
    min-height: 0;
  }

  .image-stack img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .film-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .film-strip img {
    height: auto;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 8px;
    padding: 10px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand img {
    width: clamp(178px, 54vw, 204px);
  }

  .header-cta {
    flex: 0 0 auto;
    padding: 8px 9px;
    font-size: 12px;
    line-height: 1;
  }

  .hero {
    min-height: auto;
  }

  .value-grid,
  .module-grid,
  .trial-steps,
  .offer-grid,
  .image-stack,
  .route-metrics {
    grid-template-columns: 1fr;
  }

  .btn {
    min-height: 46px;
    padding: 12px 14px;
  }
}
