:root {
  --primary: #5c00c6;
  --primary-deep: #4c00a8;
  --magenta: #c72d93;
  --yellow: #ffe600;
  --text: #5b5566;
  --soft: #f8f8f6;
  --cloud: #f6f3fb;
  --line: #e7e7e7;
  --white: #ffffff;
  --black: #020101;
  --shadow: 0 22px 60px rgba(45, 22, 80, 0.12);
  --radius: 20px;
  --container: 1820px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Onest", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.delay-1 {
  --reveal-delay: 80ms;
}

.delay-2 {
  --reveal-delay: 140ms;
}

.delay-3 {
  --reveal-delay: 200ms;
}

.delay-4 {
  --reveal-delay: 260ms;
}

h1,
h2,
h3,
h4,
h5,
h6,
.button,
.site-nav a,
.eyebrow {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1 {
  max-width: 700px;
  color: var(--white);
  font-size: 78px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: capitalize;
}

h2 {
  color: var(--primary);
  font-size: 70px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: capitalize;
}

h3 {
  color: var(--primary);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: capitalize;
}

h4 {
  color: var(--primary);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: capitalize;
}

h5 {
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: capitalize;
}

h6 {
  color: var(--primary);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: capitalize;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  min-height: 89px;
  padding: 0 26px;
  background: var(--white);
  box-shadow: none;
}

.brand img {
  width: 90px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.site-nav a {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: capitalize;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--magenta);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding: 15px 30px;
  border-radius: 30px;
  background: var(--primary);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: capitalize;
  transform-origin: center;
  transition: color 0.2s ease, transform 0.25s ease, background 0.2s ease;
}

.header-cta::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 9px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(28deg);
}

.button:hover,
.header-cta:hover {
  transform: scale(1.08);
  color: var(--white);
}

.button-yellow {
  background: var(--yellow);
  color: var(--primary);
}

.button-yellow::after,
.pill-link::after,
.service-card a::after {
  content: "\2192";
  margin-left: 10px;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero .button:not(.button-yellow) {
  background: transparent;
  color: var(--yellow);
  padding-left: 30px;
  padding-right: 30px;
}

.hero .button-yellow {
  min-width: 232px;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 770px;
  padding: 0 10px 40px 0;
  gap: 0;
  overflow: hidden;
}

.hero-copy,
.hero-image {
  min-height: 770px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 42px 56px 64px;
  border-radius: 0;
  color: var(--white);
  background-color: var(--primary);
  background-image: linear-gradient(rgba(89, 0, 188, 0.85), rgba(89, 0, 188, 0.85)), url("assets/deco-bg2.png");
  background-position: center;
  background-size: cover;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 700;
}

.hero-image {
  border-radius: 0 0 var(--radius) 0;
  background-image: linear-gradient(180deg, rgba(2, 1, 1, 0), rgba(2, 1, 1, 0.45)), url("assets/hero.webp");
  background-position: center 42%;
  background-size: cover;
}

.eyebrow {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--primary);
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 48px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(360px, 565px) minmax(0, 1fr);
  gap: 48px 96px;
  align-items: start;
}

.intro-card {
  grid-row: span 2;
  min-height: 632px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 74px 44px;
  border-radius: var(--radius);
  color: var(--white);
  background-color: var(--primary);
  background-image: linear-gradient(rgba(89, 0, 188, 0.78), rgba(89, 0, 188, 0.78)), url("assets/bg.png");
  background-position: bottom center;
  background-size: cover;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 38px;
}

.mini-feature h6 {
  color: var(--white);
}

.mini-feature p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 25px;
  line-height: 1.45;
}

.icon {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  border-radius: 10px;
  background: var(--yellow);
  position: relative;
}

.icon.heart::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  left: 31px;
  top: 34px;
  background: var(--primary);
  transform: rotate(45deg);
}

.icon.heart::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  left: 24px;
  top: 27px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 24px -24px 0 var(--primary);
}

.icon.shield {
  width: 55px;
  height: 55px;
  background: transparent;
  border-radius: 0;
}

