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

:root {
  --bg: #0a0a0f;
  --text: #e8e6e1;
  --accent: #00d4ff;
  --accent-dim: #00d4ff22;
  --muted: #5a5a6e;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

canvas#grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg) 70%);
  z-index: 1;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.logo-mark {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  border: 2px solid var(--accent);
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 2.5rem;
  animation: fadeDown 0.8s ease-out both;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.15em;
  line-height: 1.2;
  animation: fadeDown 0.8s ease-out 0.15s both;
}

h1 .accent {
  display: block;
  font-weight: 400;
  color: var(--accent);
  font-size: 0.55em;
  letter-spacing: 0.35em;
  margin-top: 0.3em;
}

.tagline {
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 1.5rem;
  letter-spacing: 0.08em;
  animation: fadeDown 0.8s ease-out 0.3s both;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent-dim);
  margin: 2rem auto;
  animation: fadeDown 0.8s ease-out 0.45s both;
}

.status {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  animation: fadeDown 0.8s ease-out 0.6s both;
}

.status a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  transition: border-color 0.3s;
}

.status a:hover {
  border-color: var(--accent);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}