:root {
  color-scheme: dark;
  --paper: #050505;
  --ink: #f7f4ec;
  --ink-2: #ffffff;
  --muted: #aaa399;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(7, 7, 7, 0.1);
  --surface: #11100e;
  --surface-soft: #191713;
  --cream: #f7f4ec;
  --cream-2: #eeeadf;
  --gold: #d6a84f;
  --amber: #b98535;
  --bronze: #8f5e2c;
  --sage: #8ea693;
  --blue: #7b96ad;
  --red: #a9453f;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  --shadow-strong: 0 28px 78px rgba(0, 0, 0, 0.62);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(142, 166, 147, 0.08), transparent 56%),
    #050505;
}

button,
input,
a {
  font: inherit;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding:
    calc(16px + env(safe-area-inset-top)) clamp(16px, 4vw, 44px) 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand-link {
  width: clamp(218px, 24vw, 330px);
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 24px);
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
}

.site-nav a:hover {
  color: var(--ink-2);
}

.nav-cta {
  padding: 0 14px;
  border: 1px solid rgba(214, 168, 79, 0.44);
  background: rgba(214, 168, 79, 0.12);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding:
    calc(116px + env(safe-area-inset-top)) clamp(16px, 5vw, 72px)
    clamp(28px, 6vw, 78px);
  background:
    radial-gradient(circle at 72% 18%, rgba(214, 168, 79, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.84) 52%, rgba(5, 5, 5, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.98)),
    #050505;
}

.hero::before {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 86px);
  top: clamp(118px, 22vh, 220px);
  z-index: 0;
  width: clamp(520px, 46vw, 900px);
  aspect-ratio: 1385 / 143;
  background: url("./assets/dark-horse-wordmark-inverted.png") center / contain no-repeat;
  opacity: 0.085;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(16px, 5vw, 72px);
  right: clamp(16px, 5vw, 72px);
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--bronze), transparent);
  z-index: 4;
}

.hero-mark {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.36;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(90deg, rgba(214, 168, 79, 0.2), transparent 44%, rgba(123, 150, 173, 0.12));
  mask-image: linear-gradient(90deg, black 0%, black 62%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(720px, 100%);
  display: grid;
  gap: 16px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0;
  display: grid;
  gap: 0.02em;
  font-size: clamp(3.75rem, 9.1vw, 8rem);
  line-height: 0.84;
  font-weight: 950;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  width: min(650px, 100%);
  display: grid;
  gap: 0.72em;
  margin: clamp(10px, 1.6vw, 20px) 0 0;
  color: rgba(247, 244, 236, 0.82);
  font-size: clamp(1.14rem, 2.3vw, 1.48rem);
  line-height: 1.46;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mobile-guidance-scene {
  display: none;
}

.device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background: linear-gradient(145deg, #25211b, #050505 48%, #1f1710);
  box-shadow: var(--shadow-strong);
  padding: 13px;
}

.device-primary {
  right: clamp(-24px, 5vw, 82px);
  bottom: clamp(32px, 5vw, 64px);
  width: clamp(260px, 24vw, 312px);
  aspect-ratio: 0.52;
  transform: rotate(6deg);
}

.device-top {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: #040404;
  transform: translateX(-50%);
  z-index: 2;
}

.screen {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  padding: 54px 18px 22px;
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.2), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0b0a08;
  color: white;
}

.screen::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: min(210px, 82%);
  aspect-ratio: 1385 / 143;
  background: url("./assets/dark-horse-wordmark-inverted.png") center / contain no-repeat;
  opacity: 0.075;
}

.screen-wordmark {
  width: 150px;
  margin-bottom: 26px;
}

