@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #425560;
  --ink-strong: #364951;
  --cream: #fdfff3;
  --surface: #d4d6c9;
  --accent: #f7ff98;
  --white: #ffffff;
  --content-width: 1444px;
  --card-radius: 40px;
  --control-radius: 15px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 64px), var(--content-width));
  margin-inline: auto;
}

.site-header {
  height: 96px;
  background: var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-link {
  display: inline-flex;
  border-radius: 4px;
}

.brand-link:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

.brand-link img {
  width: 186px;
  height: 32px;
}

.hero {
  min-height: 822px;
  overflow: hidden;
  background: var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: 501px minmax(0, 1fr);
  gap: 70px;
  min-height: 822px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 91px;
}

.hero h1 {
  max-width: 501px;
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.238;
  letter-spacing: -0.025em;
}

.hero-description {
  max-width: 467px;
  margin: 45px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
}

.hero-divider {
  width: 464px;
  max-width: 100%;
  height: 1px;
  margin-top: 54px;
  background: rgb(66 85 96 / 30%);
}

.hero-audience {
  max-width: 467px;
  margin: 53px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 69px;
  padding: 10px 32px;
  border-radius: var(--control-radius);
  text-decoration: none;
  font-size: 19.5px;
  font-weight: 400;
  line-height: 1.28;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--ink-strong);
}

.button:active {
  transform: translateY(1px);
}

.button-dark {
  background: var(--ink);
  color: var(--cream);
}

.button-dark img {
  width: 13px;
  height: 12px;
}

.hero .button {
  width: 407px;
  max-width: 100%;
  margin-top: 46px;
}

.hero-art {
  position: relative;
  min-width: 0;
}

.outline-wordmark {
  position: absolute;
  z-index: 3;
  top: 198px;
  left: 105px;
  width: 1135px;
  height: auto;
  max-width: none;
  opacity: 0.9;
}

.box-image {
  position: absolute;
  z-index: 2;
  top: 95px;
  left: 77px;
  width: 655px;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 26px 30px rgb(66 85 96 / 9%));
}

.hero-callout {
  position: absolute;
  z-index: 4;
  top: 240px;
  left: 626px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 258px;
  height: 116px;
  border-radius: 20px;
  background: var(--cream);
  text-align: center;
  font-size: 19.5px;
  line-height: 1.28;
}

.notify-badge,
.package-badge,
.reconcile-icon,
.photo-badge {
  display: grid;
  place-items: center;
}

.notify-badge {
  position: absolute;
  z-index: 5;
  top: 201px;
  left: 800px;
  width: 52px;
  height: 50px;
  border-radius: 12px;
  background: var(--ink);
}

.notify-badge img {
  width: 16px;
  height: 21px;
}

.package-badge {
  position: absolute;
  z-index: 5;
  top: 499px;
  left: 217px;
  width: 81px;
  height: 78px;
  border-radius: 19px;
  background: var(--accent);
}

.package-badge img {
  width: 30px;
  height: 30px;
}

.governance {
  padding: 120px 0 101px;
}

.governance h2,
.outcomes h2 {
  margin: 0 auto;
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.governance h2 {
  max-width: 931px;
}

.governance h2 strong {
  font-weight: 500;
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr 190px 1fr 190px 1fr 190px;
  align-items: start;
  gap: 0;
  margin-top: 104px;
}

.journey::before {
  position: absolute;
  top: 34px;
  left: 95px;
  right: 95px;
  z-index: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--surface) 0 14px,
    transparent 14px 30px
  );
  content: "";
}

.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.journey-label {
  display: grid;
  place-items: center;
  height: 69px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 19.5px;
}

.journey-step-active .journey-label {
  background: var(--ink);
  color: var(--accent);
}

.journey-step p {
  max-width: 185px;
  min-height: 56px;
  margin: 28px auto 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
}

.journey-dot {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: center;
  width: 15px;
  height: 15px;
  margin-top: 27px;
  border-radius: 50%;
  background: var(--surface);
}

.reconcile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 73px;
}

.reconcile-icon {
  width: 47px;
  height: 46px;
  border-radius: 11px;
  background: var(--accent);
}

.reconcile-icon img {
  width: 18px;
  height: 18px;
}

.reconcile p {
  max-width: 827px;
  margin: 39px auto 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
}

