:root {
  --bg: #07070b;
  --panel: #0e0e17;
  --panel-2: #12121f;
  --text: #f4f1e9;
  --muted: #aaa7b6;
  --line: rgba(255,255,255,.11);
  --indigo: #7667ff;
  --indigo-bright: #9b90ff;
  --gold: #dfb260;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 74% 10%, rgba(92,73,255,.16), transparent 28rem),
    radial-gradient(circle at 15% 38%, rgba(223,178,96,.05), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.65) 0 1px, transparent 1.2px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.45) 0 1px, transparent 1.2px),
    radial-gradient(circle at 45% 75%, rgba(255,255,255,.35) 0 1px, transparent 1.2px);
  background-size: 210px 210px, 310px 310px, 420px 420px;
}

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(223,178,96,.65);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: .16em;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
}

.brand small {
  color: var(--muted);
  font-size: .61rem;
  margin-top: 2px;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-header nav a:hover { color: var(--text); }

main,
footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-kicker,
.product-label {
  color: var(--indigo-bright);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
}

.hero h1,
.manifesto h2,
.section-heading h2,
.contact-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(3.3rem, 6.7vw, 6.8rem);
  margin: 18px 0 24px;
}

.lede {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
}

.hero-actions,
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.button.primary {
  background: var(--indigo);
  color: white;
  border-color: transparent;
}

.button.ghost:hover { border-color: rgba(255,255,255,.35); }

.system-orbit {
  position: relative;
  width: min(38vw, 440px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(155,144,255,.22);
  border-radius: 50%;
}

.orbit-one { inset: 6%; }
.orbit-two { inset: 22%; }

.core {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #28245a, #0e0e18 68%);
  border: 1px solid rgba(155,144,255,.42);
  box-shadow: 0 0 60px rgba(118,103,255,.2);
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.core span,
.core small {
  letter-spacing: .2em;
  font-size: .55rem;
  color: var(--muted);
}

.core strong {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--indigo-bright);
}

.satellite {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--indigo-bright);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(155,144,255,.85);
}

.sat-one { top: 11%; right: 25%; }
.sat-two { bottom: 18%; left: 10%; background: var(--gold); }
.sat-three { right: 8%; bottom: 32%; width: 7px; height: 7px; }

.manifesto {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  align-items: start;
}

.manifesto h2 {
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  margin: 8px 0 0;
}

.manifesto-grid > p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 18px;
}

.products,
.capabilities {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  margin: 6px 0 0;
}

.section-heading.compact h2 {
  font-size: clamp(2.4rem, 4.3vw, 4.2rem);
}

.status {
  border: 1px solid rgba(155,144,255,.35);
  color: var(--indigo-bright);
  padding: 8px 11px;
  font-size: .67rem;
  letter-spacing: .16em;
}

.product-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(24,22,48,.68), rgba(11,11,17,.92));
  overflow: hidden;
}

.product-copy {
  padding: clamp(30px, 5vw, 68px);
}

.product-number {
  color: rgba(255,255,255,.24);
  font-family: Georgia, serif;
  font-size: 1rem;
}

.product-copy h3 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 16px 0 22px;
}

.product-copy > p:not(.product-label) {
  color: var(--muted);
  max-width: 650px;
}

.product-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(118,103,255,.24), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,.02), transparent);
  border-left: 1px solid var(--line);
}

.compass {
  position: relative;
  width: min(70%, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(155,144,255,.46);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 70px rgba(118,103,255,.12);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}

.ring-a { inset: 12%; }
.ring-b { inset: 28%; }

.needle {
  width: 4px;
  height: 56%;
  background: linear-gradient(to bottom, var(--gold) 0 48%, rgba(255,255,255,.16) 48% 100%);
  clip-path: polygon(50% 0, 100% 45%, 58% 50%, 58% 100%, 42% 100%, 42% 50%, 0 45%);
  transform: rotate(28deg);
}

.center-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--text);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,255,255,.08);
}

.north,.east,.south,.west {
  position: absolute;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .15em;
}

.north { top: 6%; }
.south { bottom: 6%; }
.east { right: 6%; }
.west { left: 6%; }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-grid article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid article > span {
  color: var(--indigo-bright);
  font-size: .68rem;
  letter-spacing: .14em;
}

.capability-grid h3 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 48px 0 12px;
}

.capability-grid p {
  color: var(--muted);
  font-size: .93rem;
}

.contact-band {
  text-align: center;
  padding: 130px 20px;
}

.contact-band h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  max-width: 900px;
  margin: 10px auto 28px;
}

.contact-band > a {
  color: var(--indigo-bright);
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

footer {
  min-height: 130px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: .78rem;
}

.footer-brand {
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  letter-spacing: .08em;
}

.footer-brand span { color: var(--gold); }

@media (max-width: 900px) {
  .site-header {
    min-height: 78px;
  }

  .site-header nav a:not(:last-child) { display: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 90px 0;
  }

  .system-orbit {
    width: min(80vw, 390px);
    margin-top: 30px;
  }

  .manifesto-grid,
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-visual {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 30px 0 40px;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand strong { font-size: .82rem; }

  .hero { padding: 72px 0 80px; }

  .hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }

  .hero-actions .button,
  .product-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .manifesto,
  .products,
  .capabilities { padding: 82px 0; }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .product-copy { padding: 28px 24px 34px; }

  .product-visual { min-height: 360px; }

  .capability-grid { grid-template-columns: 1fr; }

  .capability-grid article { min-height: 220px; }

  .capability-grid h3 { margin-top: 34px; }

  .contact-band { padding: 100px 0; }
}
