:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #142033;
  --muted: #5c687a;
  --line: #dfe7f2;
  --brand: #2458f2;
  --brand-dark: #1439a8;
  --soft: #eef4ff;
  --shadow: 0 22px 60px rgba(31, 55, 90, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 231, 242, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #0fa3ff);
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-footer a:hover {
  color: var(--brand);
}

.header-cta {
  justify-self: end;
  text-decoration: none;
  color: #ffffff;
  background: var(--brand);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
}

main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 36px;
  align-items: center;
  padding: 74px 0 42px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--brand);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero-lead {
  max-width: 690px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
}

.cta-row.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(36, 88, 242, 0.26);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.disclosure,
.hero-media figcaption,
.footer-note {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

.hero-media figcaption {
  padding: 12px 14px 14px;
}

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

.intent-strip {
  margin: 22px 0 72px;
}

.intent-strip article,
.card,
.route-card,
.final-cta,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.intent-strip article,
.card,
.route-card {
  padding: 20px;
}

.icon-badge,
.route-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: var(--brand);
  background: var(--soft);
  border: 1px solid rgba(36, 88, 242, 0.16);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.intent-strip h2,
.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
}

.intent-strip p,
.card p,
.route-card small {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 64px 0;
  border-top: 1px solid rgba(223, 231, 242, 0.9);
}

.section-copy {
  max-width: 790px;
  margin-bottom: 24px;
}

.section-copy h2,
.final-cta h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p {
  color: var(--muted);
  font-size: 17px;
}

.route-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 850;
}

.route-card .route-icon {
  margin-bottom: 0;
}

.route-card:hover {
  border-color: rgba(36, 88, 242, 0.45);
  box-shadow: 0 14px 34px rgba(31, 55, 90, 0.1);
}

.faq-section {
  padding-bottom: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.final-cta {
  margin: 48px 0 72px;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
  background: linear-gradient(135deg, #ffffff, var(--soft));
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: start;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-note {
  grid-column: 1 / -1;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-cta {
    justify-self: start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .intent-strip,
  .card-grid,
  .link-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 24px, 1160px);
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .button,
  .header-cta {
    width: 100%;
  }
}
