:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #07111f;
  color: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.28), transparent 36rem),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.22), transparent 32rem),
    #07111f;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 2rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  background: linear-gradient(135deg, #ffffff 12%, #bfdbfe 48%, #c4b5fd 88%);
  background-clip: text;
  color: transparent;
}

.subtitle {
  max-width: 38rem;
  margin: 1.75rem auto 0;
  color: #a8b4c7;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.65rem;
  margin-top: 2.25rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.54);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
  color: #dbeafe;
  font-size: 0.85rem;
  backdrop-filter: blur(14px);
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0.3rem rgba(74, 222, 128, 0.13);
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: pulse 2s ease-out infinite;
  }

  @keyframes pulse {
    50% {
      box-shadow: 0 0 0 0.55rem rgba(74, 222, 128, 0);
    }
  }
}
