:root {
  --bg: #0a0d0b;
  --text: #f2f4f1;
  --muted: #9aa39c;
  --accent: #4ecdff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  background: var(--bg);
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.page {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: 160vw;
  height: 600px;
  background: radial-gradient(ellipse at bottom, rgba(78, 205, 255, 0.16) 0%, rgba(78, 205, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  border-bottom: 1px solid rgba(242, 244, 241, 0.1);
  position: relative;
  z-index: 1;
}

.brand {
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.status-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
  z-index: 1;
}

.headline {
  margin: 0;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(44px, 10vw, 96px);
}

.line {
  display: block;
}

.line-primary {
  color: var(--text);
}

.line-accent {
  color: var(--accent);
}

.subtext {
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  text-wrap: pretty;
}

.ring {
  margin-top: 80px;
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 205, 255, 0.35) 0%, rgba(78, 205, 255, 0.08) 55%, transparent 75%);
  filter: blur(6px);
  animation: glowPulse 3.5s ease-in-out infinite;
}

.ring-outer {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(78, 205, 255, 0.55);
  animation: ringPulse 3.5s ease-in-out infinite;
}

.ring-inner {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 24px rgba(78, 205, 255, 0.6);
  animation: ringPulse 3.5s ease-in-out infinite;
  animation-delay: 0.15s;
}

.site-footer {
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid rgba(242, 244, 241, 0.1);
  position: relative;
  z-index: 1;
}

.site-footer span {
  font-size: 12px;
  color: var(--muted);
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.55;
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ring-glow,
  .ring-outer,
  .ring-inner {
    animation: none !important;
  }
}
