:root {
  --space: #040914;
  --deep-blue: #07172c;
  --panel: #0c213a;
  --panel-light: #122d4b;
  --ink: #f7fbff;
  --muted: #b8cce0;
  --cyan: #59f2ff;
  --lime: #b6ff5c;
  --sun: #ffd15b;
  --pink: #ff72cf;
  --line: rgba(139, 210, 255, .22);
  --display: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  --body: Verdana, "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 11%, rgba(83, 77, 255, .24), transparent 28rem),
    radial-gradient(circle at 12% 44%, rgba(0, 210, 255, .12), transparent 25rem),
    var(--space);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .35;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(89,242,255,.75) 0 1px, transparent 1.4px);
  background-position: 11px 17px, 47px 29px;
  background-size: 97px 97px, 149px 149px;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: .55rem;
  color: #04121d;
  background: var(--cyan);
  font-weight: 800;
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(89, 242, 255, .28);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-family: var(--display);
}

.wordmark-rocket {
  font-size: 1.65rem;
  filter: drop-shadow(0 0 10px rgba(89,242,255,.45));
}

.wordmark strong,
.wordmark small {
  display: block;
}

.wordmark strong {
  font-size: 1rem;
  letter-spacing: .14em;
}

.wordmark small {
  margin-top: -.1rem;
  color: var(--muted);
  font-size: .67rem;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav .nav-play {
  padding: .64rem .95rem;
  border: 1px solid rgba(182,255,92,.52);
  border-radius: .65rem;
  color: var(--lime);
  background: rgba(182,255,92,.08);
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 700px;
  margin: 0 auto;
  padding: 5.8rem 0 5rem;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--cyan);
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--display);
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.2rem, 6.8vw, 6.1rem);
  letter-spacing: -.055em;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--lime) 72%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #06131e;
  background: linear-gradient(110deg, var(--cyan), var(--lime));
  box-shadow: 0 12px 30px rgba(89,242,255,.18);
}

.button-primary:hover {
  box-shadow: 0 15px 36px rgba(89,242,255,.3);
}

.no-account {
  color: var(--ink);
  font-size: .83rem;
  font-weight: 700;
}

.no-account span {
  margin-right: .25rem;
  color: var(--lime);
}

.save-note {
  max-width: 570px;
  margin: 1.35rem 0 0;
  padding-left: .9rem;
  border-left: 2px solid rgba(255,209,91,.72);
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.55;
}

.save-note strong {
  color: var(--sun);
}

.hero-visual {
  position: relative;
  padding-top: 2.6rem;
}

.mission-rail {
  position: absolute;
  left: -11%;
  right: -8%;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: .75rem;
  color: #8bb4d0;
  font-family: var(--display);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.mission-rail i {
  height: 1px;
  background: linear-gradient(90deg, rgba(89,242,255,.25), rgba(182,255,92,.8));
}

.launch-card {
  position: relative;
  isolation: isolate;
  padding: 1.1rem;
  border: 1px solid rgba(111,205,255,.34);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(14,42,74,.9), rgba(5,14,31,.97));
  box-shadow: 0 35px 80px rgba(0,0,0,.42), inset 0 0 40px rgba(89,242,255,.04);
  transform: rotate(1.5deg);
}

.launch-card::before {
  position: absolute;
  inset: 12% -6% -8% 9%;
  z-index: -1;
  border: 1px solid rgba(255,114,207,.16);
  border-radius: 1.6rem;
  content: "";
  transform: rotate(-4deg);
}

.launch-status {
  position: absolute;
  z-index: 2;
  left: 1.9rem;
  top: 1.8rem;
  padding: .62rem .75rem;
  border: 1px solid rgba(89,242,255,.28);
  border-radius: .7rem;
  background: rgba(3,12,29,.8);
  backdrop-filter: blur(8px);
}

.launch-status span,
.launch-status strong {
  display: block;
}

.launch-status span {
  color: var(--cyan);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.launch-status strong {
  margin-top: .12rem;
  font-family: var(--display);
  font-size: .9rem;
}

.app-art {
  width: 100%;
  border-radius: 1rem;
  animation: quiet-drift 5s ease-in-out infinite;
}

.key-route {
  position: absolute;
  left: 50%;
  bottom: 3.6rem;
  width: min(86%, 470px);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: .35rem;
  transform: translateX(-50%) rotate(-1.5deg);
}

.key-route kbd {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(154,217,255,.48);
  border-bottom-width: 4px;
  border-radius: .46rem;
  color: #d8eeff;
  background: rgba(4,16,35,.91);
  font-family: var(--display);
  font-size: clamp(.58rem, 1.1vw, .83rem);
  font-weight: 900;
}

.key-route kbd.active {
  border-color: var(--lime);
  color: #0b1821;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(182,255,92,.75);
  transform: translateY(-10px);
}

.launch-caption {
  margin: .9rem .2rem .1rem;
  color: var(--muted);
  font-size: .69rem;
  text-align: center;
}

.signal-dot {
  width: .48rem;
  height: .48rem;
  margin-right: .38rem;
  display: inline-block;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.proof-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  margin: 0;
  padding: 1.7rem 2rem;
  border-right: 1px solid var(--line);
}

.proof-strip p:first-child {
  padding-left: 0;
}

.proof-strip p:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-family: var(--display);
  font-size: .92rem;
}