.reconcile strong {
  font-weight: 700;
}

.products {
  padding: 0 0 78px;
}

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

.product-card {
  min-height: 509px;
  padding: 61px 58px 50px;
  border-radius: var(--card-radius);
}

.product-card-dark {
  background: var(--ink);
  color: var(--cream);
}

.product-card-accent {
  background: var(--accent);
  color: var(--ink);
}

.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-width: 174px;
  height: 69px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 19.5px;
}

.product-tag-muted {
  min-width: 179px;
  background: var(--surface);
}

.product-tag img {
  width: auto;
  max-height: 20px;
}

.product-card h3 {
  max-width: 430px;
  margin: 31px 0 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.product-card p {
  max-width: 575px;
  margin: 31px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
}

.product-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 37px;
  padding-top: 29px;
  border-top: 1px solid rgb(253 255 243 / 45%);
  font-size: 18px;
  font-weight: 500;
}

.product-detail img {
  width: 13px;
  height: 13px;
}

.outcomes {
  padding: 0 0 106px;
}

.outcomes h2 {
  max-width: 1100px;
  padding: 0 24px;
}

.outcomes h2 strong {
  font-weight: 600;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(0, 663px) minmax(0, 603px);
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-top: 99px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}

.benefit-list p {
  min-height: 61px;
  margin: 0;
  padding: 18px 24px;
  border: 1px solid var(--surface);
  border-radius: 999px;
  background: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.benefit-list p:nth-child(1) {
  width: 505px;
}

.benefit-list p:nth-child(2) {
  width: 553px;
}

.benefit-list p:nth-child(3) {
  width: 663px;
}

.outcomes-photo {
  position: relative;
  width: 100%;
  max-width: 603px;
  aspect-ratio: 603 / 337;
  margin: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
}

.outcomes-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.photo-badge {
  position: absolute;
  right: 62px;
  bottom: 0;
  width: 60px;
  height: 58px;
  border-radius: 14px 14px 0 0;
  background: var(--cream);
}

.photo-badge img {
  width: 22px;
  height: 22px;
}

.contact-wrap {
  display: flex;
  justify-content: center;
  margin-top: 111px;
}

.contact-wrap .button {
  min-width: 407px;
}

.site-footer {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 25px 24px 23px;
  background: var(--accent);
  color: var(--ink);
}

.footer-logo {
  width: 179px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(31%) sepia(14%) saturate(891%) hue-rotate(158deg) brightness(93%);
}

.site-footer p {
  margin: 0;
  font-size: 16.8px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1500px) and (min-width: 1281px) {
  .outline-wordmark {
    left: 0;
  }

  .box-image {
    left: 5px;
  }

  .hero-callout {
    left: 475px;
  }

  .notify-badge {
    left: 649px;
  }

  .package-badge {
    left: 145px;
  }
}

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(410px, 0.86fr) 1.25fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .box-image {
    left: -5px;
    width: 520px;
  }

  .outline-wordmark {
    left: 0;
  }

  .hero-callout {
    left: 300px;
    width: 205px;
    height: 100px;
    font-size: 16px;
  }

  .notify-badge {
    left: 460px;
  }

  .package-badge {
    left: 100px;
  }

  .product-grid {
    gap: 36px;
  }

  .product-card {
    padding-inline: 48px;
  }

  .journey {
    grid-template-columns: 180px 1fr 180px 1fr 180px 1fr 180px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 46px;
  }

  .benefit-list p {
    width: 100% !important;
  }
}

