:root {
  --bg: #080a12;
  --surface: #101320;
  --surface-soft: #151927;
  --line: #24293a;
  --text: #f5f7ff;
  --muted: #a0a8ba;
  --accent: #6366f1;
  --accent-strong: #a78bfa;
  --good: #42d392;
  --warn: #f5b856;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: #fff;
}

.container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 18, 0.92);
  backdrop-filter: blur(16px);
}

.nav-inner,
.footer-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 36px;
  object-fit: contain;
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a.active,
.footer-links a:hover,
.nav-links a:hover {
  color: var(--text);
}

main {
  padding: 70px 0 88px;
}

.hero {
  max-width: 860px;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

p {
  margin: 0 0 16px;
}

.lede {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 760;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.section {
  padding-top: 70px;
}

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

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

.card,
.callout,
.fact-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 32, 0.86);
}

.card,
.callout {
  padding: 22px;
}

.card p,
.callout p,
li {
  color: var(--muted);
}

.callout {
  border-left: 3px solid var(--accent);
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.fact-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.fact-table th,
.fact-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.fact-table th {
  color: var(--text);
  font-size: 13px;
}

.fact-table td {
  color: var(--muted);
}

.fact-table tr:last-child td {
  border-bottom: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.note {
  color: var(--warn);
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .nav-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  main {
    padding-top: 48px;
  }

  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }
}
