@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
  --bg: #0b0e14;
  --fg: #e6e6eb;
  --muted: #9aa0b4;
  --accent: #ff6a00;
  --grid: rgba(255,255,255,0.04);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at top, #121726, var(--bg));
  color: var(--fg);
  height: 100vh;
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
}

.container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.badge {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  margin: 0;
}

h1 span {
  color: var(--accent);
}

.subtitle {
  max-width: 600px;
  color: var(--muted);
  margin: 1.5rem 0 2.5rem;
  font-size: 1rem;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

footer {
  position: absolute;
  bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.75rem;
}

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