.icon.shield::before {
  content: "";
  position: absolute;
  inset: 4px 7px 5px;
  background: var(--white);
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.intro-heading {
  padding-top: 4px;
  display: grid;
  gap: 34px;
  justify-items: start;
}

.intro-heading h2,
.why h2,
.testimonials h2,
.funding h2 {
  max-width: 760px;
}

.intro-heading h2 span,
.why h2 span,
.testimonials h2 span,
.funding h2 span {
  background-image: linear-gradient(180deg, transparent 68%, var(--yellow) 0);
}

.intro-floating {
  width: min(510px, 100%);
  min-height: 352px;
  display: grid;
  align-content: center;
  justify-self: end;
  gap: 26px;
  padding: 70px 45px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
}

.intro-floating .icon {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  background: var(--white);
}

.icon.smile::before {
  content: ":)";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.intro-floating h6 {
  color: var(--white);
  font-size: 29px;
}

.intro-floating p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 25px;
  line-height: 1.45;
}

.pill-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  padding: 7px 10px 7px 44px;
  border-radius: 30px;
  background: var(--magenta);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
}

.pill-link::after {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-left: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--magenta);
  transform: rotate(-35deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(620px, 1.35fr);
  gap: 54px;
  align-items: start;
  overflow: visible;
}

.split-copy {
  display: grid;
  gap: 34px;
  padding-top: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.tag-row span {
  padding: 10px 15px;
  border-radius: 15px;
  background: var(--yellow);
  color: var(--primary);
  font-size: 25px;
  line-height: 1.2;
}

.tag-row .purple {
  background: var(--primary-deep);
  color: var(--white);
}

.split-copy h3 {
  padding: 45px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 42px rgba(217, 227, 255, 0.42);
}

.split-copy p {
  max-width: 620px;
  font-size: 25px;
  line-height: 1.45;
}

.split-copy .pill-link {
  width: min(615px, 100%);
  min-height: 74px;
  padding-left: 95px;
  justify-content: center;
  font-size: 29px;
}

.split-copy .pill-link::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 58px;
  height: 58px;
  margin-left: 0;
  background: var(--white);
}

.image-stack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.86fr);
  gap: 28px;
  align-items: start;
}

.image-stack::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -22px;
  z-index: 0;
  width: calc(54% - 14px);
  height: min(790px, 100%);
  border-radius: var(--radius);
  background: var(--yellow);
  transform: rotate(4deg);
}

.image-stack img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 690px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-stack img:first-child {
  grid-row: 1 / span 2;
}

.image-stack img:last-child {
  position: relative;
  width: 100%;
  height: 330px;
  object-position: center;
}

.support-plan {
  position: relative;
  z-index: 1;
  min-height: 326px;
  padding: 58px 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 42px rgba(217, 227, 255, 0.42);
}

.support-plan h6 {
  margin-bottom: 66px;
  font-size: 28px;
}

.support-plan li {
  color: var(--black);
  font-size: 25px;
  line-height: 1.35;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 25px;
}

li + li {
  margin-top: 10px;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(252, 228, 9, 0.2);
}

.services {
  background: var(--white);
  max-width: none;
  padding-top: 86px;
}

.services > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 72px;
  text-align: center;
}

.section-title h2 {
  max-width: 930px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1820px;
}

.service-card {
  display: grid;
  align-content: space-between;
  min-height: 723px;
  padding-top: 70px;
  border-radius: var(--radius);
  background: var(--primary);
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card > div {
  padding: 0 56px 0;
}

.service-card h4 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: 37px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 26px;
  line-height: 1.45;
}

.service-card a,
.center-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  min-width: 222px;
  min-height: 70px;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.service-card a::after {
  content: none;
}

.service-card img {
  width: calc(100% - 60px);
  height: 345px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 130px 130px 0 0;
  object-position: center;
}

.center-copy {
  display: none;
}

