@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 400 600;
}

@font-face {
  font-family: "Jost";
  src: url("/fonts/jost-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 500;
}

:root {
  color-scheme: dark;
  --fg-void: #080711;
  --fg-night: #0B0917;
  --fg-indigo: #171331;
  --fg-eclipse: #050409;
  --fg-gold: #D8B97C;
  --fg-gold-lit: #EFD9A7;
  --fg-gold-55: rgba(216,185,124,.55);
  --fg-gold-35: rgba(216,185,124,.35);
  --fg-gold-28: rgba(216,185,124,.28);
  --fg-gold-25: rgba(216,185,124,.25);
  --fg-gold-16: rgba(216,185,124,.16);
  --fg-gold-04: rgba(216,185,124,.04);
  --fg-ivory: #EFEADB;
  --fg-ivory-90: rgba(239,234,219,.9);
  --fg-ivory-72: rgba(233,228,216,.72);
  --fg-ivory-60: rgba(233,228,216,.6);
  --fg-ivory-50: rgba(233,228,216,.5);
  --gutter: 26px;
  --section-top: 44px;
  --section-bottom: 52px;
  --content-max: 1312px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--fg-void);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--fg-void);
  color: var(--fg-ivory);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

button,
a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

a {
  color: var(--fg-gold);
  text-decoration: none;
  transition: color 320ms var(--ease);
}

a:hover { color: var(--fg-gold-lit); }

:focus-visible {
  outline: 1px solid var(--fg-gold-lit);
  outline-offset: 3px;
}

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

h1,
.section-heading h2,
.night-loop h2,
.honest-card h2 {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  min-height: 44px;
  background: var(--fg-ivory);
  color: var(--fg-void);
  transform: translateY(-160%);
  transition: transform 200ms var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: radial-gradient(140% 60% at 50% 4%, #171331 0%, #0B0917 45%, #080711 100%);
}

.stars-layer {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("/stars.png") top center / 1024px auto repeat-y;
  opacity: .5;
  pointer-events: none;
  will-change: transform;
}

.device-status {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 0;
  color: rgba(233,228,216,.55);
  font-size: 11px;
  letter-spacing: .5px;
}

.device-status span:last-child {
  font-size: 7px;
  letter-spacing: 2px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 24px;
}

.wordmark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--fg-ivory);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 6px;
}

.mobile-price-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 3px;
}

.desktop-nav { display: none; }

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px var(--gutter) var(--section-bottom);
  text-align: center;
}

.hero-copy,
.hero-player {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  color: var(--fg-gold);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 3.5px;
  line-height: 1.5;
  text-align: center;
}

.hero h1 {
  margin-top: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.04;
}

.hero-body {
  margin-top: 20px;
  color: var(--fg-ivory-60);
  font-size: 14px;
  line-height: 1.7;
}

.hero-download { display: none; }

.hero-player { width: 100%; }

.orb {
  position: relative;
  width: 238px;
  height: 238px;
  margin-top: 40px;
  padding: 0;
  appearance: none;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  animation: breathe 6s ease-in-out infinite;
}

.orb.is-playing { animation-play-state: paused; }

.orb-halo {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,185,124,.15) 0%, rgba(216,185,124,0) 70%);
  animation: glowpulse 6s ease-in-out infinite;
}

.orb.is-playing .orb-halo { animation-play-state: paused; }

.orb-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ring-track,
.ring-progress { fill: none; }

.ring-track {
  stroke: rgba(216,185,124,.18);
  stroke-width: 1;
}

