:root {
  --forest: #173f2d;
  --forest-deep: #0d2d20;
  --leaf: #58bd43;
  --leaf-light: #bde86f;
  --cream: #f7f6ee;
  --paper: #fffefa;
  --ink: #17241d;
  --muted: #68746d;
  --line: rgba(23, 63, 45, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: 'Manrope', sans-serif;
}
.site-header {
  width: min(1380px, calc(100% - 64px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}
.brand img {
  width: 112px;
  height: 52px;
  object-fit: contain;
}
nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}
nav a,
.text-link {
  transition: color 0.2s ease;
}
nav a:hover,
.text-link:hover {
  color: var(--leaf);
}
.site-header > .button {
  margin-left: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-small {
  min-height: 43px;
  padding: 0 18px;
}
.button-dark {
  background: var(--forest);
  color: #fff;
}
.button-primary {
  background: var(--leaf);
  color: #0b2a1c;
}
.button-light {
  background: #fff;
  color: var(--forest-deep);
}
.hero {
  position: relative;
  width: min(1380px, calc(100% - 64px));
  min-height: 710px;
  margin: 0 auto;
  padding: 62px 0 74px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}
.hero:before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 470px;
  height: 470px;
  left: -240px;
  top: 85px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    transparent 0 27px,
    rgba(57, 134, 73, 0.2) 28px 30px
  );
}
.hero:after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 280px;
  left: 40%;
  bottom: 4px;
  opacity: 0.62;
  background: linear-gradient(
      135deg,
      transparent 46%,
      rgba(57, 134, 73, 0.24) 47% 49%,
      transparent 50%
    )
    0 0/24px 24px;
  transform: rotate(-8deg);
}
.hero-copy {
  max-width: 650px;
}
.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #46715b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--leaf);
}
.hero h1 {
  margin: 23px 0 25px;
  font-size: clamp(50px, 5.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -4.7px;
}
.hero h1 em {
  color: #398649;
  font-style: normal;
}
.lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.text-link {
  font-size: 13px;
  font-weight: 700;
}
.trust-row {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: #627168;
  font-size: 11px;
  font-weight: 700;
}
.trust-row span:before {
  content: '✓';
  margin-right: 7px;
  color: #3b9645;
}
.hero-visual {
  position: relative;
  min-height: 568px;
  overflow: hidden;
  border-radius: 180px 16px 16px 16px;
  background: #dfe5d8;
}
.hero-visual:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 37, 24, 0.3), transparent 45%);
  pointer-events: none;
}
.hero-visual > img {
  width: 100%;
  height: 568px;
  object-fit: cover;
  object-position: 52% center;
}
.image-note {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  min-width: 210px;
  padding: 17px 20px;
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.94);
  backdrop-filter: blur(8px);
}
.image-note strong,
.image-note span {
  display: block;
}
.image-note strong {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
}
.image-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.intro {
  position: relative;
  overflow: hidden;
  padding: 100px max(32px, calc((100vw - 1380px) / 2)) 68px;
  background: rgba(255, 254, 250, 0.78);
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 12vw;
  align-items: end;
}
.intro:after {
  content: '';
  position: absolute;
  width: 340px;
  height: 180px;
  right: -65px;
  top: -32px;
  border-radius: 50%;
  background: repeating-linear-gradient(
    165deg,
    transparent 0 15px,
    rgba(57, 134, 73, 0.18) 16px 19px
  );
}
.intro > * {
  position: relative;
  z-index: 1;
}
.intro h2,
.network h2,
.closing h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -3px;
}
.intro > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.journey-grid {
  padding: 0 max(32px, calc((100vw - 1380px) / 2)) 110px;
  background-color: rgba(255, 254, 250, 0.68);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(23, 63, 45, 0.14) 0 2px,
    transparent 2px 80px
  );
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.journey-grid article {
  --card-accent: #4da841;
  position: relative;
  min-height: 350px;
  padding: 28px 28px 32px;
  border: 1px solid rgba(23, 63, 45, 0.12);
  border-radius: 14px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(251, 252, 247, 0.65) 72%,
    rgba(88, 189, 67, 0.12) 100%
  );
  box-shadow: 0 14px 35px rgba(21, 55, 39, 0.07);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.journey-grid article:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--card-accent);
}
.journey-grid article:after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: -68px;
  bottom: -68px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 30%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px color-mix(in srgb, var(--card-accent) 6%, transparent),
    0 0 0 38px color-mix(in srgb, var(--card-accent) 4%, transparent);
}
.journey-grid article:nth-child(2) {
  --card-accent: #77a93d;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(251, 252, 247, 0.65) 72%,
    rgba(146, 184, 76, 0.13) 100%
  );
}
.journey-grid article:nth-child(3) {
  --card-accent: #d39a35;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 253, 248, 0.65) 72%,
    rgba(211, 154, 53, 0.13) 100%
  );
}
.journey-grid article:nth-child(4) {
  --card-accent: #28765b;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(249, 252, 250, 0.65) 72%,
    rgba(40, 118, 91, 0.13) 100%
  );
}
.journey-grid article:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--card-accent) 45%, transparent);
  box-shadow: 0 22px 48px rgba(21, 55, 39, 0.13);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 25px;
  padding: 0 9px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--card-accent) 11%, white);
  color: var(--card-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.step-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin: 48px 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--card-accent) 18%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--card-accent) 12%, white);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.55);
  color: var(--card-accent);
  font-size: 23px;
  transform: rotate(-3deg);
}
.journey-grid article:nth-child(even) .step-icon {
  transform: rotate(3deg);
}
.journey-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  font-size: 20px;
  line-height: 1.3;
}
.journey-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.network {
  position: relative;
  overflow: hidden;
  padding: 105px max(32px, calc((100vw - 1380px) / 2));
  background: var(--forest-deep);
  color: #fff;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 10vw;
  align-items: center;
}
.network:before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  left: -270px;
  bottom: -310px;
  border-radius: 50%;
  border: 2px solid rgba(189, 232, 111, 0.26);
  box-shadow:
    0 0 0 55px rgba(189, 232, 111, 0.055),
    0 0 0 110px rgba(189, 232, 111, 0.035);
}
.network:after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -140px;
  background: radial-gradient(circle, rgba(189, 232, 111, 0.28) 0 2px, transparent 3px) 0 0/22px
    22px;
  transform: rotate(12deg);
}
.network > * {
  position: relative;
  z-index: 1;
}
.eyebrow.light {
  color: var(--leaf-light);
}
.network-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 25px 0 32px;
  color: #b8c9bf;
  font-size: 16px;
  line-height: 1.75;
}
.network-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.network-list div {
  min-height: 78px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.network-list span {
  color: var(--leaf-light);
  font-size: 10px;
}
.network-list strong {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
}
.closing {
  position: relative;
  overflow: hidden;
  padding: 110px 32px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 50%, rgba(88, 189, 67, 0.22), transparent 24%),
    radial-gradient(circle at 88% 42%, rgba(189, 232, 111, 0.28), transparent 22%);
}
.closing:before,
.closing:after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 2px solid rgba(57, 134, 73, 0.22);
}
.closing:before {
  left: 5%;
  top: 28%;
}
.closing:after {
  right: 6%;
  bottom: -95px;
  box-shadow: 0 0 0 28px rgba(57, 134, 73, 0.075);
}
.closing > * {
  position: relative;
  z-index: 1;
}
.closing .eyebrow {
  justify-content: center;
}
.closing h2 {
  margin-bottom: 34px;
}
footer {
  width: min(1380px, calc(100% - 64px));
  min-height: 120px;
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
footer p {
  max-width: 390px;
  line-height: 1.6;
  text-align: center;
}
footer > span {
  text-align: right;
}
.brand-footer img {
  width: 88px;
}
@media (max-width: 960px) {
  .site-header {
    width: calc(100% - 40px);
  }
  nav {
    display: none;
  }
  .site-header > .button {
    margin-left: auto;
  }
  .hero {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    padding-top: 54px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-visual {
    min-height: 500px;
    border-radius: 120px 14px 14px 14px;
  }
  .hero-visual > img {
    height: 500px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
  .network {
    grid-template-columns: 1fr;
    gap: 65px;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 76px;
  }
  .brand img {
    width: 88px;
    height: 42px;
  }
  .site-header .button {
    padding: 0 13px;
    min-height: 39px;
    font-size: 11px;
  }
  .hero {
    min-height: auto;
    gap: 46px;
    padding: 48px 0 58px;
  }
  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
    letter-spacing: -3.5px;
  }
  .lead {
    font-size: 16px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .trust-row {
    gap: 10px 18px;
  }
  .hero-visual,
  .hero-visual > img {
    min-height: 390px;
    height: 390px;
  }
  .hero-visual {
    border-radius: 90px 12px 12px 12px;
  }
  .hero-visual > img {
    object-position: center;
  }
  .image-note {
    right: 12px;
    bottom: 12px;
    min-width: 190px;
  }
  .intro {
    padding-top: 75px;
    padding-bottom: 48px;
  }
  .intro h2,
  .network h2,
  .closing h2 {
    letter-spacing: -2px;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 75px;
  }
  .journey-grid article {
    min-height: auto;
    padding: 25px;
  }
  .step-icon {
    margin: 32px 0 24px;
  }
  .network {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .closing {
    padding: 80px 20px;
  }
  footer {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    text-align: left;
  }
  footer p,
  footer > span {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
