:root {
  color-scheme: dark;
  --bg: #09111f;
  --panel: rgba(13, 23, 42, 0.76);
  --border: rgba(148, 163, 184, 0.2);
  --text: #e5eefc;
  --muted: #8ea4c8;
  --accent: #5eead4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.18), transparent 30%),
    linear-gradient(180deg, #040814 0%, #0a1220 50%, #08101b 100%);
  color: var(--text);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
}

.splash-shell {
  min-height: 100vh;
  padding: 32px;
  display: grid;
  gap: 24px;
  align-content: start;
}

.splash-hero,
.splash-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(94, 234, 212, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(59, 130, 246, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(11, 20, 37, 0.96), rgba(7, 14, 26, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(219, 234, 254, 0.04),
    0 18px 60px rgba(2, 8, 20, 0.28);
}

.splash-hero {
  padding: 36px;
}

.splash-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.logo-wrap {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(94, 234, 212, 0.14), transparent 60%),
    rgba(8, 15, 28, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(219, 234, 254, 0.04),
    0 12px 32px rgba(2, 8, 20, 0.32);
}

.logo {
  width: 64px;
  height: 64px;
}

.eyebrow,
.kicker,
.launch-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark {
  margin: 12px 0 0;
  color: rgba(219, 234, 254, 0.88);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.splash-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.splash-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.lede,
.note,
.launch-card p:last-child,
.column p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.lede {
  max-width: 64ch;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  border: 1px solid rgba(94, 234, 212, 0.24);
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.16), rgba(59, 130, 246, 0.18));
  color: var(--text);
}

.note {
  max-width: 42ch;
}

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

.launch-card,
.column {
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(9, 17, 31, 0.46);
  backdrop-filter: blur(12px);
}

.launch-label {
  margin-bottom: 10px;
}

.launch-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.launch-status-row h2,
.splash-panel h2,
.column h3 {
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.14);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.splash-panel {
  padding: 28px;
  display: grid;
  gap: 20px;
}

@media (max-width: 900px) {
  .splash-shell {
    padding: 20px;
  }

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

  .splash-hero,
  .splash-panel {
    border-radius: 24px;
  }

  .splash-hero {
    padding: 24px;
  }

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

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
