:root {
  --bg: #07090d;
  --bg-2: #0d1218;
  --ink: #e8edf3;
  --muted: #9aa6b4;
  --line: rgba(232, 237, 243, 0.12);
  --cyan: #7ee0ff;
  --amber: #ffb25b;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Instrument Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255,255,255,0.06) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

.nav, main, footer { position: relative; z-index: 1; }

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 6vw;
  background: rgba(7, 9, 13, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.mark {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--cyan) 40%, #1a6a80);
  box-shadow: 0 0 12px var(--cyan);
}

.nav nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.nav nav a { color: var(--muted); font-size: 0.92rem; text-decoration: none; }
.nav nav a:hover { color: var(--ink); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 6vw 4rem;
}

.kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }

.lede {
  margin-top: 1.25rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.lede.short { margin-top: 0.6rem; }

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn.primary {
  background: var(--ink);
  color: var(--bg);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn:hover { text-decoration: none; opacity: 0.9; }

.byline {
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 6vw;
  border-top: 1px solid var(--line);
}

.section-head { max-width: 62ch; margin-bottom: 1.8rem; }
.section-head p:not(.kicker) { color: var(--muted); }

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.five { grid-template-columns: repeat(5, 1fr); }

.cards article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.15rem 1.25rem;
}

.cards article p { color: var(--muted); font-size: 0.95rem; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.spec {
  background: linear-gradient(180deg, #111821, #0c1016);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
}

.spec.wide { grid-column: span 4; }

.spec .label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.spec .value {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 0.45rem;
}

.spec .unit {
  color: var(--muted);
  margin-left: 0.25rem;
  font-size: 0.95rem;
}

.body { color: var(--muted); }

.plain { list-style: none; }
.plain li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.plain strong { color: var(--ink); font-weight: 600; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.timeline, .steps { list-style: none; margin-top: 1rem; }

.timeline li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 0.15rem;
}

.timeline p { color: var(--muted); }

.steps { counter-reset: step; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  color: var(--cyan);
}

.contact .contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.contact .label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact p { margin-top: 0.3rem; }

footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 6vw 2.2rem;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .cards.three, .cards.five, .spec-grid, .two-col, .contact .contact-row {
    grid-template-columns: 1fr;
  }
  .spec.wide { grid-column: auto; }
  .nav nav { display: none; }
  .hero { padding-top: 3.5rem; }
}
