:root {
  --bg-gradient: radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.35), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(45, 212, 191, 0.25), transparent 45%),
    radial-gradient(circle at 50% 75%, rgba(248, 113, 113, 0.2), transparent 55%),
    linear-gradient(135deg, #020617 0%, #0b1120 35%, #1d2537 100%);
  --card-bg: rgba(15, 23, 42, 0.68);
  --card-border: rgba(148, 163, 184, 0.18);
  --text-primary: #f8fafc;
  --text-muted: #cbd5f5;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.2);
  --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #020617;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--bg-gradient);
  z-index: -2;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.noise {
  position: absolute;
  inset: -200px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"%3E%3Cfilter id="a"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="1.2" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="160" height="160" filter="url(%23a)" opacity="0.08" /%3E%3C/svg%3E');
  opacity: 0.4;
  mix-blend-mode: soft-light;
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.7), transparent 65%);
}

.orb-two {
  width: 340px;
  height: 340px;
  top: 40%;
  right: -160px;
  animation-delay: -6s;
  background: radial-gradient(circle at 20% 20%, rgba(129, 140, 248, 0.7), transparent 70%);
}

.orb-three {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: 35%;
  animation-delay: -12s;
  background: radial-gradient(circle at 50% 50%, rgba(244, 114, 182, 0.65), transparent 75%);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -20px, 0) scale(1.05);
  }
}

.shell {
  width: min(720px, 100%);
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero {
  padding: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: grid;
  gap: 1.5rem;
}

.hero::after {
  content: '';
  position: absolute;
  inset: clamp(1.4rem, 4vw, 2rem);
  border-radius: 22px;
  border: 1px solid rgba(56, 189, 248, 0.12);
  pointer-events: none;
}

.badge {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(226, 232, 240, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.45);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.subhead {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
}

.status {
  display: grid;
  gap: 1rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.status-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.stack {
  display: grid;
  gap: 0.3rem;
  text-align: left;
}

.label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(226, 232, 240, 0.55);
}

.value {
  font-size: 1.05rem;
  font-weight: 600;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.5);
}

.dot.live {
  background: #34d399;
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.18);
}

.foot {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.6);
}

@media (max-width: 768px) {
  body {
    padding: 2.5rem 1.25rem;
  }

  .shell {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.2rem 1.6rem;
  }

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

  .status-card {
    justify-content: center;
    text-align: center;
  }

  .stack {
    text-align: center;
  }
}
