:root {
  --bg: #07070d;
  --bg-soft: rgba(17, 18, 33, 0.72);
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: #aeb5d6;
  --primary: #7c5cff;
  --secondary: #20d9ff;
  --accent: #ff4ecd;
  --success: #72f2b1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --px: 0;
  --py: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 92, 255, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(32, 217, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom center, rgba(255, 78, 205, 0.18), transparent 30%),
    var(--bg);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(10, 12, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
  z-index: 20;
}

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

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

#bgParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.aurora {
  position: absolute;
  inset: -30% -20% -30% -20%;
  background:
    radial-gradient(circle at 15% 35%, rgba(124, 92, 255, 0.28), transparent 46%),
    radial-gradient(circle at 70% 30%, rgba(32, 217, 255, 0.22), transparent 44%),
    radial-gradient(circle at 55% 80%, rgba(255, 78, 205, 0.22), transparent 48%),
    radial-gradient(circle at 25% 85%, rgba(114, 242, 177, 0.16), transparent 50%);
  filter: blur(26px);
  transform: translate3d(0, 0, 0);
  animation: auroraShift 18s ease-in-out infinite;
}

.blob {
  position: absolute;
  width: clamp(320px, 40vw, 580px);
  height: clamp(320px, 40vw, 580px);
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.16;
  transform: translate3d(0, 0, 0);
  animation: blobFloat 14s ease-in-out infinite;
}

.blob-one {
  left: -12%;
  top: -18%;
  background: radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.75), transparent 60%);
  animation-duration: 16s;
}

.blob-two {
  right: -14%;
  top: 16%;
  background: radial-gradient(circle at 40% 40%, rgba(32, 217, 255, 0.7), transparent 62%);
  animation-duration: 18s;
  animation-delay: -6s;
}

