:root {
  --bg: #080b16;
  --panel: #121a30;
  --text: #ecf0ff;
  --muted: #bac4e8;
  --primary: #5f8bff;
  --primary-2: #7b5cff;
  --stroke: #27314f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 0%, #1a2754 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  min-height: 85vh;
  padding-bottom: 3rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo span {
  color: var(--primary);
}

.hero-content {
  padding-top: 3rem;
  max-width: 860px;
}

.eyebrow {
  color: #9db1ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin: 0.4rem 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  opacity: 0.93;
}

.btn-outline,
.btn-ghost {
  background: transparent;
  border-color: var(--stroke);
}

.stat-strip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-strip article {
  border: 1px solid var(--stroke);
  background: rgba(18, 26, 48, 0.8);
  border-radius: 0.8rem;
  padding: 1rem;
}

.stat-strip strong {
  display: block;
  font-size: 1.4rem;
}

.stat-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  margin-top: 0;
  font-size: 1.9rem;
}

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

.card,
.bento,
.timeline article {
  background: rgba(18, 26, 48, 0.72);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 1.2rem;
}

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

.chip {
  display: inline-block;
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #aec1ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

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

.bento-lg {
  grid-column: span 2;
}

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

.timeline span {
  font-weight: 800;
  color: #9db1ff;
}

.contact p {
  color: var(--muted);
  max-width: 60ch;
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 1.2rem 0;
  color: #8fa0d6;
}

@media (max-width: 860px) {
  .grid.three,
  .bento-grid,
  .timeline,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .bento-lg {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .nav-links {
    display: none;
  }
}
