@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  color-scheme: dark;
  --bg: #05060a;
  --accent: #8fd9ff;
  --muted: #94a2ba;
  --card: rgba(255, 255, 255, 0.02);
  --glow: rgba(143, 217, 255, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(63, 130, 255, 0.35), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(255, 118, 171, 0.4), transparent 35%),
    var(--bg);
  color: white;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 1.5rem 2rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero__content {
  max-width: 520px;
}

.eyebrow {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.75rem, 4vw, 4rem);
  margin: 0 0 1rem;
  font-weight: 600;
}

.tagline {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #dfe3ef;
}

.status {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-line__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--glow);
  animation: pulse 2.3s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.hero__art {
  position: relative;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  width: min(280px, 80%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  animation: float 6s ease-in-out infinite;
}

.hero__signal {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  animation: orbit 8s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

footer {
  margin-top: auto;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .page {
    padding-top: 2rem;
  }

  .status {
    font-size: 1.6rem;
  }

  .hero__art {
    order: -1;
  }
}
