:root {
  --background: #f5f8fb;
  --surface: #ffffff;
  --border: rgba(22, 50, 79, 0.12);
  --text: #16324f;
  --text-soft: #516579;
  --heading: #0e2740;
  --accent: #2a6cb0;
  --accent-dark: #17426c;
  --shadow: 0 20px 50px rgba(17, 39, 63, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(103, 151, 207, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, var(--background) 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 252, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 50, 79, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0f2943, #2a6cb0);
  color: #f5fbff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.06em;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link-active {
  color: var(--heading);
  background: rgba(22, 50, 79, 0.07);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #f9fbfd;
  font-weight: 600;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(23, 66, 108, 0.18);
}

.button-outline {
  background: transparent;
  color: var(--heading);
  border-color: rgba(22, 50, 79, 0.15);
  box-shadow: none;
}

.button-small {
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-section,
.page-hero {
  padding: 90px 0 54px;
}

.hero-grid,
.page-hero-grid,
.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.eyebrow,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  margin: 0 0 16px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-weight: 600;
}

h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-lede,
.section-body {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 60ch;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(42, 108, 176, 0.1);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.section {
  padding: 38px 0 72px;
}

.section-tint {
  background: linear-gradient(180deg, rgba(232, 241, 248, 0.65), rgba(245, 248, 251, 0.25));
}

.section-soft {
  background: linear-gradient(180deg, rgba(14, 39, 64, 0.03), rgba(255, 255, 255, 0));
}

.section-intro {
  margin-bottom: 28px;
  max-width: 720px;
}

.card-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.statement-card,
.callout-panel,
.side-panel,
.hero-panel,
.policy-index,
.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card,
.callout-panel,
.side-panel,
.hero-panel,
.policy-index,
.faq-item {
  padding: 26px;
}

.card p,
.statement-card p,
.callout-panel p,
.side-panel p,
.policy-block p,
.faq-item p {
  color: var(--text-soft);
}

.card h3,
.callout-panel h3,
.faq-item h3 {
  margin-bottom: 12px;
}

.checklist,
.bullet-list,
.anchor-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li,
.bullet-list li,
.anchor-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
}

.checklist li::before,
.bullet-list li::before,
.anchor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.split-grid,
.policy-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.statement-stack {
  display: grid;
  gap: 16px;
}

.statement-card {
  padding: 20px 22px;
}

.statement-card p {
  color: var(--heading);
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
}

.timeline-item span {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(42, 108, 176, 0.18), rgba(23, 66, 108, 0.2));
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.timeline-item p {
  margin-top: 10px;
}

.policy-hero {
  padding-bottom: 24px;
}

.policy-content {
  display: grid;
  gap: 28px;
}

.policy-block {
  scroll-margin-top: 120px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.policy-block p + p {
  margin-top: 14px;
}

.anchor-list a {
  color: var(--heading);
  font-weight: 600;
}

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

.site-footer {
  padding: 40px 0 26px;
  background: linear-gradient(180deg, rgba(14, 39, 64, 0.04), rgba(14, 39, 64, 0.08));
  border-top: 1px solid rgba(22, 50, 79, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 22px;
}

.footer-brand p:last-child {
  margin-top: 12px;
  max-width: 46ch;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 10px;
}

.footer-list a,
.footer-contact li,
.footer-base p {
  color: var(--text-soft);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid rgba(22, 50, 79, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .card-grid,
  .contact-grid,
  .footer-grid,
  .hero-grid,
  .page-hero-grid,
  .policy-hero-grid,
  .split-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 10px) 20px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .button-small {
    width: 100%;
    justify-content: center;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(var(--shell), calc(100% - 24px));
  }

  .header-shell {
    min-height: 74px;
  }

  .button,
  .button-outline {
    width: 100%;
  }

  .hero-actions,
  .pill-row {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .policy-block,
  .card,
  .callout-panel,
  .side-panel,
  .hero-panel,
  .policy-index,
  .faq-item {
    padding: 22px;
  }
}
