:root {
  --ink: #2c2630;
  --muted: #695f6e;
  --soft: #fff5fb;
  --paper: #ffffff;
  --rose: #e6007e;
  --plum: #98288c;
  --green: #009a44;
  --line: rgba(44, 38, 48, 0.12);
  --shadow: 0 22px 70px rgba(91, 35, 89, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(44, 38, 48, 0.62), rgba(44, 38, 48, 0));
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  color: var(--rose);
  font-size: 1.45rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
  color: var(--rose);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(22px, 5vw, 72px) 72px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 38%, rgba(255, 255, 255, 0.18) 75%),
    linear-gradient(0deg, rgba(152, 40, 140, 0.16), rgba(230, 0, 126, 0.04));
}

.hero-content {
  width: min(680px, 100%);
  padding-top: 8vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 11.5ch;
  font-size: 5.4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.6rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 14px 30px rgba(230, 0, 126, 0.24);
}

.intro,
.journey-section {
  padding: clamp(64px, 9vw, 124px) clamp(22px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(32px, 5vw, 62px);
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.journey-section {
  background:
    radial-gradient(circle at 6% 12%, rgba(0, 154, 68, 0.08), transparent 28%),
    linear-gradient(180deg, #fff, var(--soft));
}

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

.step-card {
  min-height: 252px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(91, 35, 89, 0.08);
}

.step-card.featured {
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  border-color: transparent;
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--rose);
  background: var(--soft);
  font-weight: 900;
}

.step-card.featured .step-number {
  color: var(--plum);
  background: #fff;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.step-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.support-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(64px, 9vw, 116px) clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(152, 40, 140, 0.95), rgba(230, 0, 126, 0.96)),
    var(--plum);
}

.support-copy p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.support-band .section-kicker {
  color: #fff;
}

.support-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-metrics div {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.support-metrics strong {
  display: block;
  margin-bottom: 10px;
  font-size: 4.8rem;
  line-height: 0.95;
}

.support-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 940px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .intro,
  .support-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 86vh;
    padding: 96px 18px 50px;
  }

  .hero-image {
    object-position: 37% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 54%, rgba(255, 245, 251, 0.52) 100%),
      linear-gradient(0deg, rgba(152, 40, 140, 0.14), rgba(230, 0, 126, 0.04));
  }

  h1 {
    max-width: 10ch;
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.24rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .support-metrics strong {
    font-size: 3.2rem;
  }

  .steps-grid,
  .support-metrics {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}
