*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0e17;
  --surface: #111827;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --accent: #7eb8da;
  --accent-glow: rgba(126, 184, 218, 0.35);
  --accent-secondary: #c4a574;
  --border: rgba(148, 163, 184, 0.12);
  --font: 'Outfit', system-ui, sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.glow--left {
  top: -120px;
  left: -100px;
  background: var(--accent);
}

.glow--right {
  bottom: -80px;
  right: -60px;
  background: var(--accent-secondary);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.brand {
  margin-bottom: 2.5rem;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.logo {
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.45));
}

.logo--wordmark {
  width: min(320px, 88vw);
  height: auto;
  border-radius: 12px;
}

.brand-3d {
  margin-top: 0.35rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.brand-tagline {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  width: 100%;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(126, 184, 218, 0.1);
  border: 1px solid rgba(126, 184, 218, 0.25);
  border-radius: 999px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.progress-bar {
  width: 100%;
  max-width: 280px;
  height: 4px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.progress-bar__fill {
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: 999px;
  animation: progress-shimmer 2.5s ease-in-out infinite;
}

@keyframes progress-shimmer {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.footer {
  margin-top: 3.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .status-dot,
  .progress-bar__fill {
    animation: none;
  }
}
