:root {
  --bg: #080817;
  --card: rgba(13, 15, 35, 0.72);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f7f3ff;
  --muted: rgba(247, 243, 255, 0.72);
  --soft: rgba(247, 243, 255, 0.52);
  --gold: #f6c76b;
  --pink: #ff5f9e;
  --violet: #8d5cff;
  --blue: #55d6ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 18px 24px;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 18%, rgba(141, 92, 255, 0.34), transparent 30%),
    radial-gradient(circle at 80% 8%, rgba(85, 214, 255, 0.22), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 95, 158, 0.22), transparent 35%),
    linear-gradient(145deg, #05050e 0%, #0a0921 45%, #130b24 100%);
}

.aurora {
  position: fixed;
  width: 44vw;
  min-width: 320px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.34;
  z-index: -3;
  animation: floatGlow 9s ease-in-out infinite alternate;
}

.aurora-one {
  left: -14vw;
  top: 10vh;
  background: var(--violet);
}

.aurora-two {
  right: -16vw;
  bottom: 2vh;
  background: var(--pink);
  animation-delay: -4s;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-card {
  width: min(920px, 100%);
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(246,199,107,0.72), rgba(141,92,255,0.22), rgba(85,214,255,0.42));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: 50%;
  top: -290px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246,199,107,0.24), transparent 64%);
  pointer-events: none;
}

.brand-mark {
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  border-radius: 27px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, rgba(246,199,107,0.95), rgba(255,95,158,0.92) 48%, rgba(141,92,255,0.96));
  box-shadow: 0 16px 48px rgba(255, 95, 158, 0.24), inset 0 1px 0 rgba(255,255,255,0.35);
  position: relative;
}

.brand-mark span {
  font-family: Orbitron, Inter, sans-serif;
  color: #120817;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(46px, 9vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(141,92,255,0.36);
}

.aka {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.8);
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.intro {
  width: min(690px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.launch-strip {
  width: min(630px, 100%);
  margin: 34px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.045);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launch-strip i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}

.cta-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-btn {
  color: #130817;
  background: linear-gradient(135deg, var(--gold), #ff8db9);
  box-shadow: 0 18px 40px rgba(255, 95, 158, 0.22);
}

.secondary-btn {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.045);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn:hover {
  border-color: rgba(246,199,107,0.55);
}

.status-panel {
  width: min(520px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.status-panel div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.status-panel small {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 15px;
}

footer {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
  text-align: center;
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(6vw, -3vh, 0) scale(1.12);
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 18px 14px;
  }

  .hero-card {
    border-radius: 28px;
  }

  .brand-mark {
    width: 74px;
    height: 74px;
    border-radius: 23px;
  }

  .launch-strip {
    border-radius: 24px;
    flex-wrap: wrap;
    gap: 10px 12px;
    letter-spacing: 0.1em;
  }

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

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .status-panel {
    grid-template-columns: 1fr;
  }
}
