:root {
  --bg-1: #04050a;
  --bg-2: #0a0d14;
  --bg-3: #12111d;
  --white: #fff9fc;
  --muted: rgba(255, 244, 249, 0.72);
  --muted-strong: rgba(255, 244, 249, 0.86);
  --pink-core: #fff3fa;
  --pink-light: #ffc6e3;
  --pink-hot: #ff73bc;
  --pink-main: #ff4fa4;
  --pink-deep: #ff228d;
  --violet: #9f63ff;
  --cyan: #55d6ff;
  --surface: rgba(10, 12, 19, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 79, 164, 0.15), transparent 24%),
    radial-gradient(circle at 20% 85%, rgba(159, 99, 255, 0.12), transparent 20%),
    radial-gradient(circle at 82% 28%, rgba(85, 214, 255, 0.08), transparent 18%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  opacity: 0.08;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 100% 44px,
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 120px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), #000 32%, rgba(0, 0, 0, 0.3));
}

body::after {
  background: radial-gradient(circle at 50% 50%, transparent 56%, rgba(0, 0, 0, 0.28) 100%);
}

.launch-stage {
  position: relative;
  display: grid;
  gap: 48px;
  padding: 32px 32px 56px;
  isolation: isolate;
}

.launch-stage__grid {
  position: fixed;
  inset: auto 50% 0;
  width: min(980px, 92vw);
  height: 38vh;
  transform: translateX(-50%) perspective(520px) rotateX(76deg);
  transform-origin: center top;
  opacity: 0.24;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 40px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 56px 100%;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), transparent 82%);
  pointer-events: none;
}

.launch-stage__ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.launch-stage__ambient--pink {
  width: 380px;
  height: 380px;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 79, 164, 0.34) 0%, rgba(255, 79, 164, 0) 72%);
}

.launch-stage__ambient--purple {
  width: 280px;
  height: 280px;
  bottom: 12%;
  right: 10%;
  background: radial-gradient(circle, rgba(159, 99, 255, 0.18) 0%, rgba(159, 99, 255, 0) 72%);
}

.launch-stage__ambient--blue {
  width: 220px;
  height: 220px;
  top: 20%;
  left: 10%;
  background: radial-gradient(circle, rgba(85, 214, 255, 0.12) 0%, rgba(85, 214, 255, 0) 74%);
}

.neon-sign,
.launch-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.neon-sign {
  padding: clamp(34px, 5vw, 54px) clamp(26px, 4vw, 44px) 32px;
  text-align: center;
  border-radius: 2.8rem;
  border: 1px solid rgba(255, 239, 247, 0.42);
  background: linear-gradient(180deg, rgba(10, 12, 19, 0.82), rgba(7, 9, 15, 0.72));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 20px 60px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(255, 79, 164, 0.18),
    0 0 80px rgba(255, 34, 141, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 0 26px rgba(255, 79, 164, 0.08);
  backdrop-filter: blur(16px);
}

.neon-sign::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -16%;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 164, 0.28), rgba(255, 79, 164, 0) 68%);
  filter: blur(22px);
  opacity: 0.7;
  pointer-events: none;
}

.neon-sign__frame {
  position: absolute;
  inset: 14px;
  border-radius: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.neon-sign__support {
  position: absolute;
  top: -120px;
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.34));
  box-shadow: 0 0 10px rgba(255,255,255,0.12);
  opacity: 0.7;
}

.neon-sign__support--left { left: 22%; }
.neon-sign__support--right { right: 22%; }

.neon-sign__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.neon-sign__kicker,
.neon-sign__status,
.launch-panel__eyebrow,
.launch-signal-item__kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.neon-sign__status { color: rgba(255, 255, 255, 0.5); }

.neon-sign__logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,0.8))
    drop-shadow(0 0 18px rgba(255, 79, 164, 0.2));
}

.neon-sign__title {
  margin: 0;
  font-family: "Poiret One", cursive;
  font-size: clamp(4rem, 11vw, 7.4rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  text-transform: uppercase;
  color: var(--pink-core);
  text-shadow:
    0 0 1px rgba(255,255,255,0.95),
    0 0 4px rgba(255,255,255,0.9),
    0 0 10px rgba(255, 198, 227, 0.92),
    0 0 18px rgba(255, 115, 188, 0.9),
    0 0 38px rgba(255, 79, 164, 0.72),
    0 0 72px rgba(255, 34, 141, 0.48),
    0 0 110px rgba(255, 34, 141, 0.28);
}

.neon-sign__subtitle {
  width: min(500px, 100%);
  margin: 20px auto 24px;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.6;
  color: var(--muted-strong);
}

.neon-sign__meta,
.neon-sign__countdown,
.launch-panel__grid,
.launch-form__grid,
.launch-signal-list {
  display: grid;
}

.neon-sign__meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 100%);
  margin: 0 auto 24px;
}

