:root {
  --blue-900: #1a2165;
  --blue-700: #1e2be5;
  --mint-300: #bdf6ed;
  --yellow-300: #ffd73d;
  --green-400: #43c979;
  --pink-300: #f0a9f9;
  --surface: #f6f6f4;
  --white: #ffffff;
  --text: #101323;
  --muted: #5a607d;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --shadow-soft: 0 16px 40px rgba(26, 33, 101, 0.08);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: min(1756px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
}

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

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

.page-shell {
  overflow: clip;
  padding-bottom: 0;
}

.site-header,
main,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
  padding: 38px 0 28px;
}

.site-header__brand,
.site-footer__watermark {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.site-header__brand {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.site-header__brand span,
.site-footer__watermark span {
  display: block;
}

.site-header__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--blue-900);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  width: fit-content;
}

.pill--outline {
  color: var(--blue-900);
}

.pill--light {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button__icon {
  font-size: 1.2em;
  line-height: 1;
}

.button--primary {
  background: var(--blue-700);
  color: var(--white);
}

.button--ghost {
  border: 1px solid var(--blue-900);
  color: var(--blue-900);
}

.button--ghost-light {
  border: 1px solid var(--white);
  color: var(--white);
}

.hero {
  position: relative;
  padding: 0 0 34px;
}

.hero__title,
.section-title,
.cta-banner h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  color: var(--blue-900);
}

.hero__title {
  font-size: clamp(2.5rem, 4vw, 3.35rem);
  line-height: 0.96;
}

.hero__text,
.section-copy,
.cta-banner p,
.metric-card p,
.timeline-card small,
.site-footer__meta p {
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

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

.hero__media {
  position: relative;
  min-height: 918px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #ebf4ff 0%, #dbe7f6 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 918px;
  object-fit: cover;
}

.hero__shape {
  position: absolute;
  z-index: 1;
}

.hero__shape--mint {
  inset: auto auto 70px -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(189, 246, 237, 0.6);
}

.hero__shape--blue {
  right: 110px;
  top: 165px;
  width: 150px;
  height: 230px;
  background: var(--blue-700);
  border-radius: 50%;
  opacity: 0.9;
}

.hero__shape--white-left,
.hero__shape--white-right {
  width: 220px;
  background: var(--white);
}

.hero__shape--white-left {
  left: -26px;
  top: 18px;
  bottom: 18px;
  border-radius: 140px;
}

.hero__shape--white-right {
  right: -42px;
  top: 92px;
  bottom: 62px;
  border-radius: 160px;
}

.hero__card {
  position: absolute;
  left: 52px;
  bottom: 48px;
  z-index: 2;
  width: min(100%, 672px);
  padding: 44px 52px 42px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 33px;
  margin-top: 40px;
}

.metrics-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
  justify-content: end;
}

.step-card,
.metric-card {
  position: relative;
  min-height: 408px;
  border: 5px solid;
  border-radius: var(--radius-lg);
  padding: 30px 28px 22px;
  background: transparent;
}

.step-card h3,
.metric-card p {
  max-width: 230px;
}

.step-card h3,
.feature-card .section-title,
.metric-card__value,
.timeline-card__year {
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

.step-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.05;
  max-width: 176px;
}

.step-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.step-card__arrow {
  font-size: 1.7rem;
  color: var(--blue-700);
}

.step-card__number {
  position: absolute;
  left: 28px;
  bottom: 18px;
  font-size: clamp(4.25rem, 8vw, 7.7rem);
  line-height: 0.8;
  color: var(--blue-900);
}

.step-card--mint {
  border-color: var(--mint-300);
}

.step-card--yellow {
  border-color: var(--yellow-300);
}

.step-card--green {
  border-color: var(--green-400);
}

.step-card--pink {
  border-color: var(--pink-300);
}

.split-feature,
.cta-banner,
.site-footer {
  margin-top: 138px;
}

.split-feature {
  display: grid;
  grid-template-columns: 686px minmax(420px, 1fr);
  gap: 86px;
  align-items: center;
}

.section-kicker {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.9rem);
  line-height: 0.95;
  color: var(--blue-900);
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 4.15rem);
  line-height: 1.05;
}