.blob-three {
  left: 18%;
  bottom: -22%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 78, 205, 0.68), transparent 62%);
  animation-duration: 20s;
  animation-delay: -10s;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  background-size: 100% 4px;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 0;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7, 7, 13, 0.78), rgba(7, 7, 13, 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  width: min(1240px, calc(100% - clamp(20px, 3vw, 36px)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar-logo {
  width: 84px;
  height: 30px;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.14));
}

.topbar-name {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e9edff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.topbar-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.topbar-nav a:focus-visible {
  outline: 0;
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.18);
}

.page-shell {
  width: min(1240px, calc(100% - clamp(20px, 3vw, 36px)));
  margin: 0 auto;
  padding: 18px 0 40px;
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  gap: clamp(20px, 2.6vw, 34px);
  align-items: start;
  min-height: clamp(620px, calc(100vh - 96px), 740px);
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card[data-reveal] {
  transform: translateY(12px);
  opacity: 0;
}

.hero-card.is-in {
  animation: popIn 0.72s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

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

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.25), transparent 65%);
  filter: blur(16px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.brand-logo-crop {
  width: clamp(112px, 12vw, 142px);
  height: clamp(40px, 4vw, 54px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  width: clamp(165px, 22vw, 230px);
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  margin-left: -8px;
  margin-right: -18px;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.14))
    drop-shadow(0 0 36px rgba(124, 92, 255, 0.16));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d9deff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #dfe5ff;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 0 0 5px rgba(32, 217, 255, 0.12);
}

.hero-copy h1 {
  margin: 16px 0 16px;
  max-width: 13ch;
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero-title-line {
  display: inline;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #d8ccff 35%, #8deaff 68%, #ff8dda 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(124, 92, 255, 0.14);
}

.lead {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-group {
  margin-top: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 1px rgba(124, 92, 255, 0.55),
    0 0 0 4px rgba(124, 92, 255, 0.18);
}

.btn-primary {
  border-color: rgba(124, 92, 255, 0.28);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(255, 78, 205, 0.92));
  color: white;
  box-shadow: 0 14px 36px rgba(124, 92, 255, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(124, 92, 255, 0.38);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.notify-form {
  display: grid;
  gap: 12px;
  padding: 12px;
  max-width: 720px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(8, 10, 20, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.notify-form input,
.notify-form textarea {
  padding: 16px 18px;
  border: 0;
  outline: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.notify-form input:focus,
.notify-form textarea:focus {
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(124, 92, 255, 0.45),
    0 0 0 4px rgba(124, 92, 255, 0.12);
}

.notify-form textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.6;
}

.notify-form input::placeholder,
.notify-form textarea::placeholder {
  color: #8189ae;
}

.notify-form button {
  width: fit-content;
  min-height: 54px;
  padding: 16px 22px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 14px 36px rgba(124, 92, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  opacity: 0;
  animation: spin 0.8s linear infinite;
}

.notify-form button:disabled .btn-spinner {
  opacity: 1;
}

.notify-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(124, 92, 255, 0.4);
}

.notify-form button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.22);
}

.form-note {
  margin: 12px 4px 0;
  min-height: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-hint {
  margin: 8px 4px 0;
  color: rgba(174, 181, 214, 0.86);
  font-size: 0.88rem;
  line-height: 1.55;
}

.form-note.is-success {
  color: var(--success);
}

.form-note.is-error {
  color: #ff9dbf;
}

.countdown-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 24px;
}

.countdown-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  text-align: center;
}

.countdown-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.countdown-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  justify-self: center;
  width: min(100%, 420px);
  min-height: clamp(340px, 32vw, 460px);
  transform: translate3d(calc(var(--px) * 10px), calc(var(--py) * 8px), 0);
  transition: transform 0.18s ease;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-one {
  width: clamp(240px, 28vw, 380px);
  height: clamp(240px, 28vw, 380px);
  animation: spin 22s linear infinite;
}

.orbit-two {
  width: clamp(300px, 36vw, 500px);
  height: clamp(300px, 36vw, 500px);
  border-style: dashed;
  animation: spinReverse 28s linear infinite;
}

.vinyl-core {
  position: relative;
  width: clamp(200px, 24vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0 18%, transparent 18% 22%, rgba(255, 255, 255, 0.07) 22% 24%, transparent 24% 29%, rgba(255, 255, 255, 0.07) 29% 31%, transparent 31%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.55), rgba(32, 217, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 70px rgba(255, 255, 255, 0.07),
    0 30px 80px rgba(0, 0, 0, 0.45);
  animation: float 6s ease-in-out infinite;
}

.vinyl-core::before,
.vinyl-core::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
}

.vinyl-core::before {
  background: rgba(6, 7, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vinyl-core::after {
  inset: 38%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 40px rgba(124, 92, 255, 0.35);
}

.vinyl-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 18%;
  font-size: clamp(0.72rem, 1.1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-align: center;
}

.equalizer {
  position: absolute;
  right: clamp(0px, 1vw, 12px);
  bottom: clamp(12px, 4vw, 54px);
  display: flex;
  align-items: end;
  gap: 8px;
  width: clamp(124px, 13vw, 160px);
  height: clamp(78px, 9vw, 100px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(10, 12, 24, 0.72);
  backdrop-filter: blur(12px);
}

.equalizer span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
  animation: bounce 1.8s ease-in-out infinite;
}

.equalizer span:nth-child(1) { height: 44%; animation-delay: -0.2s; }
.equalizer span:nth-child(2) { height: 78%; animation-delay: -0.8s; }
.equalizer span:nth-child(3) { height: 58%; animation-delay: -0.4s; }
.equalizer span:nth-child(4) { height: 88%; animation-delay: -1s; }
.equalizer span:nth-child(5) { height: 34%; animation-delay: -0.3s; }
.equalizer span:nth-child(6) { height: 66%; animation-delay: -0.6s; }

.stats-card {
  position: absolute;
  left: clamp(6px, 1vw, 16px);
  top: clamp(12px, 3vw, 36px);
  max-width: min(240px, 72%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(10, 12, 24, 0.78);
  backdrop-filter: blur(12px);
}

.stats-card p,
.stats-card small {
  margin: 0;
  color: var(--muted);
}

.stats-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.info-grid .feature-card:nth-child(1) {
  transition-delay: 0.04s;
}

.info-grid .feature-card:nth-child(2) {
  transition-delay: 0.08s;
}

.info-grid .feature-card:nth-child(3) {
  transition-delay: 0.12s;
}

.feature-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.footer {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 10px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(174, 181, 214, 0.9);
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: rgba(174, 181, 214, 0.9);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease;
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.footer-links a:focus-visible {
  outline: 0;
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.18);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(124, 92, 255, 0.16);
  color: #e6dfff;
  font-weight: 700;
}

.feature-card h2 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes auroraShift {
  0% { transform: translate3d(-1.5%, -1.5%, 0) scale(1); }
  50% { transform: translate3d(1.5%, 1%, 0) scale(1.06); }
  100% { transform: translate3d(-1.5%, -1.5%, 0) scale(1); }
}

@keyframes blobFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2.5%, -2.5%, 0) scale(1.05); }
}

@keyframes popIn {
  0% { opacity: 0; transform: translateY(14px) scale(0.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes bounce {
  0%, 100% { transform: scaleY(0.55); opacity: 0.75; }
  50% { transform: scaleY(1); opacity: 1; }
}

body[data-launch-locked="true"] .topbar-nav a[href$=".html"],
body[data-launch-locked="true"] .cta-row a[href$=".html"] {
  display: none;
}

body.is-launching {
  overflow: hidden;
}

.launch-transition {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.launch-transition.is-on {
  opacity: 1;
}

.launch-panel {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 50vw;
  background:
    radial-gradient(circle at 15% 35%, rgba(124, 92, 255, 0.24), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(32, 217, 255, 0.18), transparent 52%),
    radial-gradient(circle at 55% 80%, rgba(255, 78, 205, 0.18), transparent 56%),
    rgba(7, 7, 13, 0.92);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.launch-panel-left {
  left: 0;
  transform: translateX(0);
}

.launch-panel-right {
  right: 0;
  transform: translateX(0);
}

.launch-transition.is-on .launch-panel-left {
  animation: launchDoorLeft 1.05s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.launch-transition.is-on .launch-panel-right {
  animation: launchDoorRight 1.05s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.launch-seam {
  position: absolute;
  left: 50%;
  top: -12%;
  height: 124%;
  width: 2px;
  transform: translateX(-50%) scaleY(0.4);
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(32, 217, 255, 0),
    rgba(32, 217, 255, 0.75),
    rgba(124, 92, 255, 0.9),
    rgba(255, 78, 205, 0.75),
    rgba(255, 78, 205, 0)
  );
  filter: drop-shadow(0 0 18px rgba(124, 92, 255, 0.65));
}

.launch-transition.is-on .launch-seam {
  animation: launchSeam 0.86s ease-out forwards;
}

body.is-launching .page-shell {
  opacity: 0.65;
  transition: opacity 0.45s ease;
}

@keyframes launchDoorLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-110%); }
}

@keyframes launchDoorRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(110%); }
}

@keyframes launchSeam {
  0% { opacity: 0; transform: translateX(-50%) scaleY(0.4); }
  30% { opacity: 1; transform: translateX(-50%) scaleY(1); }
  100% { opacity: 0; transform: translateX(-50%) scaleY(1.2); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  #bgParticles {
    display: none;
  }

  .launch-transition {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar-nav {
    gap: 8px;
  }

  .topbar-nav a {
    padding: 9px 10px;
    font-size: 0.95rem;
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    align-items: center;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-title-line {
    display: block;
  }

  .hero-visual {
    align-self: auto;
    justify-self: center;
    width: min(100%, 360px);
    min-height: 420px;
  }
}

@media (max-width: 1280px) {
  .page-shell {
    width: min(100% - 28px, 1140px);
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 5.1vw, 4.3rem);
  }

  .lead {
    max-width: 48ch;
  }
}

@media (max-height: 820px) and (min-width: 1101px) {
  .page-shell {
    padding: 14px 0 28px;
  }

  .hero-card {
    min-height: auto;
    padding: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 4.2vw, 4rem);
  }

  .lead {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .cta-group {
    margin-top: 18px;
  }

  .notify-form textarea {
    min-height: 96px;
  }

  .countdown-panel {
    margin-top: 18px;
  }

  .countdown-item {
    padding: 14px 12px;
  }

  .hero-visual {
    justify-self: center;
    min-height: 320px;
  }

  .orbit-one {
    width: 290px;
    height: 290px;
  }

  .orbit-two {
    width: 380px;
    height: 380px;
  }

  .equalizer {
    right: 0;
    bottom: 18px;
  }

  .stats-card {
    top: 18px;
    left: 8px;
    padding: 16px 18px;
  }
}

@media (max-height: 780px) and (min-width: 901px) {
  .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
    min-height: auto;
    gap: 16px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-visual {
    justify-self: center;
    min-height: 280px;
  }

  .stats-card {
    left: 8px;
    top: 12px;
    transform: none;
  }

  .equalizer {
    right: 0;
    left: auto;
    bottom: 12px;
    transform: none;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 24px, 1000px);
    padding: 18px 0 36px;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
    padding: 28px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 9vw, 4.6rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-visual {
    justify-self: center;
  }

  .countdown-item {
    padding: 16px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1000px);
    padding: 10px 0 28px;
  }

  .hero-card {
    padding: 22px;
    border-radius: 26px;
  }

  .lead {
    font-size: 0.98rem;
  }

  .eyebrow {
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  .brand-logo-crop {
    width: clamp(98px, 26vw, 122px);
    height: clamp(34px, 9vw, 44px);
  }

  .brand-logo {
    width: clamp(140px, 38vw, 180px);
  }

  .notify-form {
    gap: 10px;
    padding: 10px;
  }

  .notify-form button {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }

  .hero-visual {
    width: min(100%, 340px);
    min-height: 420px;
  }

  .orbit-one {
    width: 250px;
    height: 250px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .equalizer {
    right: auto;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
  }

  .stats-card {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 88%;
  }
}

@media (max-width: 560px) {
  .hero-card {
    padding: 18px;
    border-radius: 22px;
  }

  .brand-mark {
    align-items: flex-start;
  }

  .hero-copy h1 {
    margin: 14px 0 14px;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 0.94;
  }

  .lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .notify-form input,
  .notify-form textarea,
  .notify-form button {
    border-radius: 14px;
  }

  .notify-form textarea {
    min-height: 110px;
  }

  .countdown-item {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .countdown-item strong {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

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

  .hero-visual {
    width: min(100%, 300px);
    min-height: 360px;
  }

  .orbit-one {
    width: 210px;
    height: 210px;
  }

  .orbit-two {
    width: 280px;
    height: 280px;
  }

  .equalizer {
    display: none;
  }

  .stats-card {
    position: static;
    transform: none;
    margin-top: 16px;
    max-width: 100%;
  }

  .feature-card {
    padding: 22px;
    border-radius: 22px;
  }
}

/* Final mobile overrides to win against wider breakpoint rules above */
@media (max-width: 720px) {
  .hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    align-items: center;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.5vw, 3.4rem);
    line-height: 0.94;
  }

  .hero-title-line {
    display: block;
  }

  .lead {
    max-width: 100%;
  }

  .hero-visual {
    align-self: auto;
    justify-self: center;
    width: min(100%, 360px);
    min-height: 400px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    margin-bottom: 8px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-visual {
    width: min(100%, 320px);
    min-height: 430px;
  }

  .orbit-one {
    width: 220px;
    height: 220px;
  }

  .orbit-two {
    width: 290px;
    height: 290px;
  }

  .vinyl-core {
    width: 220px;
  }

  .stats-card {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    width: min(100%, 272px);
    max-width: 92%;
    padding: 12px 14px;
    text-align: left;
  }

  .stats-card strong {
    font-size: 1.35rem;
    margin: 6px 0 8px;
  }

  .stats-card small {
    display: block;
    line-height: 1.45;
  }

  .equalizer {
    display: flex;
    left: 50%;
    right: auto;
    bottom: 16px;
    width: min(100%, 132px);
    height: 84px;
    padding: 12px;
    transform: translateX(-50%);
  }
}
