:root {
  --navy: #061f3a;
  --navy2: #0b3158;
  --cyan: #06d5ec;
  --gold: #f2b233;
  --pink: #ef3f8f;
  --paper: #f5f8fb;
  --ink: #101b27;
  --muted: #526170;
  --white: #fff;
  --shadow: 0 20px 55px rgba(2, 23, 43, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
}
a {
  color: inherit;
}
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.7rem 1rem;
  z-index: 1000;
  border-radius: 0.5rem;
}
.shell {
  width: min(1160px, calc(100% - 2rem));
  margin: auto;
}
.nav {
  background: rgba(6, 31, 58, 0.96);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0.02em;
}
.mark {
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-family: Georgia, serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
}
.nav-links a:hover,
.nav-links a:focus {
  color: var(--cyan);
}
.hero {
  background:
    radial-gradient(
      circle at 76% 18%,
      rgba(6, 213, 236, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, var(--navy), #06172a 70%);
  color: #fff;
  padding: 4.6rem 0 4rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 850;
  font-size: 0.78rem;
  margin: 0 0 0.8rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 0 1.2rem;
  max-width: 12ch;
}
.hero h1 span {
  color: var(--cyan);
}
.hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 57ch;
  color: #dce9f4;
}
.hero-art {
  position: relative;
}
.hero-art img {
  width: 100%;
  display: block;
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.kicker {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #e9f7fb;
  font-weight: 750;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(6, 213, 236, 0.12);
}
.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.78rem 1.2rem;
  border-radius: 0.7rem;
  text-decoration: none;
  font-weight: 850;
  border: 2px solid transparent;
  transition:
    0.18s transform,
    0.18s background;
}
.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--gold);
  color: #071b30;
}
.btn-cyan {
  background: var(--cyan);
  color: #052138;
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #dce4ea;
}
.section {
  padding: 4.4rem 0;
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 70ch;
}
.dark .lead {
  color: #d7e4ee;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.card {
  background: #fff;
  border: 1px solid #dbe4ea;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(8, 31, 57, 0.07);
}
.card h3 {
  margin: 0.15rem 0 0.45rem;
  font-size: 1.25rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.icon {
  font-size: 1.7rem;
  line-height: 1;
}
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d7e1e8;
  border: 1px solid #d7e1e8;
  margin-top: 2rem;
}
.strip div {
  background: #fff;
  padding: 1.1rem;
  text-align: center;
  font-weight: 800;
}
.impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}
.impact img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.date {
  font-size: 1.1rem;
  font-weight: 850;
  color: var(--gold);
}
.foot {
  background: #04172b;
  color: #c9d7e3;
  padding: 2.3rem 0;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}
.foot a {
  color: #fff;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.foot .social-links a {
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.foot .social-links a:hover,
.foot .social-links a:focus-visible {
  border-color: var(--cyan);
  background: rgba(17, 205, 222, 0.16);
}
.foot .candid-seal {
  display: grid;
  width: 168px;
  min-height: 168px;
  place-content: center;
  gap: 0.08rem;
  padding: 1rem;
  border: 3px solid #d6aa3c;
  border-radius: 50%;
  background: linear-gradient(145deg, #fffdf5, #f4e2a9);
  color: #182638;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.foot .candid-seal:hover,
.foot .candid-seal:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}
.candid-seal .candid-wordmark {
  color: #e04b38;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.candid-seal strong {
  color: #7b5b08;
  font-size: 1.25rem;
  line-height: 1.05;
}
.candid-seal > span:not(.candid-wordmark) {
  color: #39465a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.candid-seal small {
  margin-top: 0.35rem;
  color: #536070;
  font-size: 0.68rem;
  font-weight: 700;
}
.small {
  font-size: 0.85rem;
  color: #718191;
}
.foot .small {
  color: #9fb1c1;
}
.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.choice .card {
  display: flex;
  flex-direction: column;
}
.choice .btn {
  margin-top: auto;
}
.badge {
  display: inline-block;
  font-weight: 850;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--navy);
  background: #dffaff;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.page-hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.96;
  margin: 0.4rem 0 1rem;
  letter-spacing: -0.045em;
}
.page-hero .hero-grid {
  align-items: start;
}
.page-hero img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.notice {
  background: #fff5d7;
  border: 1px solid #f1d178;
  padding: 1rem;
  border-radius: 0.8rem;
  color: #57400c;
  margin-top: 1.2rem;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.support-card {
  background: #fff;
  border: 1px solid #d9e4ea;
  border-radius: 1rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.support-card h3,
.support-card p {
  margin: 0;
}
.support-card .btn {
  margin-top: auto;
}
.steps {
  counter-reset: item;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.step {
  background: #fff;
  border: 1px solid #dce5eb;
  border-radius: 0.85rem;
  padding: 1.2rem 1.2rem 1.2rem 4rem;
  position: relative;
}
.step:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 900;
}
.step h3,
.step p {
  margin: 0;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.pillar {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}
.faq {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.7rem;
  max-width: 900px;
}
.faq details {
  background: #fff;
  border: 1px solid #d8e3ea;
  border-radius: 0.85rem;
  padding: 1rem 1.15rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--navy);
}
.faq p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}
.search-intents {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}
.search-intents span {
  background: #e6faff;
  color: var(--navy);
  border: 1px solid #b7edf4;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 750;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.region-grid div {
  background: #fff;
  border: 1px solid #d9e4ea;
  border-radius: 0.75rem;
  padding: 0.85rem;
  text-align: center;
  font-weight: 800;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-weight: 750;
}
.trust-row span:before {
  content: "✓";
  color: #087f8c;
  margin-right: 0.4rem;
}
@media (max-width: 820px) {
  .nav-inner {
    align-items: flex-start;
    padding: 0.85rem 0;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
  }
  .hero-grid,
  .impact,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 3rem;
  }
  .hero h1 {
    max-width: none;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .strip,
  .pillars,
  .region-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid {
    flex-direction: column;
  }
  .page-hero .hero-art {
    order: -1;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  .shell {
    width: min(100% - 1.2rem, 1160px);
  }
  .nav-links a:not(.keep) {
    display: none;
  }
  .strip,
  .pillars,
  .region-grid {
    grid-template-columns: 1fr;
  }
  .actions {
    display: grid;
  }
  .btn {
    width: 100%;
  }
  .hero,
  .section {
    padding: 3rem 0;
  }
  .page-hero {
    padding: 2.5rem 0;
  }
  .page-hero h1 {
    font-size: 2.7rem;
  }
}
