:root {
  --blue-900: #0a2e66;
  --blue-700: #1d4f9f;
  --blue-500: #2f6ed6;
  --blue-100: #e9f0ff;
  --gray-900: #1a1f2c;
  --gray-700: #404758;
  --gray-500: #71788a;
  --gray-200: #d7dbe5;
  --gray-100: #f7f8fb;
  --white: #ffffff;
  --radius: 18px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  opacity: 0;
}
body.ready {
  opacity: 1;
  transition: opacity 0.15s ease;
}

h1, h2, h3 { line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.6rem); }
h3 { font-size: 1.2rem; }

.container { width: min(1120px, 92%); margin-inline: auto; }
.section { padding: 5rem 0; }

.skip-link {
  position: absolute;
  left: -1000px;
  top: 10px;
  background: var(--blue-900);
  color: white;
  padding: .6rem 1rem;
  border-radius: 10px;
}
.skip-link:focus { left: 10px; z-index: 99; }

a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; }

.site-header { position: sticky; top: 0; background: #ffffffee; backdrop-filter: blur(8px); border-bottom: 1px solid var(--gray-200); z-index: 10; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.desktop-nav { display: flex; gap: 1rem; }
.nav-link { color: var(--gray-700); font-weight: 600; padding: .4rem .6rem; border-radius: 8px; }
.nav-link.active, .nav-link:hover { background: var(--blue-100); color: var(--blue-900); text-decoration: none; }

.brand-logo {
  width: 180px;
  height: auto;
  display: block;
}

.menu-toggle { display: none; border: 1px solid var(--gray-200); background: white; border-radius: 10px; padding: .5rem; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); margin: 4px 0; }
.mobile-nav { display: grid; gap: .3rem; padding: 1rem 4%; border-bottom: 1px solid var(--gray-200); background: white; }
.mobile-nav .nav-link { padding: .8rem; }

.hero {
  background: linear-gradient(145deg, #f8faff 0%, #edf3ff 44%, #fff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; }
.eyebrow { color: var(--blue-700); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.lead { font-size: 1.12rem; color: var(--gray-700); max-width: 56ch; }

.section-tight { padding-top: 2.2rem; padding-bottom: 2.2rem; }

.hero-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}
.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--gray-700);
}
.hero-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-700);
  font-weight: 700;
}
.microcopy { margin-top: .8rem; color: var(--gray-500); font-size: .92rem; }

.hero-proof h2 { font-size: clamp(1.3rem, 2.2vw, 2rem); margin-top: 0; }
.stat-grid { display: grid; gap: .8rem; margin-top: 1rem; }
.stat-grid div { display: grid; gap: .18rem; }
.stat-grid strong { color: var(--blue-900); font-size: 1.45rem; line-height: 1; }
.stat-grid span { color: var(--gray-700); font-size: .95rem; }

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.logo-row span {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  text-align: center;
  padding: .65rem .8rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100);
}

.card-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.pricing-preview {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.highlight-card {
  border-color: #9bb8ef;
  box-shadow: 0 12px 26px #1d4f9f1a;
}

.faq-preview {
  display: grid;
  gap: .75rem;
}
.faq-preview details {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: .9rem 1rem;
  background: white;
}
.faq-preview summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-preview p { margin: .55rem 0 0; color: var(--gray-700); }

.btn-ghost {
  border-color: #ffffff5e;
  color: white;
  background: transparent;
}
.btn-ghost:hover { background: #ffffff24; text-decoration: none; }

.button-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: .72rem 1.2rem; font-weight: 700; border: 1px solid transparent; }
.btn-primary { background: var(--blue-700); color: white; }
.btn-primary:hover { background: var(--blue-900); text-decoration: none; }
.btn-secondary { border-color: var(--gray-200); color: var(--gray-900); background: white; }

.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.2rem; box-shadow: 0 8px 24px #0f17310a; }
.card p { color: var(--gray-700); margin: .4rem 0 0; }

.timeline { border-left: 3px solid var(--blue-100); padding-left: 1.1rem; display: grid; gap: 1rem; }
.step { position: relative; }
.step::before { content: ''; position: absolute; left: -1.7rem; top: .3rem; width: 12px; height: 12px; border-radius: 50%; background: var(--blue-500); }

.band { background: var(--blue-900); color: white; border-radius: var(--radius); padding: 2rem; }
.band a { color: white; }

.site-footer { margin-top: 4rem; background: var(--gray-100); border-top: 1px solid var(--gray-200); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr; gap: 1rem; padding: 2.4rem 0; }
.footer-grid a { display: block; margin-bottom: .2rem; }
.h5 { font-size: 1rem; margin: 0 0 .4rem; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .card-grid, .footer-grid, .pricing-preview, .logo-row, .card-grid-three { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .section-tight { padding-top: 2rem; padding-bottom: 2rem; }
}