.screen-pill {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(214, 168, 79, 0.34);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.screen h2 {
  width: min(100%, 248px);
  margin: 14px 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.move-card,
.progress-row,
.mini-action {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.move-card {
  display: grid;
  gap: 4px;
  padding: 13px;
}

.move-card span,
.move-card small,
.progress-row span,
.mini-screen p,
.mini-screen .screen-kicker {
  color: rgba(247, 244, 236, 0.66);
  font-size: 0.82rem;
}

.move-card strong {
  font-size: 1.1rem;
}

.progress-row {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 0 13px;
}

.progress-row strong {
  color: var(--gold);
}

.progress-bar {
  position: relative;
  z-index: 2;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--bronze));
}

.mini-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-screen strong {
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.mini-screen p {
  margin: 10px 0 18px;
  line-height: 1.35;
}

.mini-action {
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 900;
  text-align: center;
  padding: 0 10px;
}

.intervention-card {
  position: absolute;
  left: max(730px, calc(100vw - 760px));
  top: clamp(292px, 45vh, 410px);
  bottom: auto;
  width: min(260px, 22vw);
  min-height: 146px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.16), transparent 52%),
    rgba(17, 16, 14, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 18px;
  transform: rotate(-3deg);
  opacity: 0.92;
}

@media (max-width: 1360px) {
  .intervention-card {
    display: none;
  }
}

.intervention-card span {
  color: rgba(247, 244, 236, 0.62);
  font-size: 0.77rem;
  font-weight: 900;
}

.intervention-card strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.intervention-card p {
  margin: 0;
  color: rgba(247, 244, 236, 0.7);
  font-size: 0.92rem;
  line-height: 1.4;
}

.signal-strip {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.68;
  transform: rotate(-16deg);
}

.signal-one {
  width: 52vw;
  right: -6vw;
  top: 32vh;
}

.signal-two {
  width: 36vw;
  right: 14vw;
  bottom: 22vh;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.waitlist-form {
  width: min(660px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.52fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 8px;
}

.hidden-field {
  display: none;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: rgba(247, 244, 236, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
}

.waitlist-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
  padding: 0 13px;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.waitlist-form input:focus {
  border-color: rgba(214, 168, 79, 0.74);
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.22);
}

.waitlist-form .consent-field {
  grid-column: 1 / -1;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: rgba(247, 244, 236, 0.68);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.waitlist-form .consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gold);
  box-shadow: none;
}

.consent-field a,
.footer-links a,
.legal-main a {
  color: var(--gold);
  text-underline-offset: 3px;
}

.waitlist-form button {
  min-height: 52px;
  border: 1px solid rgba(214, 168, 79, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cream), #c9953e);
  color: #080705;
  padding: 0 18px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.waitlist-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(247, 244, 236, 0.64);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.2em;
  color: var(--gold);
  font-weight: 850;
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.momentum-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.momentum-band p {
  min-height: 88px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px clamp(16px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.09), transparent 44%),
    #0d0c0a;
  color: rgba(247, 244, 236, 0.76);
  font-weight: 850;
  text-align: center;
}

.section {
  padding: clamp(66px, 10vw, 122px) clamp(16px, 5vw, 72px);
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--paper);
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: clamp(26px, 5vw, 46px);
}

.section-heading h2,
.proof-copy h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 5.8vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.feature-card {
  position: relative;
  min-height: 286px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), transparent 50%),
    linear-gradient(180deg, rgba(214, 168, 79, 0.1), rgba(142, 166, 147, 0.06)),
    var(--surface);
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--bronze), var(--sage));
}

.feature-number {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(247, 244, 236, 0.18);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 950;
  line-height: 0.85;
}

.feature-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  line-height: 1.02;
}

.feature-card p,
.proof-copy p {
  position: relative;
  margin: 0;
  color: rgba(247, 244, 236, 0.68);
  line-height: 1.55;
}

.proof-section {
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0.98), rgba(235, 229, 216, 0.98)),
    var(--cream);
  color: #080705;
}

.proof-copy h2,
.proof-copy .eyebrow,
.proof-copy p {
  color: #080705;
}

.proof-copy .eyebrow {
  color: var(--bronze);
}

.proof-copy p {
  margin-top: 18px;
  max-width: 760px;
  color: rgba(8, 7, 5, 0.68);
  font-size: 1.06rem;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 5vw, 52px);
}

.rank-card {
  min-height: 250px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(8, 7, 5, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 244, 236, 0.46));
  box-shadow: 0 18px 42px rgba(8, 7, 5, 0.12);
  padding: clamp(16px, 2.4vw, 22px);
}

.rank-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.rank-card-header span,
.rank-card-header strong {
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rank-card-header strong {
  flex: 0 0 auto;
  color: #8f661f;
  letter-spacing: 0;
}

.rank-card h3 {
  margin: 0;
  color: #080705;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

.rank-card p {
  margin: 0;
  color: rgba(8, 7, 5, 0.64);
  font-weight: 800;
  line-height: 1.35;
}

.rank-card.future-rank {
  border-color: rgba(214, 168, 79, 0.24);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.08), transparent 52%),
    #1b1a16;
  box-shadow: 0 18px 42px rgba(8, 7, 5, 0.18);
}

.rank-card.future-rank h3 {
  color: rgba(247, 244, 236, 0.86);
}

.rank-card.future-rank p {
  color: rgba(247, 244, 236, 0.58);
}

