:root {
  color-scheme: dark;
  --blue: #21a9ff;
  --blue-bright: #9ccbe8;
  --ink: #030711;
  --panel: rgba(5, 18, 37, 0.73);
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #e6f6ff;
  background: radial-gradient(circle at 50% 0%, #0a1e35 0, #040a16 45%, var(--ink) 78%);
  font-family: "Share Tech Mono", Consolas, monospace;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100% - 40px));
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid rgba(76, 183, 255, 0.48);
  background: linear-gradient(135deg, rgba(9, 28, 53, 0.9), var(--panel));
  box-shadow: 0 0 22px rgba(0, 109, 228, 0.1);
}

.hero { padding: clamp(31px, 7vw, 65px); }

.eyebrow, .progress-label {
  margin: 0;
  color: var(--blue-bright);
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  animation: blink 2.5s infinite;
}

h1 {
  margin: 22px 0 18px;
  color: #f1fbff;
  font-size: clamp(2.25rem, 8vw, 5.25rem);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.06em;
  text-shadow: 0 0 16px rgba(56, 177, 255, 0.2);
}

.lead { margin: 0; color: #a9c7db; font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.55; }

.link-panel { padding: 21px clamp(24px, 5vw, 42px); }
.link-panel .eyebrow { margin-bottom: 11px; color: #7599b5; }
.link-panel a {
  color: var(--blue-bright);
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}
.link-panel a span { margin-left: 7px; color: var(--blue); }
.link-panel a:hover, .link-panel a:focus-visible { color: #fff; text-shadow: 0 0 12px var(--blue); }

.orb { position: fixed; width: 33vw; aspect-ratio: 1; border-radius: 50%; filter: blur(2px); opacity: 0.22; background: radial-gradient(circle, rgba(28, 156, 255, 0.2), transparent 67%); }
.orb-one { top: -12vw; left: -8vw; animation: drift-one 13s ease-in-out infinite alternate; }
.orb-two { right: -12vw; bottom: -16vw; animation: drift-two 16s ease-in-out infinite alternate; }

.noise { position: fixed; inset: 0; pointer-events: none; opacity: 0.075; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }

@keyframes blink { 50% { opacity: 0.2; } }
@keyframes drift-one { to { transform: translate(9vw, 13vh); } }
@keyframes drift-two { to { transform: translate(-11vw, -10vh); } }

@media (max-width: 430px) { .hero { padding: 31px 26px; } h1 { letter-spacing: -0.09em; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; } }