.neon-sign__meta-card,
.launch-card,
.launch-signal-item,
.launch-field input,
.launch-field select,
.launch-field textarea {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.neon-sign__meta-card {
  display: grid;
  gap: 4px;
  padding: 14px 14px 13px;
  text-align: left;
  border-radius: 18px;
}

.neon-sign__meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.neon-sign__meta-card strong {
  font-size: 0.96rem;
  line-height: 1.2;
  color: var(--white);
}

.neon-sign__meta-card span:last-child {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.neon-sign__countdown {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(620px, 100%);
  margin: 0 auto;
}

.neon-sign__unit {
  position: relative;
  padding: 18px 10px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 18px rgba(255, 79, 164, 0.035),
    0 0 20px rgba(255, 79, 164, 0.04);
}

.neon-sign__unit::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
}

.neon-sign__value {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.neon-sign__label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.neon-sign__pills,
.neon-sign__actions,
.launch-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.neon-sign__pills {
  width: min(640px, 100%);
  margin: 18px auto 0;
}

.neon-sign__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255,255,255,0.04);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.neon-sign__actions {
  margin-top: 20px;
}

.launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.launch-button:hover,
.launch-button:focus-visible {
  transform: translateY(-1px);
}

.launch-button--primary {
  color: #170912;
  background: linear-gradient(180deg, #ffd7ec, #ff8bc5);
  box-shadow: 0 10px 24px rgba(255, 79, 164, 0.22);
}

.launch-button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.neon-sign__footnote {
  margin: 18px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}

.launch-strip,
.launch-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.launch-strip__card,
.launch-panel {
  padding: 30px;
  border-radius: 2.2rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.82), rgba(8, 10, 18, 0.7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.launch-strip__card {
  padding: 18px 20px;
}

.launch-strip__label,
.launch-surface-card__eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 198, 227, 0.72);
}

.launch-strip__card strong,
.launch-surface-card strong {
  display: block;
  line-height: 1.45;
}

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

.launch-surface-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  text-decoration: none;
  color: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.launch-surface-card:hover,
.launch-surface-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 115, 188, 0.32);
}

.launch-surface-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.launch-surface-card--admin {
  background: linear-gradient(180deg, rgba(255, 79, 164, 0.08), rgba(255,255,255,0.03));
}

.launch-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.launch-route-grid--tight {
  margin-bottom: 0;
}

.launch-route-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
}

.launch-route-card__eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 198, 227, 0.72);
}

.launch-route-card p {
  margin: 0;
  color: var(--muted-strong);
}

.launch-route-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.launch-closing,
.launch-closing__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.launch-closing__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.launch-panel--surface-map,
.launch-panel--closing {
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.86), rgba(8, 10, 18, 0.72));
}

.launch-panel--closing h2 {
  margin: 8px 0 10px;
}

.launch-panel--closing .launch-panel__lead {
  max-width: 60ch;
}

.launch-panel__intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.launch-panel__eyebrow { color: rgba(255, 198, 227, 0.72); }

.launch-panel__intro h2,
.launch-card__header h3,
.launch-card--signal h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.08;
}

.launch-panel__lead,
.launch-card__header p,
.launch-signal-item p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.launch-panel__grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: start;
}

