:root {
  --blue: #0a96fb;
  --blue-deep: #0878c9;
  --blue-soft: #9bd2f6;
  --blue-wash: #e8f5fe;
  --navy: #18507b;
  --navy-ink: #0e3a5c;
  --olive: #988c5a;
  --lilac: #c4acce;
  --pine: #394f23;
  --paper: #f6fafd;
  --white: #ffffff;
  --ink: #16324a;
  --muted: #5b7388;
  --line: #d7e4ee;
  --danger: #c23b3b;
  --ok: #2f7d4a;
  --shadow: 0 18px 50px rgba(24, 80, 123, 0.12);
  --shadow-sm: 0 8px 24px rgba(24, 80, 123, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1120px;
  --font: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Banner */
.banner {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  text-align: center;
  padding: 10px 16px;
}
.banner a { color: var(--blue-soft); text-decoration: underline; text-underline-offset: 3px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; gap: 8px; height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 22px; letter-spacing: -0.04em; color: var(--navy);
}
.logo svg { display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 18px; }
.nav-links > a, .drop > button {
  background: none; border: 0; color: var(--navy);
  font-size: 15px; font-weight: 700; padding: 8px 12px; border-radius: 8px;
}
.nav-links > a:hover, .drop > button:hover { background: var(--blue-wash); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-cta .signin { font-weight: 800; font-size: 15px; color: var(--navy); padding: 8px 10px; }
.burger { display: none; width: 42px; height: 42px; border: 0; background: none; margin-left: auto; }
.drop { position: relative; }
.drop-panel {
  position: absolute; top: calc(100% + 8px); left: 0; width: 520px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 12px; display: none; grid-template-columns: 1fr 1fr; gap: 6px;
}
.drop:hover .drop-panel, .drop:focus-within .drop-panel { display: grid; }
.drop-panel a {
  display: block; padding: 12px; border-radius: 12px;
}
.drop-panel a:hover { background: var(--paper); }
.drop-panel strong { display: block; color: var(--navy); font-size: 14px; }
.drop-panel span { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 18px; border: 0; border-radius: 8px;
  font-weight: 800; font-size: 15px;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--blue-soft); outline-offset: 2px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 18px rgba(10,150,251,.28); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn-lg { height: 52px; padding: 0 22px; font-size: 16px; }

/* Hero */
.hero { padding: 64px 0 28px; background: linear-gradient(180deg, #fff 0%, var(--paper) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: .98; letter-spacing: -0.045em; color: var(--navy-ink); font-weight: 800;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.lede { margin-top: 18px; font-size: 18px; color: var(--muted); max-width: 540px; font-weight: 600; }
.capture {
  margin-top: 28px; display: flex; gap: 8px; max-width: 520px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 6px; box-shadow: var(--shadow-sm);
}
.capture input {
  flex: 1; border: 0; outline: 0; padding: 0 14px; font-size: 16px; color: var(--ink); min-width: 0;
}
.note { margin-top: 10px; font-size: 13px; color: var(--muted); font-weight: 600; }
.okmsg { display: none; margin-top: 12px; color: var(--ok); font-weight: 800; }
.okmsg.show { display: block; }

.hero-art {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow); padding: 18px; position: relative; overflow: hidden;
}
.hero-art::before {
  content: ""; position: absolute; inset: auto -40px -50px auto; width: 220px; height: 220px;
  background: radial-gradient(circle, var(--lilac), transparent 70%); opacity: .55;
}
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.pills { display: flex; gap: 6px; }
.pills i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.kpi-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.kpi { background: var(--paper); border-radius: 14px; padding: 12px; }
.kpi b { display: block; font-size: 20px; color: var(--navy); letter-spacing: -0.03em; }
.kpi span { color: var(--muted); font-size: 12px; font-weight: 700; }
.bars { margin-top: 14px; display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; align-items: end; height: 120px; }
.bars span {
  display: block; border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--blue), var(--blue-soft));
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip { background: var(--blue-wash); color: var(--navy); font-size: 12px; font-weight: 800; padding: 6px 10px; border-radius: 999px; }

/* Logos */
.logos { padding: 28px 0 8px; }
.logos p { text-align: center; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.logo-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; align-items: center;
}
.logo-row .mark {
  height: 52px; display: grid; place-items: center; color: #7b91a3; font-weight: 800;
  letter-spacing: -0.03em; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}

/* Sections */
section { padding: 72px 0; }
.center { text-align: center; }
h2 {
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; letter-spacing: -0.035em;
  color: var(--navy-ink); font-weight: 800;
}
.sub { margin: 12px auto 0; max-width: 640px; color: var(--muted); font-weight: 600; font-size: 17px; }
.link-arrow { color: var(--blue); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 3px; }

.audience {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 12px;
}
.card h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-weight: 600; font-size: 15px; }
.card a { display: inline-block; margin-top: 12px; color: var(--blue); font-weight: 800; font-size: 14px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.checklist { margin-top: 18px; display: grid; gap: 10px; }
.checklist li { list-style: none; display: flex; gap: 10px; font-weight: 700; color: var(--navy); }
.dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--blue-wash); color: var(--blue);
  display: grid; place-items: center; flex: 0 0 22px; font-size: 12px;
}

.int-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 28px; }
.int {
  border: 1px dashed var(--line); border-radius: 14px; height: 88px;
  display: grid; place-items: center; font-weight: 800; color: var(--navy); background: #fff;
}

