
:root {
  --navy: #072441;
  --navy-deep: #041526;
  --red: #dd171f;
  --red-dark: #ac0e14;
  --green: #17843d;
  --green-dark: #0a5728;
  --ink: #172538;
  --muted: #5f6b79;
  --line: #dfe5eb;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  height: 92px;
  background: var(--white);
  border-bottom: 1px solid #edf0f3;
}

.header-inner {
  width: min(var(--max-width), calc(100% - 72px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo img {
  width: auto;
  height: 68px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 700;
}

.navigation a {
  text-decoration: none;
}

.navigation a:hover,
.navigation a:focus-visible {
  color: var(--red);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  min-height: calc(100vh - 92px);
}

.panel-copy {
  display: flex;
  align-items: center;
  padding: 72px clamp(44px, 6vw, 110px);
}

.copy-inner {
  width: min(660px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.panel-image {
  min-height: calc(100vh - 92px);
  overflow: hidden;
}

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

.hero-copy {
  background: var(--white);
}

.hero-title {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.01;
  letter-spacing: -3px;
  font-weight: 800;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: var(--red);
  font-size: clamp(30px, 3vw, 47px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.hero-copy p {
  margin: 0 0 18px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: #35465a;
}

.statistics {
  margin: 30px 0 0;
  padding-left: 23px;
  color: var(--navy);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 650;
}

.statistics li {
  margin: 12px 0;
  padding-left: 4px;
}

.statistics li::marker {
  color: var(--red);
}

.source {
  margin-top: 26px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.45;
}

.way-forward {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--white);
}

.way-inner {
  width: min(920px, calc(100% - 72px));
  margin: 0 auto;
  padding: 110px 0;
}

.way-forward h2 {
  margin: 0 0 34px;
  color: var(--navy);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.03;
  letter-spacing: -3px;
}

.way-forward p {
  max-width: 860px;
  margin: 0 0 24px;
  color: #344459;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.55;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 56px;
  color: var(--navy);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
}

.cta-panel {
  background: #062813;
  color: var(--white);
}

.cta-copy {
  background:
    radial-gradient(circle at 20% 50%, rgba(36, 150, 73, .20), transparent 44%),
    linear-gradient(135deg, #03190b, #073918);
  color: var(--white);
}

.cta-copy .copy-inner {
  margin-left: auto;
  margin-right: auto;
}

.cta-copy h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(50px, 5vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.cta-copy p {
  max-width: 620px;
  margin: 0 0 20px;
  color: #edf7f0;
  font-size: clamp(18px, 1.45vw, 22px);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 18px 30px;
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  transition: transform .18s ease, background .18s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #20a34e;
  transform: translateY(-1px);
}

.cta-details {
  margin-top: 22px;
  color: #dbeee0;
  font-size: 14px;
  font-weight: 650;
}

.site-footer {
  background: var(--navy-deep);
  color: #d9e1e9;
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 72px));
  min-height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo img {
  width: auto;
  height: 52px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  color: #aeb9c4;
  font-size: 12px;
}

@media (max-width: 980px) {
  .header-inner,
  .footer-inner {
    width: min(100% - 36px, var(--max-width));
  }

  .split-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .panel-copy,
  .panel-image {
    min-height: auto;
  }

  .panel-copy {
    padding: 76px 30px;
  }

  .panel-image {
    height: 62vh;
    min-height: 480px;
  }

  .hero-title,
  .way-forward h2,
  .cta-copy h2 {
    letter-spacing: -2px;
  }

  .way-inner {
    width: min(100% - 48px, 920px);
    padding: 88px 0;
  }

  .footer-inner {
    padding: 28px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
  }

  .header-inner {
    padding: 16px 0;
    align-items: flex-start;
  }

  .logo img {
    height: 54px;
  }

  .navigation {
    gap: 15px;
    padding-top: 11px;
    font-size: 13px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 31px;
  }

  .statistics {
    font-size: 16px;
  }

  .values {
    flex-direction: column;
    gap: 15px;
  }

  .panel-image {
    height: 52vh;
    min-height: 390px;
  }
}