.proof-strip span {
  margin-top: .15rem;
  color: var(--muted);
  font-size: .7rem;
}

.how-section,
.access-section {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 7rem 0;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 3.2rem;
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.section-heading h2,
.parent-band h2,
.final-call h2,
.legal-page h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -.045em;
}

.section-heading > p:last-child,
.parent-band p,
.legal-intro {
  color: var(--muted);
}

.flight-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flight-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.flight-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.flight-steps li::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.flight-steps li:nth-child(2)::after {
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

.flight-steps li:nth-child(3)::after {
  background: var(--pink);
  box-shadow: 0 0 16px var(--pink);
}

.step-number {
  color: transparent;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(152, 214, 255, .45);
}

.flight-steps h3,
.access-card h3 {
  margin-bottom: .5rem;
  font-size: 1.35rem;
}

.flight-steps p {
  max-width: 720px;
  margin: 0;
  padding-right: 3rem;
  color: var(--muted);
  font-size: .9rem;
}

.access-section {
  padding-top: 1rem;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.access-card {
  position: relative;
  min-height: 430px;
  padding: clamp(1.6rem, 4vw, 2.7rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(10,31,55,.78);
}

.guest-card {
  border-color: rgba(89,242,255,.48);
  background:
    radial-gradient(circle at 85% 12%, rgba(89,242,255,.15), transparent 17rem),
    rgba(10,31,55,.92);
}

.account-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%) 0 0 / 18px 18px,
    rgba(8,24,43,.72);
}

.card-label {
  width: fit-content;
  margin: 0 0 1.25rem;
  padding: .3rem .55rem;
  border-radius: 999px;
  color: #081923;
  background: var(--lime);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-label.coming {
  color: var(--sun);
  background: rgba(255,209,91,.12);
  box-shadow: inset 0 0 0 1px rgba(255,209,91,.3);
}

.access-card > p:not(.card-label):not(.account-status) {
  margin-top: 0;
  color: var(--muted);
  font-size: .88rem;
}

.check-list {
  margin: 1rem 0 2rem;
  padding: 0;
  display: grid;
  gap: .65rem;
  list-style: none;
  font-size: .82rem;
}

.check-list li::before {
  margin-right: .65rem;
  color: var(--lime);
  content: "✓";
  font-weight: 900;
}

.muted-list li::before {
  color: var(--sun);
  content: "○";
}

.access-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.account-status {
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #91a8ba;
  font-size: .72rem;
  font-weight: 700;
}

.parent-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border: 1px solid rgba(182,255,92,.26);
  border-radius: 1.35rem;
  background:
    linear-gradient(90deg, rgba(182,255,92,.06), transparent 42%),
    rgba(8,27,47,.86);
}

.parent-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.parent-band a {
  color: var(--lime);
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 900;
  text-underline-offset: .3rem;
}

.final-call {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 9rem 0;
  text-align: center;
}

.final-call h2 {
  font-size: clamp(2.7rem, 7vw, 5.7rem);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 2.4rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--muted);
  text-underline-offset: .25rem;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--ink);
}

/* Parent and privacy information */
.legal-page {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  padding: 5rem 0 8rem;
}

.legal-page h1 {
  max-width: 760px;
}

.legal-intro {
  max-width: 760px;
  font-size: 1rem;
}

.legal-summary {
  margin: 2rem 0 3rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(182,255,92,.35);
  border-radius: 1rem;
  color: #dfffc0;
  background: rgba(182,255,92,.07);
}

.legal-summary strong {
  color: var(--lime);
}

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

.legal-section h2 {
  margin-bottom: .75rem;
  font-size: 1.45rem;
  letter-spacing: -.02em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: .88rem;
}

.legal-section ul {
  padding-left: 1.25rem;
}

.legal-section a {
  color: var(--cyan);
  text-underline-offset: .25rem;
}

.legal-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.text-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: .75rem 1rem;
  color: var(--cyan);
  font-weight: 800;
  text-underline-offset: .3rem;
}

@keyframes quiet-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 4rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(630px, 100%);
    margin: 0 auto;
  }

  .proof-strip,
  .parent-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip p,
  .proof-strip p:first-child {
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip p:last-child {
    border-bottom: 0;
  }

  .site-footer {
    gap: 1rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 78px;
  }

  .site-nav > a:not(.nav-play) {
    display: none;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    padding: 3.2rem 0 4rem;
    gap: 4rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .mission-rail {
    left: 0;
    right: 0;
  }

  .launch-card {
    transform: none;
  }

  .launch-card::before {
    display: none;
  }

  .launch-status {
    left: 1.2rem;
    top: 1.2rem;
  }

  .key-route {
    bottom: 3rem;
  }

  .proof-strip,
  .how-section,
  .access-section,
  .parent-band,
  .final-call,
  .site-footer,
  .legal-page {
    width: min(100% - 28px, 1180px);
  }

  .how-section,
  .access-section {
    padding: 5rem 0;
  }

  .flight-steps li {
    grid-template-columns: 68px 1fr;
    gap: .6rem;
  }

  .flight-steps li::after {
    display: none;
  }

  .flight-steps p {
    padding-right: 0;
  }

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

  .access-card {
    min-height: 390px;
  }

  .parent-band {
    padding: 2.3rem 1.4rem;
  }

  .final-call {
    padding: 6rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
