* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  background-color: #05050c;
  color: #f6f7fb;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(134, 179, 255, 0.4), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(255, 140, 182, 0.25), transparent 35%),
    #04030a;
  overflow-x: hidden;
}

main.shell {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
  z-index: 1;
}

.orbiting-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(68, 208, 255, 0.2), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(238, 186, 255, 0.15), transparent 40%);
  filter: blur(10px);
  animation: pulse 16s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero {
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(33, 33, 63, 0.8), rgba(0, 0, 0, 0.65));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.hero h1 {
  font-size: clamp(2.5rem, 3vw, 3.75rem);
  margin: 0.4rem 0 0.6rem;
  font-weight: 600;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: #8fe3ff;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(246, 247, 251, 0.85);
}

.status-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.status-card div {
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.label {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(246, 247, 251, 0.7);
}

.value {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.updates {
  margin-top: 3rem;
}

.updates h2,
.log h2 {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1rem;
  color: #8fe3ff;
}

.update-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.update-grid article {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 18, 0.85);
}

.update-grid h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.update-grid p {
  margin: 0;
  color: rgba(246, 247, 251, 0.8);
}

.log {
  margin-top: 3rem;
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(4, 4, 11, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.log pre {
  margin: 1rem 0 0;
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Space Grotesk", monospace;
}

@media (max-width: 640px) {
  .hero,
  .log {
    padding: 1.75rem;
  }
}