.split-feature__list {
  margin: 22px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.split-feature__media {
  position: relative;
  min-height: 760px;
}

.split-feature__media img {
  position: absolute;
  right: 42px;
  top: 76px;
  width: 644px;
  height: 645px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.split-feature__blob {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.split-feature__blob--mint {
  right: -30px;
  top: 12px;
  width: 390px;
  height: 390px;
  background: var(--mint-300);
}

.split-feature__blob--blue {
  right: 132px;
  top: 108px;
  width: 182px;
  height: 290px;
  background: var(--blue-700);
}

.highlight-statement {
  width: min(1112px, 100%);
  margin: 84px auto 0;
}

.highlight-statement h2 {
  margin: 24px 0 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.02;
  color: var(--blue-900);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.highlight-statement span {
  color: var(--blue-700);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 168px;
  align-items: stretch;
}

.feature-grid__intro {
  padding-right: 18px;
  grid-row: span 2;
}

.feature-card {
  min-height: 584px;
  border-radius: var(--radius-lg);
  border: 5px solid var(--blue-900);
  padding: 28px 38px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.feature-card--solid {
  background: var(--blue-900);
}

.feature-card--invert .section-title,
.feature-card--invert .section-copy,
.feature-card--invert .feature-card__number {
  color: var(--white);
}

.feature-card .section-title {
  margin-top: 18px;
  font-size: 2rem;
  color: var(--blue-900);
}

.feature-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.feature-card__arrow,
.metric-card__arrow {
  color: var(--blue-700);
  font-size: 1.7rem;
  line-height: 1;
}

.feature-card--invert .feature-card__arrow {
  color: var(--white);
}

.feature-card__number,
.metric-card__value {
  margin-top: auto;
  font-size: clamp(5rem, 9vw, 8rem);
  line-height: 0.85;
  color: var(--blue-900);
}

.metrics-section {
  position: relative;
  margin-top: 146px;
  padding-top: 58px;
  display: grid;
  grid-template-columns: 543px 1fr;
  gap: 24px;
  align-items: start;
}

.metrics-section__watermark {
  position: absolute;
  left: -8px;
  top: -18px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: rgba(26, 33, 101, 0.1);
  pointer-events: none;
}

.metrics-section__intro {
  position: relative;
  width: 100%;
  padding-top: 118px;
}

.metric-card {
  min-height: 584px;
  border-color: var(--blue-700);
}

.metric-card--blue {
  border-color: var(--blue-700);
}

.metric-card__value {
  color: var(--blue-700);
  margin-top: 210px;
}

.metric-card__top {
  display: flex;
  justify-content: flex-end;
}

.timeline-section {
  margin-top: 118px;
}

.timeline-section__intro {
  width: min(540px, 100%);
}

.timeline-section__map {
  position: relative;
  min-height: 820px;
  margin-top: 54px;
  padding-top: 0;
}

.timeline-section__map > img {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(100%, 1862px);
  opacity: 0.95;
}

.timeline-card {
  position: absolute;
  top: 0;
}

.timeline-card--left {
  left: 0;
}

.timeline-card--center {
  left: 50%;
  transform: translateX(-50%);
}

.timeline-card--right {
  right: 0;
}

.timeline-card__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 auto;
}

.timeline-card__line {
  width: 1px;
  height: 250px;
  background: var(--blue-900);
  margin: 0 auto;
}

.timeline-card__panel {
  width: min(545px, calc(100vw - 48px));
  min-height: 262px;
  border: 5px solid;
  border-radius: var(--radius-lg);
  padding: 46px 32px 30px 170px;
  background: rgba(246, 246, 244, 0.96);
  backdrop-filter: blur(2px);
  position: relative;
}

.timeline-card__year {
  position: absolute;
  left: 32px;
  top: 18px;
  font-size: 6rem;
  color: var(--blue-900);
}

.timeline-card__panel p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.05;
  color: var(--blue-900);
}

.timeline-card__panel small {
  display: block;
  color: var(--blue-900);
}

.timeline-card--yellow .timeline-card__dot,
.timeline-card--yellow .timeline-card__panel {
  border-color: var(--yellow-300);
  background-color: rgba(255, 215, 61, 0.08);
}

.timeline-card--green .timeline-card__dot,
.timeline-card--green .timeline-card__panel {
  border-color: var(--green-400);
  background-color: rgba(67, 201, 121, 0.08);
}

.timeline-card--pink .timeline-card__dot,
.timeline-card--pink .timeline-card__panel {
  border-color: var(--pink-300);
  background-color: rgba(240, 169, 249, 0.08);
}

.timeline-card--yellow .timeline-card__dot {
  background: var(--yellow-300);
}

.timeline-card--green .timeline-card__dot {
  background: var(--green-400);
}

.timeline-card--pink .timeline-card__dot {
  background: var(--pink-300);
}

.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 36px;
  padding: 64px 66px;
  border-radius: var(--radius-lg);
  background: var(--blue-700);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  max-width: 760px;
  font-size: clamp(2.8rem, 4vw, 4.1rem);
}

.cta-banner__shape {
  position: absolute;
  z-index: 0;
}

.cta-banner__shape--pink {
  left: 18px;
  bottom: 8px;
  width: 145px;
  height: 78px;
  background: var(--pink-300);
  border-radius: 46% 54% 59% 41% / 61% 41% 59% 39%;
}

.cta-banner__shape--yellow {
  right: 24px;
  top: -6px;
  width: 510px;
  height: 260px;
  background: var(--yellow-300);
  border-radius: 58% 42% 57% 43% / 41% 53% 47% 59%;
}

.site-footer {
  background: var(--blue-900);
  color: var(--white);
  border-radius: 30px 30px 0 0;
  padding: 54px 48px 30px;
}

.site-footer__meta {
  max-width: 470px;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: -118px;
  margin-left: auto;
  width: min(1075px, calc(100% - 520px));
}

.site-footer__columns h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer__columns a {
  display: block;
  margin-top: 8px;
  opacity: 0.88;
}

.site-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.site-footer__socials a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.site-footer__watermark {
  margin-top: 52px;
  font-size: clamp(3rem, 8vw, 6rem);
  color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1200px) {
  .site-header__nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
  }

  .split-feature,
  .cta-banner,
  .feature-grid,
  .steps-grid,
  .site-footer__columns,
  .metrics-section {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid__intro,
  .metrics-section__intro,
  .metrics-section__grid {
    grid-column: 1 / -1;
  }

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

  .site-footer__columns {
    width: 100%;
    margin-top: 42px;
  }

  .hero__card {
    width: calc(100% - 48px);
    left: 24px;
    bottom: 24px;
    padding: 32px;
  }

  .hero__media,
  .hero__media img {
    min-height: 720px;
  }

  .split-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-feature__media img {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 620px);
    height: auto;
    aspect-ratio: 1;
    margin: 70px auto 0;
  }

  .timeline-section__map {
    display: grid;
    gap: 24px;
    min-height: auto;
    padding-top: 0;
  }

  .timeline-section__map > img {
    position: relative;
  }

  .timeline-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
  }

  .timeline-card__line {
    height: 120px;
  }

  .timeline-card__panel {
    width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .split-feature,
  .cta-banner,
  .feature-grid,
  .steps-grid,
  .metrics-section__grid,
  .site-footer__columns,
  .metrics-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-top: 18px;
  }

  .hero__card,
  .cta-banner,
  .site-footer {
    padding: 28px 22px;
  }

  .hero__media,
  .hero__media img,
  .split-feature__media {
    min-height: 420px;
  }

  .hero__shape--white-left,
  .hero__shape--white-right {
    display: none;
  }

  .hero__shape--blue {
    right: 18px;
    top: 90px;
    width: 100px;
    height: 150px;
  }

  .hero__card {
    position: relative;
    inset: auto;
    width: auto;
    margin: 18px;
  }

  .split-feature__media img {
    right: 0;
  }

  .step-card,
  .feature-card,
  .metric-card {
    min-height: 320px;
  }

  .metric-card__value {
    margin-top: 100px;
  }

  .timeline-card__panel {
    padding: 128px 24px 24px;
  }

  .timeline-card__year {
    left: 24px;
  }

  .site-footer__columns {
    margin-top: 34px;
  }
}
