@font-face {
  font-family: "Geist Pixel";
  src: url("/fonts/GeistPixel-Square.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("/fonts/PPNeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("/fonts/PPNeueMontreal-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #000b2b;
  --canvas: #05070f;
  --blue: #005ae6;
  --ink: #eef1f6;
  --muted: #7c8bab;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "PP Neue Montreal", -apple-system, "Helvetica Neue", Arial,
    sans-serif;
  overflow-x: hidden;
}

#dither {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 4vw, 48px);
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.4vw, 22px);
  margin: auto 0;
  padding: 48px 0;
}

.eyebrow {
  margin: 0;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.lockup {
  --headline-size: clamp(40px, 10.5vw, 148px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 28px);
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  height: calc(var(--headline-size) * 1.932);
  width: auto;
  filter: drop-shadow(0 0 26px rgba(0, 90, 230, 0.75))
    drop-shadow(0 0 60px rgba(0, 90, 230, 0.35));
  animation: glow 3.2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 26px rgba(0, 90, 230, 0.75))
      drop-shadow(0 0 60px rgba(0, 90, 230, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 38px rgba(0, 90, 230, 0.95))
      drop-shadow(0 0 90px rgba(0, 90, 230, 0.5));
  }
}

.headline {
  margin: 0;
  font-family: "Geist Pixel", "PP Neue Montreal", sans-serif;
  font-weight: 400;
  font-size: var(--headline-size);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-align: left;
  text-shadow: 0 0 40px rgba(0, 90, 230, 0.35);
}

@media (max-width: 640px) {
  .lockup {
    flex-direction: column;
    gap: 12px;
  }

  .headline {
    text-align: center;
  }
}

.tagline {
  margin: 0;
  font-size: clamp(14px, 2vw, 20px);
  color: var(--ink);
  opacity: 0.85;
}

.status {
  margin: 8px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(0, 90, 230, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 90, 230, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 90, 230, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 90, 230, 0);
  }
}

.foot {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.04em;
  color: var(--muted);
}

.link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 241, 246, 0.25);
  padding-bottom: 2px;
}

.link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.social {
  display: flex;
  gap: 18px;
}

.social a {
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.social a:hover {
  color: var(--blue);
}

.copy {
  margin: 6px 0 0;
  opacity: 0.6;
  font-size: 11px;
}

.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;
}

.faq {
  width: 100%;
  max-width: 480px;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq details {
  border-top: 1px solid rgba(238, 241, 246, 0.12);
  padding: 10px 0;
}

.faq details:last-child {
  border-bottom: 1px solid rgba(238, 241, 246, 0.12);
}

.faq summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+ ";
  color: var(--blue);
}

.faq details[open] summary::before {
  content: "– ";
}

.faq details[open] summary {
  color: var(--ink);
}

.faq p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  text-align: left;
}

.faq p .link {
  border-bottom-color: rgba(124, 139, 171, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .dot,
  .logo-mark {
    animation: none;
  }
}
