:root {
  --bg: #f7f8fa;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --accent: #0b6bcb;
  --accent-2: #0aa4a5;
  --line: #dfe5ef;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(11, 107, 203, 0.1), transparent 34%),
    radial-gradient(circle at 90% 14%, rgba(10, 164, 165, 0.08), transparent 36%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.wrap {
  width: min(1040px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  width: 28rem;
  height: 28rem;
  filter: blur(80px);
  z-index: -3;
}

.orb-a {
  background: rgba(11, 107, 203, 0.14);
  top: -8rem;
  right: -8rem;
}

.orb-b {
  background: rgba(10, 164, 165, 0.12);
  bottom: -10rem;
  left: -8rem;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 5px 5px;
  pointer-events: none;
}

.site-header {
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-nav {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.top-nav a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 0.42rem 0.74rem;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.top-nav a:hover {
  border-color: #bdd5f4;
  color: #0a4e96;
  background: #f3f8ff;
}

.top-nav a[aria-current="page"] {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #084f99);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #084f99);
  padding: 0.34rem 0.58rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(11, 107, 203, 0.3);
}

.brand-tag {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  padding: 3rem 0 1.8rem;
}

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d7f8a;
  margin: 0 0 0.9rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.07;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 5.4vw, 3.9rem);
  max-width: 14ch;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 3.1vw, 2rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.lead {
  max-width: 64ch;
  font-size: 1rem;
  margin-top: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 1.5rem;
}

.btn {
  text-decoration: none;
  padding: 0.66rem 0.94rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  color: #f8fbff;
  background: linear-gradient(135deg, var(--accent), #084f99);
  box-shadow: 0 8px 18px rgba(11, 107, 203, 0.25);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline {
  border-color: rgba(11, 107, 203, 0.45);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.82);
}

.hero-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.hero-metrics li {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.82rem 0.9rem;
}

.hero-metrics span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  display: block;
}

.hero-metrics small {
  color: var(--muted);
}

.panel {
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
  padding: 1.2rem;
  background: linear-gradient(160deg, #ffffff, #fbfcff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.stat-grid article {
  background: #ffffff;
  border: 1px solid #e6edf8;
  border-radius: 12px;
  padding: 0.85rem;
}

.stat-grid h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  color: #0d7f8a;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.timeline article {
  padding: 0.88rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e6edf8;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  color: #f8fbff;
  background: linear-gradient(145deg, var(--accent), #0d7f8a);
  margin-bottom: 0.45rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chips span {
  border: 1px solid #c7d9f0;
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  background: #f8fbff;
  font-size: 0.9rem;
}

.roadmap-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.roadmap-list li {
  margin-bottom: 0.6rem;
  line-height: 1.52;
}

.ask-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
}

.ask-grid article {
  padding: 0.88rem;
  border-radius: 12px;
  border: 1px solid #e6edf8;
  background: #ffffff;
}

.ask-grid p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  padding: 2.2rem 0 2.8rem;
}

.site-footer a {
  color: var(--accent);
}

.note {
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .top-nav {
    width: 100%;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .panel {
    padding: 1rem;
  }
}