.podcast-note {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(214, 168, 79, 0.1), transparent 42%),
    #080806;
  padding: clamp(54px, 8vw, 92px) clamp(16px, 5vw, 72px);
}

.podcast-note-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 7vw, 88px);
}

.podcast-brandmark {
  position: relative;
  width: min(560px, 100%);
  height: 76px;
  overflow: hidden;
  margin-bottom: 22px;
}

.podcast-brandmark img {
  position: absolute;
  left: calc(-15% + 6px);
  top: 50%;
  width: 116%;
  height: auto;
  transform: translateY(-50%);
}

.podcast-note h2 {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.9;
}

.podcast-note-copy p {
  margin: 0 0 24px;
  color: rgba(247, 244, 236, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}

.instagram-link {
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.instagram-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-icon-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(16px, 5vw, 72px) calc(28px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 244, 236, 0.6);
}

.site-footer img {
  width: min(260px, 68vw);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a {
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(145deg, rgba(214, 168, 79, 0.08), transparent 30%),
    var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.legal-header img {
  width: min(260px, 62vw);
}

.legal-back {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-main {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.legal-main h1 {
  margin: 10px 0 22px;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
}

.legal-intro {
  max-width: 700px;
  margin: 0 0 56px;
  color: rgba(247, 244, 236, 0.72);
  font-size: 1.1rem;
  line-height: 1.65;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.35rem;
}

.legal-section p,
.legal-section li {
  color: rgba(247, 244, 236, 0.7);
  line-height: 1.7;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100svh;
    background-position: center, center, right -240px top 34%;
  }

  .device-primary {
    width: min(292px, 48vw);
    right: -92px;
    bottom: 92px;
  }

  .intervention-card {
    display: none;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: start;
    min-height: 102px;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .site-nav a[href="#momentum"] {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(144px + env(safe-area-inset-top));
    padding-bottom: 40px;
    align-items: center;
    background:
      radial-gradient(circle at 74% 18%, rgba(214, 168, 79, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.94) 52%, rgba(5, 5, 5, 0.99) 100%),
      #050505;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    align-self: auto;
    gap: 14px;
  }

  h1 {
    font-size: clamp(3.1rem, 15.3vw, 5.55rem);
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-visual {
    display: none;
  }

  .mobile-guidance-scene {
    min-height: 344px;
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(156px, 172px);
    align-items: center;
    gap: 8px;
    margin: 4px 0 8px;
  }

  .mobile-guidance-scene .intervention-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 148px;
    display: grid;
    padding: 14px;
    transform: rotate(-2deg);
    z-index: 2;
  }

  .mobile-guidance-scene .intervention-card strong {
    font-size: 1.28rem;
  }

  .mobile-guidance-scene .intervention-card p {
    font-size: 0.82rem;
  }

  .mobile-guidance-scene .device-primary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 172px;
    transform: rotate(3deg);
  }

  .mobile-guidance-scene .device {
    border-radius: 28px;
    padding: 9px;
  }

  .mobile-guidance-scene .device-top {
    top: 13px;
    width: 52px;
    height: 14px;
  }

  .mobile-guidance-scene .screen {
    border-radius: 21px;
    padding: 40px 10px 14px;
  }

  .mobile-guidance-scene .screen-wordmark {
    width: 104px;
    margin-bottom: 12px;
  }

  .mobile-guidance-scene .screen-pill {
    min-height: 25px;
    padding: 0 8px;
    font-size: 0.65rem;
  }

  .mobile-guidance-scene .screen h2 {
    margin: 9px 0 11px;
    font-size: 1.3rem;
  }

  .mobile-guidance-scene .move-card {
    padding: 8px;
  }

  .mobile-guidance-scene .move-card span,
  .mobile-guidance-scene .move-card small,
  .mobile-guidance-scene .progress-row span {
    font-size: 0.66rem;
  }

  .mobile-guidance-scene .move-card strong {
    font-size: 0.82rem;
  }

  .mobile-guidance-scene .progress-row {
    min-height: 38px;
    margin-top: 8px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .mobile-guidance-scene .progress-bar {
    height: 6px;
    margin-top: 8px;
  }

  .momentum-band {
    grid-template-columns: 1fr;
  }

  .momentum-band p {
    min-height: 66px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .rank-grid {
    grid-template-columns: 1fr;
  }

  .rank-card {
    min-height: 0;
  }

  .podcast-note-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .podcast-note h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .podcast-brandmark {
    height: 56px;
    margin-bottom: 18px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .brand-link {
    width: 188px;
  }

  .site-nav {
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 0 10px;
  }

  .waitlist-form button {
    width: 100%;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