@media (max-width: 1000px) {
  .shell {
    width: min(calc(100% - 40px), 720px);
  }

  .site-header {
    height: 76px;
  }

  .brand-link img {
    width: 154px;
    height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 0;
    padding-bottom: 64px;
  }

  .hero-copy {
    padding-top: 56px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(34px, 7.2vw, 46px);
  }

  .hero-description {
    margin-top: 30px;
  }

  .hero-divider {
    margin-top: 34px;
  }

  .hero-audience {
    margin-top: 32px;
  }

  .hero .button {
    margin-top: 32px;
  }

  .hero-art {
    width: 100%;
    min-height: 535px;
    margin-top: 18px;
  }

  .outline-wordmark {
    top: 125px;
    left: 28%;
    width: 820px;
  }

  .box-image {
    top: 45px;
    left: 50%;
    width: min(540px, 84vw);
    transform: translateX(-50%);
  }

  .hero-callout {
    top: 112px;
    right: 1%;
    left: auto;
    width: 210px;
    height: 94px;
    font-size: 15px;
  }

  .notify-badge {
    top: 86px;
    right: 4%;
    left: auto;
    width: 45px;
    height: 44px;
  }

  .package-badge {
    top: 355px;
    left: 12%;
    width: 68px;
    height: 66px;
  }

  .governance {
    padding: 82px 0 80px;
  }

  .governance h2,
  .outcomes h2 {
    font-size: clamp(31px, 5.2vw, 40px);
  }

  .journey {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    margin-top: 64px;
  }

  .journey::before,
  .journey-dot {
    display: none;
  }

  .journey-label {
    height: 58px;
    font-size: 17px;
  }

  .journey-step p {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.45;
  }

  .reconcile {
    margin-top: 56px;
  }

  .reconcile p {
    margin-top: 28px;
    font-size: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    min-height: 0;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 64px;
  }

  .benefit-list {
    width: 100%;
  }

  .outcomes-photo {
    justify-self: center;
  }

  .contact-wrap {
    margin-top: 70px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 32px), 480px);
  }

  .site-header {
    height: 68px;
  }

  .brand-link img {
    width: 138px;
  }

  .hero-grid {
    padding-bottom: 46px;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .hero-description,
  .hero-audience {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-divider {
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 60px;
    padding-inline: 18px;
    gap: 12px;
    font-size: 15px;
  }

  .hero-art {
    min-height: 385px;
    margin-top: 22px;
  }

  .box-image {
    top: 42px;
    width: min(390px, 95vw);
  }

  .outline-wordmark {
    top: 110px;
    left: 21%;
    width: 625px;
  }

  .hero-callout {
    top: 66px;
    right: 0;
    width: 153px;
    height: 72px;
    border-radius: 13px;
    font-size: 11px;
  }

  .notify-badge {
    top: 47px;
    right: 4%;
    width: 36px;
    height: 35px;
    border-radius: 9px;
  }

  .notify-badge img {
    width: 12px;
    height: 16px;
  }

  .package-badge {
    top: 265px;
    left: 5%;
    width: 54px;
    height: 52px;
    border-radius: 13px;
  }

  .package-badge img {
    width: 22px;
    height: 22px;
  }

  .governance {
    padding: 68px 0;
  }

  .governance h2,
  .outcomes h2 {
    font-size: 29px;
    line-height: 1.25;
  }

  .journey {
    gap: 24px 12px;
    margin-top: 48px;
  }

  .journey-label {
    height: 50px;
    padding-inline: 8px;
    font-size: 14px;
  }

  .journey-step p {
    min-height: 0;
    font-size: 13px;
  }

  .reconcile p {
    font-size: 14px;
  }

  .products {
    padding-bottom: 64px;
  }

  .product-card {
    padding: 32px 25px 34px;
    border-radius: 28px;
  }

  .product-tag {
    min-width: 0;
    height: 52px;
    gap: 11px;
    padding: 0 21px;
    font-size: 16px;
  }

  .product-card h3 {
    margin-top: 27px;
    font-size: 27px;
  }

  .product-card p,
  .product-detail {
    font-size: 15px;
    line-height: 1.55;
  }

  .product-detail {
    align-items: flex-start;
    margin-top: 28px;
    padding-top: 23px;
  }

  .product-detail img {
    margin-top: 5px;
  }

  .outcomes {
    padding-bottom: 72px;
  }

  .outcomes h2 {
    padding: 0;
  }

  .outcomes-grid {
    gap: 38px;
    margin-top: 50px;
  }

  .benefit-list {
    gap: 14px;
  }

  .benefit-list p {
    min-height: 0;
    padding: 15px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .outcomes-photo {
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }

  .photo-badge {
    right: 28px;
  }

  .contact-wrap {
    margin-top: 48px;
  }

  .contact-wrap .button {
    min-width: 0;
  }

  .site-footer {
    min-height: 132px;
  }

  .footer-logo {
    width: 145px;
  }

  .site-footer p {
    font-size: 12px;
  }
}

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

  .button {
    transition: none;
  }
}
