:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0d1a2c;
  --card: rgba(13, 27, 44, 0.74);
  --border: rgba(159, 194, 255, 0.14);
  --text: #f4f8ff;
  --muted: #b4c2d8;
  --accent: #7bc3ff;
  --accent-2: #7ef0d2;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(123, 195, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(126, 240, 210, 0.12), transparent 22%),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  color: var(--text);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
}
.ambient-a {
  width: 360px; height: 360px;
  background: rgba(123, 195, 255, 0.18);
  top: -80px; right: -80px;
}
.ambient-b {
  width: 280px; height: 280px;
  background: rgba(126, 240, 210, 0.12);
  bottom: -50px; left: -60px;
}

.hero-card {
  width: min(980px, 100%);
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.brand-core {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07111f;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(123, 195, 255, 0.22);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(123, 195, 255, 0.26);
  color: var(--accent);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 28px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.story-grid article,
.status-bar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
}

.story-grid article { padding: 24px; }
.story-grid h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.story-grid p,
.story-grid li {
  color: var(--muted);
  line-height: 1.65;
}
.story-grid ul {
  margin: 12px 0 0 18px;
  padding: 0;
}

.status-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 24px;
  margin-top: 22px;
}

.label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 6px;
}

footer {
  margin-top: 26px;
  color: var(--muted);
}
.fineprint {
  font-size: 0.92rem;
  opacity: 0.85;
}

@media (max-width: 780px) {
  .hero-card { padding: 26px; border-radius: 24px; }
  .story-grid, .status-bar { grid-template-columns: 1fr; }
}
