:root {
  color-scheme: dark;
  --shell: min(1360px, calc(100% - 40px));
  --bg: #020617;
  --surface: rgba(8, 18, 33, 0.76);
  --surface-strong: rgba(10, 27, 47, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(103, 232, 249, 0.32);
  --text: #edf7ff;
  --muted: #a9bacb;
  --faint: #6c7d8e;
  --cyan: #67e8f9;
  --cyan-strong: #22d3ee;
  --brass: #f0c36a;
  --green: #8ee6a9;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 18% -10%, rgba(34, 211, 238, 0.22), transparent 34rem),
    radial-gradient(circle at 92% 12%, rgba(240, 195, 106, 0.14), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #06111f 45%, #020617 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  background: var(--cyan);
  color: #00111a;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--shell);
  margin: 16px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(103, 232, 249, 0.08), transparent 32%),
    rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.brand,
.nav-links,
.hero-actions,
.release-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.72rem;
  min-width: 220px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 0 26px rgba(103, 232, 249, 0.22);
}

.nav-links {
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a,
.nav-cta {
  padding: 0.6rem 0.82rem;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  border: 1px solid rgba(103, 232, 249, 0.34);
  color: var(--cyan);
  font-weight: 760;
  min-width: 96px;
  text-align: center;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(540px, 1.32fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(2.4rem, 6vw, 5.4rem) 0 4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.25rem;
  max-width: 12.8ch;
  font-size: clamp(3.4rem, 6.8vw, 6.45rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}

.hero-lede,
.split-section p,
.showcase-copy p,
.privacy-copy,
.release-panel p,
.feature-grid p {
  color: var(--muted);
}

.hero-lede {
  max-width: 42rem;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.release-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.08rem;
  border-radius: 999px;
  font-weight: 820;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #00151d;
  background: linear-gradient(135deg, var(--cyan), #9ff7ff);
  box-shadow: 0 18px 48px rgba(34, 211, 238, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  max-width: 42rem;
}

.signal-strip div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-strip dt {
  color: var(--faint);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.signal-strip dd {
  margin: 0.22rem 0 0;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  padding: clamp(0.5rem, 2vw, 1rem);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 6% -8% -6% 10%;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(103, 232, 249, 0.16), transparent 55%),
    linear-gradient(135deg, rgba(103, 232, 249, 0.12), rgba(240, 195, 106, 0.08));
  filter: blur(12px);
}

.hero-infographic {
  position: relative;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(0.7deg);
}

.live-orbit {
  position: absolute;
  right: -10px;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

.live-orbit img {
  width: 92px;
  height: 92px;
  animation: float 4s ease-in-out infinite;
}

.live-orbit span {
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(103, 232, 249, 0.4);
  border-radius: inherit;
  animation: spin 14s linear infinite;
}

.marquee {
  display: flex;
  gap: 0.7rem;
  width: var(--shell);
  margin: 0 auto 7rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}

.marquee span {
  flex: 0 0 auto;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.split-section,
.privacy-band,
.release-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: 6rem 0;
}

.terminal-card,
.release-panel,
.privacy-band,
.feature-grid article {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.terminal-card {
  overflow: hidden;
  border-radius: 24px;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.terminal-top span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: var(--brass);
}

.terminal-top span:nth-child(2) {
  background: var(--cyan);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top strong {
  margin-left: auto;
  color: var(--faint);
  font-size: 0.84rem;
}

pre {
  margin: 0;
  padding: clamp(1rem, 3vw, 1.5rem);
  overflow-x: auto;
  color: #dffaff;
  font: 0.98rem/1.75 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0 6rem;
}

.feature-grid article {
  min-height: 290px;
  padding: 1.4rem;
  border-radius: 24px;
}

.feature-grid img {
  width: 80px;
  height: 80px;
  margin-bottom: 2.2rem;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: 5rem 0 7rem;
}

.showcase-images {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem;
}

.image-link {
  position: relative;
  display: block;
  min-width: 0;
  color: var(--text);
  cursor: zoom-in;
  outline-offset: 5px;
}

.image-link img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.image-link span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(103, 232, 249, 0.36);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(2, 6, 23, 0.78);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.32);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.image-link:hover img,
.image-link:focus-visible img {
  border-color: var(--line-strong);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.52);
  transform: translateY(-3px);
}

.hero-image-link {
  width: min(100%, 850px);
  margin-left: auto;
}

.pipeline-link img {
  border-color: var(--line-strong);
}

.release-link {
  justify-self: end;
  width: min(58%, 520px);
  margin-top: 0.3rem;
}

.privacy-band,
.release-panel {
  margin-bottom: 6rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: 30px;
}

.privacy-band {
  grid-template-columns: minmax(0, 0.64fr) minmax(280px, 0.76fr) minmax(320px, 1.1fr);
}

.privacy-visual {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
}

.privacy-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.privacy-copy li + li {
  margin-top: 0.48rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 1rem 3rem;
  color: var(--faint);
  border-top: 1px solid var(--line);
}

.site-footer a:hover {
  color: var(--cyan);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(1360px, calc(100% - 28px));
  }

  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
    border-radius: 18px;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .split-section,
  .showcase,
  .privacy-band,
  .release-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .hero-infographic {
    transform: none;
  }

  .hero-stage::before {
    inset: 8% 0 -6%;
  }

  .hero-image-link,
  .release-link {
    width: 100%;
  }

  .live-orbit {
    right: 0;
    bottom: -34px;
    width: 118px;
    height: 118px;
  }

  .live-orbit img {
    width: 74px;
    height: 74px;
  }

  .signal-strip,
  .feature-grid,
  .showcase-images {
    grid-template-columns: 1fr;
  }

  .marquee {
    flex-wrap: wrap;
    margin-bottom: 3rem;
    overflow-x: visible;
  }

  .marquee span {
    flex: 0 1 auto;
  }

  pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