.resources { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 32px; }
.res {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.res-art { height: 110px; }
.res-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tag { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--olive); }
.res h3 { font-size: 16px; color: var(--navy); }
.res a { margin-top: auto; color: var(--blue); font-weight: 800; font-size: 14px; }

.cta-band {
  background: var(--navy); color: #fff; border-radius: 28px; padding: 48px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--blue-soft); margin-top: 10px; font-weight: 600; }
.cta-band .capture { background: #fff; }

.quote {
  margin-top: 28px; background: var(--paper); border-radius: 24px; padding: 36px;
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
}
.avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac), var(--blue-soft));
  display: grid; place-items: center; color: var(--navy); font-weight: 800; font-size: 22px;
}
.quote q { font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.quote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 800; color: var(--muted); font-size: 14px; }

footer.site {
  background: #10263a; color: #d5e4f0; padding: 56px 0 24px; margin-top: 40px;
}
.foot-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 28px; }
.foot-grid h4 { color: #fff; margin-bottom: 12px; font-size: 14px; }
.foot-grid a { display: block; color: #b7c9d8; font-weight: 650; font-size: 14px; padding: 4px 0; }
.foot-grid a:hover { color: #fff; }
.legal { margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #93a9bb; }

/* Inner pages */
.page-hero { padding: 56px 0 24px; background: linear-gradient(180deg, var(--blue-wash), #fff); }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.04em; color: var(--navy-ink); }
.blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; text-align: center; }
.stat b { display: block; font-size: 36px; color: var(--blue); letter-spacing: -0.04em; }
.stat span { color: var(--muted); font-weight: 700; }
.timeline { margin-top: 28px; display: grid; gap: 0; }
.tl {
  display: grid; grid-template-columns: 120px 1fr; gap: 18px;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.tl time { color: var(--blue); font-weight: 800; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare ul { margin-top: 12px; display: grid; gap: 8px; }
.compare li { list-style: none; font-weight: 700; color: var(--navy); padding-left: 22px; position: relative; }
.compare .yes li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); }
.compare .no li::before { content: "$"; position: absolute; left: 0; color: var(--olive); font-weight: 800; }

.form-page { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); }
label { display: block; font-weight: 800; color: var(--navy); font-size: 13px; margin: 14px 0 6px; }
.field {
  width: 100%; height: 48px; border: 1px solid var(--line); border-radius: 10px; padding: 0 14px; font-size: 16px;
}
.field:focus { outline: 3px solid var(--blue-soft); border-color: var(--blue); }
.help { color: var(--danger); font-size: 13px; font-weight: 700; display: none; margin-top: 6px; }
.help.show { display: block; }
.fine { font-size: 13px; color: var(--muted); margin-top: 14px; font-weight: 600; }

.nf { min-height: 52vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.nf h1 { font-size: clamp(42px, 8vw, 88px); color: var(--navy); letter-spacing: -0.05em; }
code.path { background: var(--paper); padding: 2px 8px; border-radius: 6px; color: var(--blue); }

@media (max-width: 980px) {
  .hero-grid, .split, .audience, .resources, .cta-band, .foot-grid, .blocks, .stat-grid, .compare, .form-page, .int-grid, .logo-row { grid-template-columns: 1fr; }
  .resources, .int-grid, .logo-row, .stat-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .signin { display: none; }
  .burger { display: grid; place-items: center; }
  .nav.open .nav-links, .nav.open .nav-cta { display: flex; flex-direction: column; align-items: stretch; position: absolute; left: 0; right: 0; top: 72px; background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px 18px; }
  .drop-panel { position: static; width: auto; display: none; box-shadow: none; border: 0; padding: 0; }
  .nav.open .drop-panel { display: grid; }
  .cta-band { padding: 28px; }
  .quote { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .resources, .int-grid, .logo-row, .stat-grid, .kpi-row { grid-template-columns: 1fr; }
  .capture { flex-direction: column; }
  .tl { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