.ring-progress {
  stroke: var(--fg-gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 691.15;
  stroke-dashoffset: 414.69;
  transform: rotate(-90deg);
  transform-origin: 119px 119px;
}

.ring-head { fill: var(--fg-gold-lit); }

.orb-body {
  position: absolute;
  inset: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: .5px solid var(--fg-gold-25);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #1B1636 0%, #0D0A1C 65%);
  box-shadow: inset 0 0 40px rgba(0,0,0,.6);
}

.play-glyph {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid var(--fg-gold);
}

.pause-glyph {
  display: none;
  gap: 9px;
}

.pause-glyph i {
  width: 2.5px;
  height: 26px;
  background: var(--fg-gold);
}

.orb.is-playing .play-glyph { display: none; }
.orb.is-playing .pause-glyph { display: flex; }

.sample-label,
.sound-caption {
  margin-top: 26px;
  color: var(--fg-gold);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 3.5px;
}

.sound-caption {
  margin-top: 16px;
  line-height: 1.5;
}

.transcript {
  min-height: 90px;
  margin-top: 16px;
  color: var(--fg-ivory-90);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

.transcript-phrase::before { content: " "; }
.transcript-phrase:first-child::before { content: "“"; }
.transcript-phrase:last-child::after { content: "”"; }
.js .transcript-phrase { display: none; }
.js .transcript-phrase.is-spoken,
.js .transcript-phrase.is-current { display: inline; }
.js .transcript-phrase.is-spoken { color: var(--fg-ivory-90); }
.js .transcript-phrase.is-current { color: var(--fg-ivory); }
.js .transcript.show-all .transcript-phrase { display: inline; }

.section {
  position: relative;
  padding: 0 var(--gutter) var(--section-bottom);
}

.section::before {
  display: block;
  margin-bottom: var(--section-top);
  border-top: .5px solid var(--fg-gold-28);
  content: "";
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.section-heading h2,
.night-loop h2,
.honest-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
}

.method-grid {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
}

.method-grid article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
}

.method-grid article:not(:last-child) { border-bottom: .5px solid var(--fg-gold-16); }

.roman {
  color: var(--fg-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
}

.method-grid h2,
.card h3,
.correction-grid h3,
.privacy-grid h2 {
  color: var(--fg-gold);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
  line-height: 1.5;
}

.method-grid p,
.card p {
  margin-top: 8px;
  color: var(--fg-ivory-72);
  font-size: 14px;
  line-height: 1.65;
}

.voice-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.card {
  padding: 20px 22px;
  border: .5px solid var(--fg-gold-35);
  background: var(--fg-gold-04);
  text-align: left;
}

.card-emphasis { border-color: var(--fg-gold-55); }

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-title h3 { color: var(--fg-gold-lit); }

.card-title span {
  padding: 3px 8px;
  background: var(--fg-gold);
  color: var(--fg-void);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 2px;
}

.correction-grid {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  text-align: left;
}

.correction-grid article {
  padding: 16px 18px;
  border: .5px solid var(--fg-gold-16);
}

.correction-grid h3 {
  margin-bottom: 8px;
  color: var(--fg-ivory-50);
  font-size: 8.5px;
}

.correction-grid p {
  color: var(--fg-ivory-50);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
}

.correction-grid .incorrect {
  text-decoration: line-through;
  text-decoration-color: rgba(216,185,124,.7);
  text-decoration-thickness: .5px;
}

.correction-grid .corrected {
  border-color: var(--fg-gold-35);
  background: var(--fg-gold-04);
}

.correction-grid .corrected h3 { color: var(--fg-gold); }
.correction-grid .corrected p { color: var(--fg-ivory); }

.section-body {
  margin-top: 28px;
  color: var(--fg-ivory-60);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.night-loop {
  position: relative;
  margin-top: -10px;
  padding: 70px var(--gutter);
  background: linear-gradient(180deg, rgba(8,7,17,0) 0%, #050409 22%, #050409 78%, rgba(8,7,17,0) 100%);
}

.night-loop-inner,
.night-loop-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.night-loop-inner { gap: 30px; }
.night-loop-copy { gap: 22px; text-align: center; }
.night-loop h2 { font-size: 34px; line-height: 1.1; }

.night-loop-copy > p:last-child {
  max-width: 290px;
  color: rgba(233,228,216,.55);
  font-size: 14px;
  line-height: 1.7;
}

.capture-frame {
  overflow: hidden;
  border: .5px solid var(--fg-gold-28);
  background: var(--fg-night);
}

.capture-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.night-capture {
  width: 134px;
  height: 290px;
  border-color: rgba(216,185,124,.2);
}

.board {
  position: relative;
  padding: 52px var(--gutter);
}

.board-captures {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.board-captures .capture-frame {
  width: min(118px, 34vw);
  height: 256px;
}
.capture-rounded { border-radius: 16px; }

.board-captures > span {
  flex: 0 0 auto;
  color: var(--fg-gold);
  font-size: 14px;
}

.price {
  position: relative;
  padding: 0 var(--gutter) var(--section-bottom);
}

.honest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 26px;
  border: .5px solid var(--fg-gold-55);
  background: var(--fg-gold-04);
  text-align: center;
}

.honest-card h2 { margin-top: 18px; font-size: 29px; }

.short-rule {
  width: 44px;
  height: .5px;
  margin: 26px 0;
  background: rgba(216,185,124,.4);
}

.price-figure {
  color: var(--fg-gold-lit);
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  line-height: 1;
}

.price-unit {
  margin-top: 8px;
  color: var(--fg-gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
}

.year-price {
  margin-top: 20px;
  color: var(--fg-ivory-72);
  font-size: 14px;
}

.price-promise {
  color: var(--fg-ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
}

.app-store-badge {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  padding: 9px 18px;
  border: 1px solid rgba(239,234,219,.4);
  border-radius: 9px;
  background: #000;
  color: var(--fg-ivory);
  text-align: left;
}

.app-store-badge:hover { color: var(--fg-ivory); border-color: rgba(239,234,219,.72); }
.app-store-badge svg { width: 21px; height: 25px; fill: currentColor; }
.app-store-badge > span { display: flex; flex-direction: column; line-height: 1; }
.app-store-badge small { font-size: 9px; font-weight: 300; letter-spacing: .6px; }
.app-store-badge strong { margin-top: 4px; font-size: 18px; font-weight: 400; letter-spacing: -.2px; }

.app-store-badge-compact {
  gap: 8px;
  margin: 0;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.app-store-badge-compact svg { width: 16px; height: 19px; }
.app-store-badge-compact > span { display: block; }

.privacy-grid { margin-top: 12px; }

.privacy-grid article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.privacy-grid article:not(:last-child) { border-bottom: .5px solid var(--fg-gold-16); }
.privacy-grid h2 { flex: 0 0 auto; }

.privacy-grid p {
  max-width: 190px;
  color: rgba(233,228,216,.65);
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 var(--gutter);
  padding: 26px 0 96px;
  border-top: .5px solid var(--fg-gold-25);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand img { border-radius: 11px; }

.footer-brand span {
  color: var(--fg-ivory);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 6px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 20px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
}

.site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer p {
  color: var(--fg-ivory-50);
  font-size: 12px;
  line-height: 1.8;
}

.sticky-cta {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 22px calc(18px + env(safe-area-inset-bottom));
  border-top: .5px solid var(--fg-gold-25);
  background: linear-gradient(180deg, rgba(8,7,17,.8) 0%, rgba(8,7,17,.98) 40%);
  transition: opacity 320ms var(--ease), visibility 320ms var(--ease);
}

.sticky-cta > span {
  color: rgba(239,234,219,.85);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
}

.js .sticky-cta {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.js .sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.is-playing .sticky-cta {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes glowpulse { 0%,100% { opacity: .55; } 50% { opacity: .9; } }
@keyframes settle { from { transform: translateY(12px); } to { transform: translateY(0); } }

.js .hero-copy,
.js .hero-player,
.js .section,
.js .night-loop-inner,
.js .board,
.js .price { animation: settle 400ms var(--ease) both; }
.js .hero-player { animation-delay: 60ms; }

@media (min-width: 768px) {
  :root {
    --gutter: 44px;
    --section-top: 52px;
    --section-bottom: 72px;
  }

  .device-status { display: none; }
  .site-header { padding: 26px var(--gutter); }
  .hero { padding-top: 36px; }
  .hero h1 { max-width: 660px; font-size: 66px; }
  .hero-body { max-width: 500px; font-size: 15.5px; }
  .orb { width: 290px; height: 290px; }
  .orb-body { inset: 33px; }
  .transcript { max-width: 620px; font-size: 21px; }
  .section-heading h2 { font-size: 37px; }

  .voice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pro-card { grid-column: 1 / -1; }
  .night-capture { width: 157px; height: 340px; }
  .board-captures { gap: 24px; }
  .board-captures .capture-frame { width: 180px; height: 390px; }
  .honest-card { max-width: 560px; margin: 0 auto; padding: 46px 40px; }
  .privacy-grid p { max-width: 420px; }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 64px;
    --section-top: 56px;
    --section-bottom: 110px;
  }

  .site-shell { background: radial-gradient(120% 60% at 50% 2%, #171331 0%, #0B0917 45%, #080711 100%); }
  .site-header {
    position: sticky;
    top: 0;
    max-width: 100%;
    padding: 22px max(64px, calc((100vw - var(--content-max)) / 2));
    border-bottom: .5px solid var(--fg-gold-25);
    background: linear-gradient(180deg, rgba(11,9,23,.98), rgba(8,7,17,.9));
    backdrop-filter: blur(8px);
  }

  .wordmark { font-size: 15px; letter-spacing: 7px; }
  .mobile-price-link { display: none; }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 3px;
  }

  .desktop-nav > a:not(.app-store-badge) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .desktop-nav .app-store-badge { letter-spacing: 0; }

  .hero {
    min-height: 720px;
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: center;
    padding: 74px var(--gutter) 110px;
    text-align: left;
  }

  .hero-copy { align-items: flex-start; }
  .hero-copy .eyebrow { text-align: left; }
  .hero h1 { max-width: 670px; margin-top: 26px; font-size: clamp(70px, 6.1vw, 88px); line-height: 1.02; letter-spacing: -1px; }
  .hero-body { max-width: 440px; margin-top: 30px; font-size: 17px; line-height: 1.65; }

  .hero-download {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 44px;
  }

  .hero-download .app-store-badge { margin: 0; }

  .first-note-label {
    color: var(--fg-gold);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 3px;
  }

  .orb { width: 340px; height: 340px; margin-top: 0; }
  .orb-body { inset: 38px; box-shadow: inset 0 0 60px rgba(0,0,0,.6); }
  .orb-halo { inset: -30px; }
  .play-glyph { border-top-width: 16px; border-bottom-width: 16px; border-left-width: 26px; margin-left: 8px; }
  .sample-label { font-size: 10px; }
  .transcript { max-width: 430px; min-height: 102px; font-size: 22px; line-height: 1.45; text-align: center; }

  .section,
  .board,
  .price,
  .site-footer { max-width: var(--content-max); margin-right: auto; margin-left: auto; }

  .method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 44px;
    background: var(--fg-gold-16);
  }

  .method-grid article {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    gap: 14px;
    padding: 40px 36px;
    border: 0 !important;
    background: var(--fg-night);
  }

  .roman { font-size: 30px; }
  .method-grid h2,
  .card h3,
  .privacy-grid h2 { font-size: 10.5px; }
  .method-grid p,
  .card p { margin-top: 0; font-size: 16px; }

  .section-heading h2,
  .honest-card h2 { font-size: 44px; line-height: 1.1; }

  .voice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .voice-grid .card { min-height: 175px; }
  .pro-card { grid-column: auto; }

  .correction-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .correction-grid article { padding: 28px 30px; }
  .correction-grid p { font-size: 22px; }
  .section-body { max-width: 620px; margin-right: auto; margin-left: auto; font-size: 17px; }

  .night-loop { padding: 96px var(--gutter); }
  .night-loop-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 184px 1fr;
    gap: 100px;
    align-items: center;
  }

  .night-capture { width: 184px; height: 400px; }
  .night-loop-copy { align-items: flex-start; text-align: left; }
  .night-loop-copy .eyebrow { text-align: left; }
  .night-loop h2 { font-size: 56px; line-height: 1.05; }
  .night-loop-copy > p:last-child { max-width: 440px; font-size: 17px; }

  .board { padding-top: 84px; padding-bottom: 110px; }
  .board-captures { gap: 40px; margin-top: 50px; }
  .board-captures .capture-frame { width: 157px; height: 340px; }
  .board-captures > span { font-size: 20px; }

  .honest-card { width: 620px; max-width: 100%; padding: 56px; }
  .honest-card h2 { margin-top: 22px; }
  .short-rule { margin: 32px 0; }
  .price-figure { font-size: 68px; }
  .year-price { font-size: 16px; }
  .price-promise { font-size: 26px; }
  .honest-card .app-store-badge { margin-top: 36px; }

  .privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 32px;
  }

  .privacy-grid article {
    display: block;
    min-height: 150px;
    padding: 8px 28px;
  }

  .privacy-grid article:first-child { padding-left: 0; }
  .privacy-grid article:last-child { padding-right: 0; }
  .privacy-grid article:not(:last-child) { border-right: 1px solid var(--fg-gold-16); border-bottom: 0; }
  .privacy-grid p { max-width: none; margin-top: 16px; font-size: 14px; text-align: left; }

  .site-footer {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 32px 0 56px;
    text-align: left;
  }

  .footer-brand { flex-direction: row; gap: 16px; }
  .footer-brand img { width: 40px; height: 40px; border-radius: 9px; }
  .site-footer nav { justify-content: center; gap: 28px; font-size: 10px; }
  .site-footer p { text-align: right; }
  .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .stars-layer { transform: none !important; }
}
