:root {
  --navy-950: #0b1220;
  --navy-900: #15233f;
  --navy-700: #2a3d62;
  --navy-500: #4a5f87;
  --mint-400: #89ceb2;
  --mint-500: #60bd97;
  --gold-400: #f0c77c;
  --ink: #d9e3f8;
  --ink-soft: #aac0e6;
  --surface-1: rgba(18, 31, 56, 0.78);
  --surface-2: rgba(24, 41, 72, 0.66);
  --stroke: rgba(143, 172, 223, 0.26);
  --stroke-strong: rgba(157, 191, 245, 0.42);
  --shadow-lg: 0 32px 80px rgba(2, 8, 20, 0.5);
  --shadow-md: 0 16px 36px rgba(3, 8, 22, 0.36);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(127, 169, 255, 0.2), transparent 34%),
    radial-gradient(circle at 85% 4%, rgba(240, 199, 124, 0.15), transparent 28%),
    linear-gradient(165deg, #090f1c 0%, #111b30 45%, #0d172b 100%);
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(128, 163, 221, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 163, 221, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  pointer-events: none;
  z-index: -2;
}

.aurora {
  position: fixed;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(64px);
  z-index: -1;
  opacity: 0.55;
}

.aurora-left {
  top: -190px;
  left: -120px;
  background: radial-gradient(circle, rgba(96, 189, 151, 0.72), rgba(96, 189, 151, 0));
}

.aurora-right {
  top: 40px;
  right: -180px;
  background: radial-gradient(circle, rgba(240, 199, 124, 0.66), rgba(240, 199, 124, 0));
}

.site-header,
.page-shell,
.site-footer {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.brand-name {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.status-pill {
  text-decoration: none;
  color: #f9e2b8;
  background: linear-gradient(145deg, rgba(240, 199, 124, 0.18), rgba(240, 199, 124, 0.06));
  border: 1px solid rgba(240, 199, 124, 0.38);
  border-radius: 999px;
  padding: 0.45rem 0.92rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.page-shell {
  padding: 1.2rem 0 2.4rem;
  display: grid;
  gap: 1.1rem;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  background: linear-gradient(140deg, var(--surface-1), var(--surface-2));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.4rem;
  padding: 2rem;
}

.eyebrow {
  margin: 0 0 0.78rem;
  font-size: 0.78rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 12ch;
}

.lead {
  margin: 1rem 0 1.6rem;
  max-width: 60ch;
  font-size: 1.08rem;
  color: #c3d4f3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

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

.btn-primary {
  color: #071427;
  background: linear-gradient(140deg, var(--mint-400), var(--mint-500));
  box-shadow: 0 12px 22px rgba(96, 189, 151, 0.28);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid var(--stroke-strong);
  background: rgba(150, 183, 236, 0.08);
}

.hero-side {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(138, 176, 235, 0.24);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.55), rgba(8, 18, 35, 0.32));
}

.hero-side-top {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.84rem 0.95rem;
  border-bottom: 1px solid rgba(140, 172, 224, 0.2);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(165, 191, 238, 0.66);
}

.hero-side-title {
  margin-left: 0.42rem;
  font-size: 0.88rem;
  color: #bed0ef;
  font-weight: 700;
}

.hero-side-body {
  padding: 1rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: #bdd1f2;
}

.metric-row strong {
  color: #e6eefc;
}

.track {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(175, 200, 238, 0.17);
  overflow: hidden;
  margin: 0.44rem 0 0.9rem;
}

.bar {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.bar-a {
  width: 92%;
  background: linear-gradient(90deg, #7dd9b5, #53b88f);
}

.bar-b {
  width: 68%;
  background: linear-gradient(90deg, #f1d38d, #d7a952);
}

.mini-list {
  margin: 0.2rem 0 0;
  padding-left: 1rem;
  color: #b0c5e9;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

#launch-status {
  padding: 1.8rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  max-width: 18ch;
}

.section-copy {
  margin: 0.86rem 0 1.1rem;
  color: #c1d2f1;
}

code {
  border-radius: 7px;
  padding: 0.12rem 0.35rem;
  background: rgba(165, 196, 244, 0.14);
  border: 1px solid rgba(165, 196, 244, 0.21);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.store-link {
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(17, 30, 54, 0.9), rgba(28, 46, 79, 0.8));
  padding: 0.92rem;
  color: #d5e1f7;
  display: grid;
  gap: 0.22rem;
  transition: transform 150ms ease, border-color 150ms ease;
}

.store-link:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 199, 250, 0.5);
}

.store-name {
  font-size: 1rem;
  font-weight: 700;
}

.store-status {
  font-size: 0.9rem;
  color: #9eb6df;
}

.store-link.is-live {
  border-color: rgba(132, 229, 190, 0.58);
  background: linear-gradient(145deg, rgba(17, 40, 53, 0.93), rgba(30, 77, 70, 0.7));
}

.store-link.is-live .store-status {
  color: #9de4c7;
}

.store-link.is-pending {
  border-style: dashed;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.detail-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.detail-card h3 {
  font-size: 1.16rem;
  margin-bottom: 0.7rem;
}

.checklist {
  margin: 0;
  padding-left: 1rem;
  color: #c2d5f3;
  display: grid;
  gap: 0.44rem;
}

.timeline {
  margin: 0;
  padding-left: 1rem;
  color: #c2d5f3;
  display: grid;
  gap: 0.52rem;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.35rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(161, 189, 241, 0.46);
  padding: 0.18rem 0.42rem;
}

.step.done {
  background: rgba(112, 206, 167, 0.22);
  border-color: rgba(133, 226, 188, 0.66);
  color: #9de8c8;
}

.step.current {
  background: rgba(240, 199, 124, 0.24);
  border-color: rgba(240, 199, 124, 0.62);
  color: #ffdca2;
}

.text-link {
  color: #9fd5ff;
  text-decoration: none;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 1.2rem 0 2rem;
  color: #9ab0d7;
  font-weight: 600;
}

.reveal {
  animation: rise 700ms ease-out both;
}

.reveal.delay-1 {
  animation-delay: 130ms;
}

.reveal.delay-2 {
  animation-delay: 260ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header,
  .page-shell,
  .site-footer {
    width: calc(100% - 1.5rem);
  }

  .site-header {
    flex-wrap: wrap;
    padding-top: 1.1rem;
  }

  .hero,
  #launch-status,
  .detail-card {
    padding: 1.1rem;
  }

  h1 {
    max-width: none;
  }

  .lead {
    font-size: 1rem;
  }
}
