:root {
  color-scheme: dark;
  --blue: #2f7bff;
  --blue-bright: #4f8dff;
  --navy: #050d1c;
  --navy-2: #0a1830;
  --ink: #f4f7fc;
  --muted: #8993a8;
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--navy);
  overflow-x: hidden;
}

#net {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(47, 123, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 90% 60% at 82% 90%, rgba(47, 123, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #050d1c 0%, #071630 55%, #050d1c 100%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  display: grid;
  min-height: 92vh;
  padding: clamp(32px, 6vw, 64px) 24px;
  place-items: center;
  text-align: center;
}

.hero-inner {
  display: grid;
  width: min(100%, 860px);
  gap: 30px;
  justify-items: center;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo {
  display: block;
  width: min(50vw, 300px);
  height: auto;
  opacity: 0;
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.eyebrow {
  margin: 0;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.headline {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.headline .accent {
  background: linear-gradient(90deg, var(--blue-bright), #8fb7ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.subhead {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.status span {
  color: #cfd6e4;
}

.status .sep {
  color: #4a5468;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(79, 141, 255, 0.55);
  animation: pulse 2.2s ease-out infinite;
}

.scroll-cue {
  position: absolute;
  bottom: clamp(18px, 4vh, 40px);
  left: 50%;
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  opacity: 0;
  transform: translateX(-50%);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--blue-bright);
  transform: translateX(-50%);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 64px;
  align-items: center;
  padding: 0 36px;
  border-top: 1px solid var(--line);
  background: rgba(5, 12, 26, 0.6);
  backdrop-filter: blur(10px);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.footer span {
  border-right: 1px solid var(--line);
}

.footer span:last-child {
  border-right: 0;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 141, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(79, 141, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 141, 255, 0);
  }
}

@keyframes scroll-cue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 88vh;
    padding: 40px 20px;
  }

  .hero-inner {
    gap: 22px;
  }

  .logo {
    width: min(60vw, 220px);
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .headline {
    font-size: clamp(1.7rem, 8.6vw, 2.4rem);
  }

  .subhead {
    font-size: 0.95rem;
  }

  .status {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 18px;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
    padding: 18px;
  }

  .footer span:nth-child(2n) {
    border-right: 0;
  }

  .footer span {
    padding: 2px 0;
  }

  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner,
  .logo,
  .eyebrow,
  .headline,
  .subhead,
  .status,
  .scroll-cue,
  .dot,
  .scroll-cue span {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
