:root {
  --bg: #f4f7ff;
  --paper: #ffffff;
  --ink: #101a3b;
  --muted: #526081;
  --line: #d8dff0;
  --brand: #1256ff;
  --brand-2: #0ea5a4;
  --brand-3: #ff6b36;
  --night: #0b1230;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 85% -20%, #bdd8ff 0%, transparent 40%),
    radial-gradient(circle at 0% 30%, #dbf9f4 0%, transparent 30%), var(--bg);
  line-height: 1.45;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(#132048 0.45px, transparent 0.45px);
  background-size: 8px 8px;
}

.container {
  width: min(1120px, calc(100% - 2.25rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(244, 247, 255, 0.85);
  border-bottom: 1px solid rgba(16, 26, 59, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 1.2rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}

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

.btn-solid {
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, var(--brand), #2e7bff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 86, 255, 0.25);
}

.btn-outline {
  padding: 0.6rem 1rem;
  border-color: rgba(16, 26, 59, 0.16);
  color: var(--ink);
  background: #fff;
}

.btn-ghost {
  padding: 0.85rem 1.2rem;
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  padding: 4.6rem 0 3.2rem;
  overflow: clip;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
}

.orb-a {
  width: 380px;
  height: 380px;
  right: -80px;
  top: 10px;
  background: radial-gradient(circle, rgba(18, 86, 255, 0.36), transparent 70%);
}

.orb-b {
  width: 240px;
  height: 240px;
  left: -70px;
  top: 140px;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.3), transparent 70%);
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5.1vw, 3.75rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 56ch;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.quick-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.quick-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  font-size: 0.92rem;
}

.quick-stats strong {
  color: var(--ink);
}

.quick-stats span {
  color: var(--muted);
}

.terminal {
  background: #070c22;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(131, 156, 255, 0.3);
  box-shadow: 0 22px 46px rgba(11, 18, 48, 0.4);
}

.terminal-bar {
  height: 42px;
  background: #0f1736;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.9rem;
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #33456f;
}

.terminal-bar span:nth-child(1) {
  background: #ef4444;
}

.terminal-bar span:nth-child(2) {
  background: #f59e0b;
}

.terminal-bar span:nth-child(3) {
  background: #22c55e;
}

.terminal-bar p {
  margin: 0 0 0 auto;
  color: #9ab0ef;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

pre {
  margin: 0;
  padding: 1rem 1.1rem 1.25rem;
  color: #d8e4ff;
  overflow-x: auto;
}

pre code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

.section {
  padding: 3.8rem 0;
}

.section-head {
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem;
  box-shadow: 0 12px 26px rgba(16, 26, 59, 0.05);
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-dark {
  background: linear-gradient(160deg, var(--night), #121b46);
  color: #e7ecff;
}

.section-dark .eyebrow {
  color: #63d7d0;
}

.section-dark h2 {
  color: #fff;
}

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

.timeline-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.1rem;
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-2), #1ad3be);
  color: #082631;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.timeline-item h3 {
  font-size: 1.03rem;
  margin-bottom: 0.45rem;
}

.timeline-item p {
  margin: 0;
  color: #b7c5f7;
  font-size: 0.93rem;
}

.pilot {
  background: linear-gradient(135deg, #ffffff, #eef3ff);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
}

.pilot ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.pilot-cta {
  background: #0e1844;
  border-radius: 16px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}

.pilot-cta p {
  margin: 0;
  color: #a8bcff;
  font-size: 0.88rem;
  text-align: center;
}

.site-footer {
  padding: 1.4rem 0 2rem;
}

.footer-wrap {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .timeline,
  .pilot {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 3.7rem;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 0.2rem;
  }
}
