:root {
  color: #eaf7ff;
  background: #071523;
  font-family:
    "SF Pro Display", "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
  --ink: #eaf7ff;
  --muted: #98afc0;
  --line: rgba(186, 229, 255, 0.17);
  --panel: rgba(14, 31, 48, 0.72);
  --cyan: #66e7ff;
  --lime: #c4f36a;
  --violet: #b59aff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 14% 10%,
      rgba(73, 193, 227, 0.14),
      transparent 30rem
    ),
    radial-gradient(
      circle at 86% 26%,
      rgba(172, 114, 255, 0.11),
      transparent 28rem
    ),
    #071523;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(182, 227, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 227, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  pointer-events: none;
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.ambient-one {
  width: 15rem;
  height: 15rem;
  right: -5rem;
  top: 13rem;
  border: 1px solid rgba(102, 231, 255, 0.2);
  box-shadow: 0 0 80px rgba(102, 231, 255, 0.1);
}
.ambient-two {
  width: 8rem;
  height: 8rem;
  left: 9%;
  bottom: 11rem;
  border: 1px solid rgba(196, 243, 106, 0.2);
  box-shadow: 0 0 55px rgba(196, 243, 106, 0.09);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 22px rgba(0, 0, 0, 0.2);
}
.brand-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.brand-version {
  color: var(--muted);
  font:
    700 12px/1 "SFMono-Regular",
    Consolas,
    monospace;
}
.header-link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}
.header-link:hover,
.header-link:focus-visible {
  color: var(--cyan);
}

@media (max-width: 560px) {
  .brand-name {
    display: none;
  }
}

.page-shell {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  max-width: 760px;
  padding: clamp(76px, 13vw, 150px) 0 132px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font:
    800 11px/1.2 "SFMono-Regular",
    Consolas,
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(52px, 8.2vw, 104px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.92;
}
h1 em {
  color: var(--lime);
  font-style: normal;
}
.hero-copy {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}
.button {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 19px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.button-primary {
  color: #081522;
  background: var(--cyan);
  box-shadow: 0 10px 30px rgba(102, 231, 255, 0.17);
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(102, 231, 255, 0.25);
}
.connection-note {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font:
    700 11px/1.2 "SFMono-Regular",
    Consolas,
    monospace;
}
.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}