.journey {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: none;
  min-height: 910px;
  padding: 156px 150px 0;
  overflow: hidden;
  background-color: var(--primary);
  background-image: linear-gradient(rgba(2, 1, 1, 0.52), rgba(2, 1, 1, 0.52)), url("assets/journey-bg.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.journey::after {
  content: none;
}

.journey > * {
  position: relative;
  z-index: 1;
}

.journey-copy {
  display: grid;
  justify-items: center;
  gap: 26px;
  max-width: 930px;
  text-align: center;
}

.journey h2,
.journey .eyebrow.dark {
  color: var(--white);
}

.journey-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 25px;
  line-height: 1.35;
}

.journey .button {
  background: var(--yellow);
  color: var(--primary);
  font-size: 25px;
}

.steps {
  align-self: end;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 128px;
}

.steps article {
  position: relative;
  min-height: 286px;
  padding: 84px 42px 38px;
  border-radius: var(--radius);
  background: var(--primary);
  border: 0;
  box-shadow: 0 0 10px rgba(217, 227, 255, 0.28);
  color: var(--white);
}

.steps span {
  position: absolute;
  left: 40px;
  top: -32px;
  display: inline-grid;
  place-items: center;
  width: 65px;
  height: 65px;
  margin-bottom: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.steps h4 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 36px;
}

.steps p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 25px;
  line-height: 1.35;
}

.why {
  display: grid;
  gap: 70px;
  padding-top: 86px;
}

.why-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-top h2 {
  max-width: 850px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 2;
  gap: 0;
  align-items: stretch;
}

.stat-row div {
  min-height: 245px;
  padding: 0 34px;
  border-left: 2px solid var(--primary);
  text-align: center;
}

.stat-row h5 {
  margin-bottom: 18px;
  font-size: 32px;
}

.stat-row p {
  font-size: 26px;
  line-height: 1.35;
}

.why-cta {
  grid-column: 2;
  justify-self: start;
  width: 620px;
  min-height: 72px;
  margin-top: 0;
  padding-left: 44px;
  font-size: 28px;
}

.why-bottom {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-bottom img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-list {
  display: grid;
  gap: 30px;
}

.feature-list article {
  padding: 42px 30px;
  border: 0;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
}

.feature-list h5 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 32px;
}

.feature-list p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 25px;
  line-height: 1.45;
}

.tabs-section {
  position: relative;
  max-width: none;
  overflow: hidden;
  padding: 160px 48px 82px;
  background-color: var(--primary-deep);
  background-image: linear-gradient(rgba(73, 5, 163, 0.82), rgba(73, 5, 163, 0.82)), url("assets/deco-bg2.png");
  background-position: center;
  background-size: cover;
}

.tabs-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 155px;
  background:
    radial-gradient(100px 78px at 80px 0, var(--white) 98%, transparent 100%) 0 0 / 280px 155px repeat-x;
}

.tabs-section > * {
  position: relative;
  max-width: 1528px;
  margin-left: auto;
  margin-right: auto;
}

.tabs-section h2 {
  margin-bottom: 68px;
  color: var(--white);
  text-align: center;
}

.support-tabs {
  padding: 42px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.28);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto 38px;
}

.tab-button {
  min-height: 54px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.tab-button.active {
  background: var(--magenta);
  color: var(--white);
}

.tab-panel {
  display: none;
  position: relative;
  min-height: 772px;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary);
}

.tab-panel.active {
  display: block;
}

.tab-panel img {
  width: 100%;
  height: 772px;
  object-fit: cover;
  filter: brightness(0.72);
}

.tab-panel > div {
  position: absolute;
  left: 28px;
  bottom: 27px;
  width: min(760px, calc(100% - 56px));
  padding: 36px 42px;
  border-radius: 16px;
  background: var(--white);
}

.tab-panel h4 {
  margin-bottom: 12px;
  font-size: 36px;
}

.tab-panel p {
  color: var(--primary);
  font-size: 25px;
  line-height: 1.35;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 62px;
  align-items: start;
  max-width: 1820px;
  padding-top: 126px;
  padding-bottom: 120px;
}

