:root {
  --bg: #0b1320;
  --bg-elev: #121c2c;
  --text: #e8eef7;
  --muted: #9aa8bc;
  --accent: #5b8cff;
  --line: rgba(232, 238, 247, 0.12);
  --font-display: "Orbitron", sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 10;
  background: var(--bg-elev);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(91, 140, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(20, 40, 70, 0.55), transparent 50%),
    linear-gradient(180deg, #0b1320 0%, #0e1828 100%);
  z-index: 0;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(40rem, calc(100% - 2.5rem));
  margin: auto;
  padding: 4rem 0 2rem;
  text-align: center;
}

.logo {
  display: block;
  margin: 0 auto 1.25rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.lede {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.status {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg-elev) 80%, transparent);
  color: var(--text);
  font-size: 0.98rem;
}

.contact {
  margin: 0;
  color: var(--muted);
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--text);
  outline: none;
}

.foot {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

.foot p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
