:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #eef4f8;
  --text: #1a2a33;
  --muted: #5f7280;
  --line: #d7e0e7;
  --primary: #1d6f8f;
  --primary-dark: #144f66;
  --accent: #f0b86c;
  --accent-soft: #fff2de;
  --success-soft: #e8f5ef;
  --shadow: 0 18px 50px rgba(22, 56, 74, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(240, 184, 108, 0.18), transparent 28%),
    linear-gradient(180deg, #f9fbfd 0%, #f3f7fa 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(28, 122, 98, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(28, 122, 98, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(249, 251, 253, 0.9);
  border-bottom: 1px solid rgba(215, 224, 231, 0.9);
  min-height: 80px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

main {
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 24px;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.dot-a {
  width: 11px;
  height: 11px;
  top: 7px;
  left: 0;
}

.dot-b {
  width: 6px;
  height: 6px;
  top: 1px;
  left: 10px;
}

.dot-c {
  width: 12px;
  height: 12px;
  top: 7px;
  right: 7px;
}

.dot-d {
  width: 6px;
  height: 6px;
  top: 0;
  right: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-copy strong,
.brand-copy small,
h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
}

.brand-copy strong {
  font-size: 34px;
  letter-spacing: 0.12em;
  color: #263540;
}

.brand-copy small {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #75818a;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-nav a:hover,
.text-link:hover {
  color: var(--primary);
}

.cta-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(29, 111, 143, 0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.cta-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--surface-alt);
  color: var(--primary);
}

.hero-section {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-tag,
.card-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8a5d1e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #22303a;
}

.hero-copy h1 {
  font-size: clamp(48px, 3vw, 61px);
  line-height: 0.92;
  margin-bottom: 18px;
}

.hero-text,
.section-copy p,
.section-heading p,
.service-card p,
.highlight-card p,
.faq-item p,
.footer-brand-block p,
.footer-column p,
.footer-bottom p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #3d5260;
  font-size: 15px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #9bd0dd 0%, #79b8c8 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.85);
}

.hero-card {
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #edf5f8 100%);
  box-shadow: var(--shadow);
}

.hero-card-inner {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(215, 224, 231, 0.9);
  background: rgba(255, 255, 255, 0.86);
}

.hero-card h2 {
  font-size: 40px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.full-width {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-strip span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: #42616f;
  font-size: 12px;
  font-weight: 600;
}

.metrics-section {
  padding-bottom: 34px;
}

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

.metric-card,
.service-card,
.faq-item,
.highlight-card.soft {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(215, 224, 231, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 24px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-family: "Barlow Condensed", sans-serif;
  color: #24313a;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-section,
.services-section,
.highlight-section,
.faq-section,
.funding-section,
.disclaimer-section {
  padding: 64px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 38px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.highlight-card h2,
.highlight-card h3 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 460px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section {
  background: linear-gradient(180deg, rgba(238, 244, 248, 0.55) 0%, rgba(245, 247, 251, 0) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.narrow {
  max-width: 560px;
}

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

.service-card {
  padding: 26px;
}

.service-card h3,
.faq-item h3,
.footer-column h3 {
  font-size: 28px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.service-card p,
.faq-item p {
  margin: 0 0 16px;
}

.text-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
  gap: 20px;
}

.highlight-card {
  padding: 32px;
}

.accent-card {
  border-radius: 28px;
  background: linear-gradient(180deg, #1d6f8f 0%, #174e67 100%);
  color: #fff;
  box-shadow: 0 22px 48px rgba(21, 79, 102, 0.28);
}

.accent-card h3,
.accent-card p {
  color: #fff;
}

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

.faq-item {
  padding: 24px;
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

.disclaimer-card {
  padding: 30px 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 224, 231, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.disclaimer-card h2 {
  font-size: clamp(15px, 4vw, 20px);
  line-height: 0.95;
  margin-bottom: 14px;
}

.disclaimer-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 6px;
}

.disclaimer-card p:last-child {
  margin: 0;
}

.site-footer {
  padding: 34px 0 28px;
  background: #e9f0f5;
  border-top: 1px solid rgba(215, 224, 231, 0.9);
}

.policy-hero {
  padding: 72px 0 24px;
}

.policy-hero h1 {
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.92;
  margin-bottom: 14px;
}

.policy-intro {
  max-width: 72ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-section {
  padding: 12px 0 64px;
}

.policy-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 224, 231, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.policy-block + .policy-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(215, 224, 231, 0.72);
}

.policy-block h2 {
  font-size: 34px;
  line-height: 0.95;
  margin-bottom: 12px;
}

.policy-block p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-list {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--muted);
}

.policy-list li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-column {
  display: grid;
  gap: 8px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #50636f;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(215, 224, 231, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-button {
  white-space: nowrap;
}

.sticky-call-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(29, 111, 143, 0.28);
}

.sticky-call-button:hover {
  background: var(--primary-dark);
}

@media (max-width: 960px) {
  .top-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .highlight-grid,
  .footer-grid,
  .funding-grid,
  .faq-grid,
  .metrics-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 340px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav-row {
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-section {
    padding-top: 44px;
  }

  .brand-copy strong {
    font-size: 28px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-cta {
    padding: 10px 14px;
    min-height: 42px;
    font-size: 12px;
  }

  .hero-copy h1,
  .policy-hero h1,
  .section-copy h2,
  .section-heading h2,
  .highlight-card h2,
  .highlight-card h3 {
    font-size: 42px;
  }

  .hero-card h2 {
    font-size: 34px;
  }

  .service-card,
  .faq-item,
  .metric-card,
  .highlight-card,
  .hero-card-inner,
  .policy-card {
    padding: 22px;
  }

  .sticky-call-button {
    right: 12px;
    left: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 14px 18px;
  }
}