.testimonial-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-grid article {
  position: relative;
  min-height: 374px;
  display: grid;
  align-content: start;
  gap: 38px;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
}

.stars {
  color: var(--yellow);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 25px;
  letter-spacing: 2px;
}

.testimonial-grid p {
  max-width: 650px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.45;
}

.testimonial-grid strong {
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 29px;
  line-height: 1.1;
}

.quote-mark {
  position: absolute;
  right: 40px;
  bottom: 24px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
  transform: rotate(180deg);
}

.testimonial-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: -12px;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5b5566;
}

.testimonial-dots span:first-child {
  background: var(--primary);
}

.faq-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  background: var(--white);
}

.faq-wrap {
  max-width: none;
  margin: 0;
  min-height: 715px;
  padding: 170px 115px 70px;
  border-radius: 0;
  background-color: var(--primary);
  background-image: linear-gradient(rgba(89, 0, 188, 0.75), rgba(89, 0, 188, 0.75)), url("assets/deco-bg2.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.faq-wrap h2 {
  max-width: 740px;
  margin-bottom: 58px;
  color: var(--white);
  font-size: 64px;
}

.faq-list {
  display: grid;
  gap: 46px;
}

.faq-list details {
  border-radius: 0;
  background: transparent;
  border: 0;
}

.faq-list summary {
  position: relative;
  padding: 0 70px 0 0;
  color: var(--white);
  cursor: pointer;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "\2191";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--white);
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "\2193";
}

.faq-list details[open] summary,
.faq-list summary:hover {
  color: var(--white);
}

.faq-list p {
  padding: 18px 70px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
}

.faq-image-panel {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 715px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: var(--magenta);
  background-image: url("assets/deco-bg4.png");
  background-position: center;
  background-size: cover;
}

.faq-image-panel img {
  width: 82%;
  height: 82%;
  object-fit: cover;
  -webkit-mask-image: url("assets/deco-mask2.png");
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("assets/deco-mask2.png");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.funding {
  text-align: center;
  padding-top: 46px;
  padding-bottom: 110px;
}

.funding h2 {
  max-width: 760px;
  margin: 0 auto 72px;
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.funding-grid article {
  display: grid;
  align-content: start;
  gap: 34px;
  min-height: 775px;
  padding: 72px 44px 38px;
  border-radius: var(--radius);
  background: var(--primary);
  border: 0;
  color: var(--white);
}

.funding-grid h5,
.funding-grid h6 {
  color: var(--white);
}

.funding-grid h5 {
  font-size: 36px;
}

.funding-grid h6 {
  margin-top: 20px;
  font-size: 36px;
}

.funding-grid p:not(.plan-type) {
  color: var(--white);
  font-size: 27px;
  line-height: 1.45;
}

.funding-grid ul {
  display: grid;
  gap: 26px;
}

.funding-grid li {
  color: var(--white);
  font-size: 25px;
  line-height: 1.35;
}

.funding-grid li::before {
  top: 0.35em;
  width: 18px;
  height: 18px;
  border: 3px solid var(--yellow);
  background: transparent;
  box-shadow: none;
}

.plan-type {
  width: fit-content;
  padding: 5px 22px;
  border: 2px solid var(--white);
  border-radius: 20px;
  background: transparent;
  color: var(--white);
  font-size: 25px;
  font-weight: 400;
}

.funding-grid .button {
  width: 100%;
  align-self: end;
  margin-top: auto;
  background: var(--yellow);
  color: var(--primary);
  font-size: 25px;
}

.community-strip {
  padding: 170px 0 175px;
  overflow: hidden;
  background: var(--white);
  border-bottom: 42px solid var(--primary);
}

.community-strip h2 {
  max-width: 760px;
  margin: 0 0 110px 120px;
  color: var(--primary);
  text-align: left;
}

.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 125px;
  animation: scroll-strip 28s linear infinite;
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

.carousel img {
  width: 423px;
  height: 281px;
  object-fit: cover;
  border-radius: var(--radius);
}

@keyframes scroll-strip {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 45px));
  }
}

