:root {
  --primary: #0057b8;
  --secondary: #4b89cf;
  --navy: #0b2457;
  --light: #f3f6fa;
  --white: #ffffff;
  --line: #d8e1ec;
  --text: #162743;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
a { color: var(--primary); text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; padding: 10px 16px; background: var(--navy); color: white; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--navy); text-decoration: none; font-weight: 600; font-size: 25px; letter-spacing: -.035em; white-space: nowrap; }
.brand img { width: 56px; height: 56px; }
.menu-toggle { display: none; min-width: 48px; min-height: 48px; border: 1px solid var(--line); border-radius: 8px; background: white; color: var(--navy); font: inherit; font-weight: 600; }
.site-nav { display: flex; align-items: center; gap: 7px; }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 10px; border-radius: 6px; color: var(--navy); font-size: 14px; font-weight: 500; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--light); color: var(--primary); }
.site-nav .contact-link { margin-left: 4px; padding-inline: 18px; background: var(--primary); color: white; }
.site-nav .contact-link:hover, .site-nav .contact-link[aria-current="page"] { background: var(--navy); color: white; }

.hero { position: relative; overflow: hidden; background: var(--light); }
.hero::after { content: ""; position: absolute; right: -180px; top: -260px; width: 700px; height: 700px; border: 90px solid rgba(75,137,207,.12); border-radius: 50%; }
.hero-inner { position: relative; z-index: 1; min-height: 510px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); align-items: center; gap: 70px; padding-block: 80px; }
.hero-copy { max-width: 720px; }
.eyebrow { margin: 0 0 12px; color: var(--primary); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--navy); font-weight: 600; }
h1 { margin-bottom: 22px; font-size: clamp(42px, 6vw, 68px); line-height: 1.06; letter-spacing: -.035em; }
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 42px); line-height: 1.15; letter-spacing: -.02em; }
h3 { margin-bottom: 10px; font-size: 23px; line-height: 1.24; letter-spacing: -.01em; }
.hero .lede { max-width: 670px; margin: 0 0 18px; font-size: clamp(19px, 2.2vw, 23px); }
.hero p { max-width: 680px; }
.rule { width: 72px; height: 4px; margin: 26px 0; background: var(--primary); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 11px 20px; border: 2px solid var(--primary); border-radius: 7px; background: var(--primary); color: white; font-weight: 600; text-decoration: none; }
.button:hover { border-color: var(--navy); background: var(--navy); }
.button.secondary { background: white; color: var(--primary); }
.button.secondary:hover { background: var(--light); color: var(--navy); }
.path-card { position: relative; min-height: 310px; padding: 38px; overflow: hidden; border: 1px solid rgba(11,36,87,.18); border-radius: 18px; background: linear-gradient(145deg,#4779aa 0%,#315f91 100%); box-shadow: 0 16px 38px rgba(11,36,87,.11); color: white; }
.path-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg,rgba(255,255,255,.09),transparent 52%); pointer-events: none; }
.path-card h2, .path-card h3 { position: relative; z-index: 2; color: white; }
.path-card p { position: relative; z-index: 2; max-width: 17em; }
.path-lines { position: absolute; inset: 0; opacity: .52; pointer-events: none; }
.path-lines span { position: absolute; right: -82px; bottom: -185px; width: 74px; height: 420px; border-radius: 999px; background: var(--secondary); transform: rotate(48deg); transform-origin: bottom; }
.path-lines span:nth-child(1) { right: 66px; width: 42px; background: #76a2cf; opacity: .48; }
.path-lines span:nth-child(2) { right: -4px; width: 58px; background: #1d5389; opacity: .55; }
.path-lines span:nth-child(3) { right: -86px; width: 88px; background: #0b3f78; opacity: .66; }

.section { padding-block: 84px; }
.section.compact { padding-block: 62px; }
.section.alt { background: var(--light); }
.section.navy { background: var(--navy); color: white; }
.section.navy h2, .section.navy h3 { color: white; }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading p { margin-bottom: 0; }
.grid { display: grid; gap: 24px; }
.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.card.accent { border-top: 5px solid var(--secondary); }
.card p:last-child { margin-bottom: 0; }
.number { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 50%; background: var(--light); color: var(--primary); font-weight: 600; }
.principle { max-width: 860px; margin-inline: auto; text-align: center; }
.principle blockquote { margin: 0; color: var(--navy); font-size: clamp(28px,4vw,45px); font-weight: 600; line-height: 1.2; letter-spacing: -.025em; }
.journey { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; margin-top: 34px; }
.journey span { position: relative; padding: 14px 8px; text-align: center; color: white; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.journey span:not(:last-child)::after { content: "→"; position: absolute; right: -9px; color: var(--secondary); }
.feature-list { padding: 0; margin: 22px 0 0; list-style: none; }
.feature-list li { position: relative; margin: 10px 0; padding-left: 29px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 600; }
.questions { max-width: 880px; margin-inline: auto; }
.questions li { margin: 13px 0; }
.cta { padding-block: 58px; background: linear-gradient(110deg,var(--primary),var(--navy)); color: white; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta h2 { margin-bottom: 7px; color: white; }
.cta p { margin: 0; }
.cta .button { border-color: white; background: white; color: var(--navy); white-space: nowrap; }
.cta .button:hover { background: var(--light); }
.coming-soon { min-height: 58vh; display: grid; place-items: center; text-align: center; background: var(--light); }
.coming-soon .logo-large { width: 110px; margin: 0 auto 30px; }
.email-panel { max-width: 900px; margin-inline: auto; padding: 42px; border: 1px solid var(--line); border-radius: 12px; background: white; text-align: center; }
.email-address { overflow-wrap: anywhere; font-size: clamp(18px,3vw,27px); }

.site-footer { padding-block: 52px 28px; background: var(--navy); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-brand { color: white; }
.footer-brand img { filter: none; }
.site-footer a { color: white; }
.footer-links { display: grid; gap: 9px; align-content: start; }
.copyright { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); color: var(--light); font-size: 14px; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav { position: absolute; top: 88px; left: 0; right: 0; display: none; padding: 18px 20px 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 14px 28px rgba(11,36,87,.12); }
  .site-nav.open { display: grid; }
  .site-nav a { width: 100%; padding: 11px 14px; font-size: 16px; }
  .site-nav .contact-link { margin: 7px 0 0; justify-content: center; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 32px; padding-block: 64px; }
  .path-card { min-height: 250px; }
  .grid.four { grid-template-columns: repeat(2,1fr); }
  .journey { grid-template-columns: repeat(3,1fr); }
  .journey span:nth-child(3)::after { display: none; }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  .header-inner { min-height: 78px; }
  .brand { font-size: 20px; }
  .brand img { width: 48px; height: 48px; }
  .site-nav { top: 78px; }
  .section { padding-block: 62px; }
  .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; gap: 0; }
  .journey span:not(:last-child)::after { content: "↓"; left: 50%; right: auto; bottom: -14px; top: auto; }
  .cta-inner, .footer-grid { display: grid; grid-template-columns: 1fr; }
  .cta .button { width: 100%; }
  .email-panel { padding: 30px 20px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