.launch-card {
  padding: 22px;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.launch-card--signal h3 { font-size: 1.3rem; }

.launch-signal-list {
  gap: 14px;
  margin-top: 18px;
}

.launch-signal-item {
  gap: 8px;
  padding: 16px;
  border-radius: 1.2rem;
}

.launch-signal-item strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.launch-card__header p { max-width: 42ch; }

.launch-form {
  margin-top: 18px;
}

.launch-form__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.launch-field {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.launch-field--wide {
  grid-column: 1 / -1;
}

.launch-field input,
.launch-field select,
.launch-field textarea {
  width: 100%;
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--white);
  font: inherit;
  outline: none;
}

.launch-field textarea {
  resize: vertical;
  min-height: 112px;
}

.launch-field input::placeholder,
.launch-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.launch-field input:focus,
.launch-field select:focus,
.launch-field textarea:focus {
  border-color: rgba(255, 115, 188, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 0 0 3px rgba(255, 79, 164, 0.12);
}

.launch-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.launch-consent input {
  margin-top: 3px;
  accent-color: var(--pink-main);
}

.launch-form__actions {
  justify-content: flex-start;
  margin-top: 18px;
}

.launch-form button {
  cursor: pointer;
}

.launch-form button:disabled {
  opacity: 0.7;
  cursor: progress;
}

.launch-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.launch-feedback.is-success { color: #b8ffd8; }
.launch-feedback.is-error { color: #ffb8d4; }
.launch-feedback.is-info { color: #c9d6ff; }

.launch-footer {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.launch-footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-footer p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

.launch-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.launch-footer__links a,
.legal-links a {
  color: var(--muted-strong);
  text-decoration: none;
}

.launch-footer__links a:hover,
.legal-links a:hover {
  color: var(--white);
}

.launch-stage--legal {
  min-height: 100vh;
  align-content: start;
}

.legal-shell {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 12, 19, 0.84), rgba(7, 9, 15, 0.76));
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.legal-shell h1,
.legal-shell h2 {
  margin-top: 0;
}

.legal-shell h1 {
  font-family: "Poiret One", cursive;
  font-size: clamp(2.3rem, 6vw, 4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-core);
}

.legal-shell h2 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.legal-shell p,
.legal-shell li {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .neon-sign__title {
    animation: neon-pulse 3.2s ease-in-out infinite alternate;
  }

  .neon-sign__logo {
    animation: logo-float 5s ease-in-out infinite;
  }
}

@keyframes neon-pulse {
  0% {
    text-shadow:
      0 0 1px rgba(255,255,255,0.92),
      0 0 3px rgba(255,255,255,0.84),
      0 0 8px rgba(255, 198, 227, 0.82),
      0 0 15px rgba(255, 115, 188, 0.74),
      0 0 30px rgba(255, 79, 164, 0.6),
      0 0 58px rgba(255, 34, 141, 0.38),
      0 0 84px rgba(255, 34, 141, 0.22);
  }
  100% {
    text-shadow:
      0 0 1px rgba(255,255,255,0.98),
      0 0 4px rgba(255,255,255,0.92),
      0 0 10px rgba(255, 198, 227, 0.96),
      0 0 18px rgba(255, 115, 188, 0.92),
      0 0 38px rgba(255, 79, 164, 0.72),
      0 0 72px rgba(255, 34, 141, 0.48),
      0 0 110px rgba(255, 34, 141, 0.28);
  }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 920px) {
  .launch-panel__grid,
  .launch-strip,
  .launch-surface-grid,
  .launch-route-grid {
    grid-template-columns: 1fr;
  }

  .launch-closing {
    display: grid;
  }

  .launch-closing__actions {
    justify-content: flex-start;
  }
}

.paywall-state-card {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.paywall-state-meta,
.paywall-toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.paywall-state-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 720px) {
  .launch-stage {
    gap: 28px;
    padding: 20px 20px 40px;
  }

  .launch-stage__grid {
    width: 120vw;
    height: 28vh;
    bottom: 2%;
  }

  .neon-sign {
    width: min(560px, 100%);
    border-radius: 2rem;
    padding: 28px 20px 24px;
  }

  .neon-sign__frame { inset: 10px; border-radius: 1.5rem; }

  .neon-sign__header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .neon-sign__support { display: none; }
  .neon-sign__meta { grid-template-columns: 1fr; }
  .neon-sign__meta-card { text-align: center; }
  .neon-sign__countdown { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .neon-sign__title {
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }

  .neon-sign__pill,
  .launch-button {
    width: 100%;
  }

  .launch-strip,
  .launch-panel {
    width: min(560px, 100%);
  }

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

  .launch-strip__card,
  .launch-panel {
    padding: 22px 16px;
    border-radius: 1.8rem;
  }

  .launch-surface-grid {
    grid-template-columns: 1fr;
  }

  .launch-form__grid {
    grid-template-columns: 1fr;
  }

  .launch-form__actions,
  .launch-closing__actions,
  .launch-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .launch-footer__links {
    justify-content: flex-start;
  }

  .launch-consent {
    font-size: 0.92rem;
  }

  .neon-sign__footnote { font-size: 0.72rem; }
}

/* Public production cleanup */
.launch-stage {
  gap: 32px;
}

.launch-strip,
#waitlist,
#surface-map,
section[aria-labelledby="launch-journey-title"],
section[aria-labelledby="unlock-map-title"],
.launch-panel--closing {
  display: none;
}

.neon-sign,
.launch-panel {
  width: min(980px, 100%);
}

.launch-panel--closing {
  max-width: 820px;
}

.neon-sign__subtitle,
.launch-panel__lead {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.neon-sign__actions,
.launch-closing__actions {
  justify-content: center;
}

/* Final home reset */
.launch-stage {
  gap: 24px;
  padding-bottom: 72px;
}

.neon-sign {
  max-width: 900px;
}

.neon-sign__meta,
.neon-sign__countdown {
  display: none;
}

.neon-sign__subtitle {
  max-width: 34rem;
}

.launch-panel {
  max-width: 1080px;
}

.surface-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .surface-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .surface-link-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