.contact-main {
  background: var(--white);
}

.contact-section {
  max-width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
  margin: 0 auto;
  padding: 120px 30px;
  overflow: hidden;
}

.contact-copy {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-kicker span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--magenta);
}

.contact-kicker svg,
.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-copy h1 {
  max-width: 620px;
  color: var(--primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-copy h1 span {
  background-image: linear-gradient(180deg, transparent 68%, var(--yellow) 0);
}

.contact-copy > p:not(.contact-kicker) {
  max-width: 600px;
}

.contact-card-list {
  display: grid;
  gap: 15px;
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: min(430px, 100%);
  padding: 10px 26px 10px 10px;
  border-radius: 50px;
  background: var(--yellow);
  color: var(--primary);
  transition: transform 0.25s ease, background 0.2s ease;
}

.contact-card:hover {
  transform: translateX(8px);
  background: #fff06a;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  padding: 15px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
}

.contact-card > span:last-child {
  display: grid;
  gap: 2px;
}

.contact-card strong {
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.1;
}

.contact-card span span {
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
}

.contact-copy h5 {
  margin-top: 6px;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-socials a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ebebeb;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s ease;
}

.contact-socials a:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: var(--white);
}

.contact-form-panel {
  padding: 60px 30px;
  border-radius: var(--radius);
  background: var(--cloud);
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--black);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-form label span {
  display: inline;
}

.contact-form .form-label-text {
  color: var(--black);
}

.contact-form .form-label-text span {
  color: #ff0000;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #d5d1dc;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: inherit;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c9c1c1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(89, 0, 188, 0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding: 15px 20px;
  border: 0;
  border-radius: 5px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
  transition: background 0.2s ease, transform 0.25s ease;
}

.contact-submit:hover {
  transform: scale(1.04);
  background: var(--primary-deep);
}

.form-note {
  color: var(--primary);
  font-weight: 600;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(1) saturate(0);
  transition: filter 0.35s ease;
}

.contact-map iframe:hover {
  filter: grayscale(0) saturate(1);
}

.site-footer {
  padding: 118px 92px 34px;
  background: var(--primary);
  color: var(--white);
}

.footer-grid {
  max-width: 1540px;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(140px, 0.75fr) minmax(150px, 0.75fr) minmax(320px, 1.45fr);
  gap: 76px;
  margin: 0 auto;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 30px;
}

.footer-brand img {
  width: 124px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-grid p {
  padding-bottom: 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.footer-grid h6 {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}

.footer-grid a {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.email {
  font-size: 20px;
  text-transform: lowercase;
  overflow-wrap: anywhere;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.socials a {
  padding-right: 9px;
  border-right: 1px solid var(--white);
  font-size: 19px;
  font-weight: 400;
}

.socials a:last-child {
  border-right: 0;
}

.footer-bottom {
  max-width: 1540px;
  display: grid;
  gap: 12px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: left;
}

.footer-bottom p:first-child {
  font-size: 15px;
  opacity: 0.8;
}

.footer-bottom p:last-child {
  display: none;
}

@media (max-width: 1500px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 52px;
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 22px;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
    padding-left: 38px;
    padding-right: 38px;
  }

  .button,
  .header-cta {
    min-height: 46px;
    padding: 13px 26px;
    font-size: 16px;
  }

  .hero,
  .hero-copy,
  .hero-image {
    min-height: 700px;
  }

  .hero-copy {
    padding: 38px 54px 56px;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 560px;
    font-size: 16px;
  }

  .intro {
    grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
    gap: 42px 54px;
  }

  .intro-card {
    min-height: 540px;
    padding: 56px 34px;
  }

  .mini-feature {
    gap: 26px;
  }

  .mini-feature p {
    font-size: 21px;
  }

  .intro-floating {
    width: 100%;
    min-height: 250px;
    padding: 48px 34px;
  }

  .split {
    grid-template-columns: minmax(360px, 0.92fr) minmax(540px, 1.28fr);
    gap: 38px;
  }

  .split-copy p {
    max-width: 100%;
  }

  .split-copy .pill-link {
    width: 100%;
  }

  .image-stack img {
    height: 550px;
  }

  .image-stack img:last-child {
    height: 250px;
  }

  .support-plan {
    min-height: 250px;
    padding: 32px 24px;
  }

  .support-plan h6 {
    margin-bottom: 26px;
    font-size: 22px;
  }

  .service-card {
    min-height: 570px;
    padding-top: 54px;
  }

  .service-card > div {
    padding-left: 34px;
    padding-right: 34px;
  }

  .service-card h4 {
    font-size: 30px;
  }

  .service-card a,
  .center-copy a {
    min-height: 58px;
    min-width: 185px;
    font-size: 20px;
  }

  .service-card img {
    height: 290px;
  }

  .service-card p,
  .steps p,
  .feature-list p,
  .funding-grid p:not(.plan-type),
  .funding-grid li,
  .tab-panel p,
  .faq-list p {
    font-size: 18px;
  }

  .journey {
    padding: 120px 74px 0;
  }

  .journey h2,
  .why-top h2,
  .tabs-section h2,
  .testimonials h2,
  .funding h2,
  .community-strip h2 {
    font-size: 50px;
  }

  .steps {
    gap: 24px;
  }

  .steps article {
    min-height: 235px;
    padding: 58px 32px 44px;
  }

  .stat-row h6 {
    font-size: 25px;
  }

  .why-cta {
    max-width: 610px;
    min-height: 60px;
    font-size: 22px;
  }

  .feature-list article {
    padding: 36px 32px;
  }

  .tabs-section {
    padding-top: 118px;
    padding-bottom: 96px;
  }

  .tab-shell {
    padding: 34px;
  }

  .tab-list button {
    font-size: 21px;
  }

  .testimonial-card {
    min-height: 290px;
    padding: 36px;
  }

  .testimonial-card blockquote,
  .testimonial-card strong {
    font-size: 24px;
  }

  .funding-grid article {
    min-height: 640px;
    padding: 54px 34px 34px;
  }

  .funding-grid h5,
  .funding-grid h6 {
    font-size: 28px;
  }

  .plan-type,
  .funding-grid .button {
    font-size: 20px;
  }

  .community-strip {
    padding: 120px 0 125px;
  }

  .community-strip h2 {
    margin-left: 76px;
    margin-bottom: 80px;
  }

  .carousel-track {
    gap: 86px;
  }

  .carousel img {
    width: 330px;
    height: 220px;
  }

  .tabs-section > *,
  .footer-grid,
  .footer-bottom {
    max-width: 1240px;
  }

  .faq-wrap h2 {
    font-size: 46px;
  }

  .faq-list summary {
    font-size: 25px;
  }

  .faq-wrap {
    min-height: 610px;
    padding: 130px 76px 56px;
  }

  .faq-image-panel {
    min-height: 610px;
  }

  .site-footer {
    padding: 84px 76px 30px;
  }

  .footer-grid {
    grid-template-columns: minmax(170px, 0.85fr) minmax(130px, 0.7fr) minmax(140px, 0.75fr) minmax(330px, 1.45fr);
    gap: 58px;
  }

  .footer-brand {
    gap: 24px;
  }

  .footer-brand img {
    width: 96px;
  }

  .footer-grid > div {
    gap: 13px;
  }

  .footer-grid p {
    padding-bottom: 6px;
    font-size: 16px;
    line-height: 1.32;
  }

  .footer-grid h6 {
    font-size: 17px;
    line-height: 1.2;
  }

  .footer-grid a {
    font-size: 18px;
    line-height: 1.18;
  }

  .email {
    font-size: 18px;
  }

  .socials a {
    font-size: 17px;
  }

  .footer-bottom {
    margin-top: 38px;
    padding-top: 24px;
  }

  .footer-bottom p:first-child {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 84px;
    padding: 0 40px;
  }

  .brand img {
    width: 92px;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 45px;
    height: 42px;
    padding: 10px 8px;
    border: 0;
    border-radius: 3px;
    background: var(--primary);
  }

  .menu-toggle span {
    height: 3px;
    border-radius: 999px;
    background: var(--white);
  }

  .site-nav {
    position: fixed;
    inset: 84px 0 auto auto;
    width: min(350px, 100%);
    min-height: calc(100vh - 84px);
    display: grid;
    justify-content: stretch;
    align-content: start;
    gap: 0;
    padding: 25px;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(45, 22, 80, 0.18);
    transform: translateX(110%);
    transition: transform 0.25s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .why-top,
  .why-bottom,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 120px 30px;
  }

  .contact-copy {
    justify-items: center;
    text-align: center;
  }

  .contact-form-panel {
    padding: 50px 30px;
  }

  .contact-map iframe {
    height: 250px;
  }

  .journey {
    min-height: auto;
    gap: 50px;
    padding: 100px 30px 0;
  }

  .hero-copy,
  .hero-image {
    min-height: 58vh;
  }

  .hero-copy {
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 70px 50px;
  }

  .hero-image {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .intro {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
  }

  .intro-floating {
    position: static;
    width: 100%;
  }

  .split {
    min-height: auto;
    display: grid;
    gap: 40px;
    overflow: visible;
  }

  .split-copy,
  .split-copy h3,
  .split-copy p,
  .split-copy .pill-link {
    width: 100%;
  }

  .image-stack {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .image-stack::before {
    display: none;
  }

  .image-stack img,
  .image-stack img:last-child {
    position: static;
    width: 100%;
    height: 380px;
  }

  .support-plan {
    position: static;
    width: 100%;
    min-height: auto;
    padding: 36px;
  }

  .service-grid,
  .funding-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-row {
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1;
  }

  .why-cta {
    grid-column: 1;
    width: 100%;
    margin-top: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .tab-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .faq-media {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .faq-wrap {
    min-height: auto;
    padding: 60px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .faq-image-panel {
    min-height: 430px;
    padding: 20px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 15px;
  }

  .site-header {
    padding: 0 30px;
  }

  .brand img {
    width: 110px;
  }

  .hero {
    padding: 10px;
  }

  .hero-copy {
    min-height: 64vh;
    padding: 80px 20px 60px;
  }

  .hero-image {
    min-height: 45vh;
  }

  .section {
    padding: 120px 20px;
  }

  .contact-section {
    padding: 120px 20px;
  }

  .contact-copy h1 {
    font-size: 26px;
  }

  .contact-form-panel {
    width: 100%;
    padding: 30px 15px;
  }

  .contact-card {
    width: 100%;
    min-width: 0;
  }

  .intro {
    gap: 50px;
  }

  .intro-card {
    min-height: 420px;
    padding: 42px 26px;
  }

  .intro-floating {
    min-height: auto;
    padding: 42px 26px;
  }

  .image-stack,
  .service-grid,
  .funding-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:last-child,
  .why-bottom img {
    height: 259px;
  }

  .split-copy h3 {
    padding: 28px;
  }

  .split-copy .pill-link {
    padding-left: 28px;
    font-size: 18px;
  }

  .split-copy .pill-link::after {
    display: none;
  }

  .faq-wrap {
    padding: 60px 20px;
  }

  .faq-image-panel {
    min-height: 259px;
    padding: 20px;
  }

  .support-plan {
    order: -1;
  }

  .service-card {
    min-height: 430px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat-row div {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .tab-panel {
    min-height: auto;
  }

  .tab-panel img {
    height: 360px;
  }

  .tab-panel > div {
    position: static;
    width: 100%;
    border-radius: 0;
    padding: 26px;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .carousel-track {
    gap: 32px;
  }

  .carousel img {
    width: 190px;
    height: 190px;
  }

  .site-footer {
    padding: 120px 20px 50px;
  }

  .footer-grid h6,
  .footer-grid a,
  .footer-grid p,
  .socials a {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
