:root {
  color-scheme: dark;
  --bg: #040814;
  --bg-deep: #02040c;
  --panel: rgba(8, 18, 38, 0.7);
  --panel-border: rgba(150, 212, 255, 0.18);
  --text: #ecf7ff;
  --muted: #9eb8cc;
  --cyan: #6fe7ff;
  --blue: #5c88ff;
  --teal: #8fffe1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(41, 91, 255, 0.16), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(111, 231, 255, 0.12), transparent 25%),
    radial-gradient(circle at 80% 15%, rgba(143, 255, 225, 0.1), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(113, 188, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 188, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  pointer-events: none;
}

.starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.space-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.space-glow-left {
  top: -10rem;
  left: -8rem;
  background: rgba(92, 136, 255, 0.22);
}

.space-glow-right {
  right: -8rem;
  bottom: -12rem;
  background: rgba(111, 231, 255, 0.18);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.panel {
  width: min(720px, 100%);
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 18, 38, 0.78), rgba(3, 10, 24, 0.88));
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(92, 136, 255, 0.12);
  animation: rise-in 1s ease-out both;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 36rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.7;
}

.status-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(111, 231, 255, 0.07);
  border: 1px solid rgba(111, 231, 255, 0.14);
}

.status-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px var(--teal);
  animation: pulse 1.8s ease-in-out infinite;
}

.status-label,
.status-text,
.metric-value,
.metric-label {
  display: block;
}

.status-label,
.metric-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.status-text {
  margin-top: 0.15rem;
  font-size: 1rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.metrics article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-value {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.78);
    opacity: 0.72;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  body {
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
    padding: 1.25rem;
  }

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