:root {
      --font-heading: "Recoleta", Georgia, "Times New Roman", serif;
      --font-body: "DM Sans", Inter, Arial, Helvetica, sans-serif;
      --hero-heading-color: #293645;
      --hero-body-color: #545454;
      --button-green: #35A635;
      --button-green-hover: #2F942F;
      --green-dark: #004D39;
      --green-main: #006048;
      --green-soft: #187058;
      --green-light: #55B947;
      --green-hover: #3FA63A;
      --green-pale: #E8F8E5;
      --cream: #F8F8E8;
      --cream-2: #F3F0D8;
      --white: #FFFFFF;
      --off-white: #F8F8F6;
      --black: #101010;
      --text: #27312D;
      --muted: #6F756F;
      --border: rgba(0, 96, 72, 0.14);
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.07);
      --radius: 24px;
      --radius-sm: 14px;
      --serif: var(--font-heading);
      --sans: var(--font-body);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      background: var(--off-white);
      color: var(--text);
      line-height: 1.6;
    }

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

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }
.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 12px 22px;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--button-green);
      color: white;
      box-shadow: 0 10px 22px rgba(53, 166, 53, 0.24);
    }

    .btn-primary:hover {
      background: var(--button-green-hover);
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(53, 166, 53, 0.32);
    }

    .btn-outline {
      border-color: rgba(0, 96, 72, 0.28);
      color: var(--green-main);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--green-pale);
      border-color: var(--green-light);
      transform: translateY(-2px);
    }
h1,
    h2,
    h3 {
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--black);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--green-main);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green-light);
    }

    .hero {
      position: relative;
      padding: 74px 0 68px;
      background:
        radial-gradient(circle at 86% 24%, rgba(85, 185, 71, 0.15), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, var(--off-white) 100%);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      left: max(18px, calc((100vw - 1180px) / 2 - 184px));
      top: 205px;
      width: min(520px, calc(100vw - 36px));
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(194, 244, 164, 0.39) 0%, rgba(214, 248, 195, 0.24) 42%, rgba(232, 248, 229, 0) 74%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.06fr 0.94fr;
      gap: 58px;
      align-items: center;
    }

    h1 {
      color: var(--hero-heading-color);
      font-family: var(--font-heading);
      font-size: 44px;
      line-height: 1.2;
      letter-spacing: 0;
      max-width: 600px;
      margin: 0 0 15px;
    }

    h1 span {
      color: var(--button-green);
    }

    .hero-copy {
      max-width: 600px;
      color: var(--hero-body-color);
      font-family: var(--font-body);
      font-size: 20px;
      line-height: 1.7;
      margin: 15px 0 20px;
      padding: 0 30px 0 0;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 28px;
    }

    .hero-actions .btn-primary {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      width: fit-content;
      min-width: 0;
      padding: 12px 24px;
      background: var(--button-green);
      border-color: var(--button-green);
      color: #FFFFFF;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.45;
      margin: 10px 0 0;
      text-transform: uppercase;
      transform: translateY(0);
      box-shadow: 0 12px 24px rgba(53, 166, 53, 0.28);
      transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
    }

    .hero-actions .btn-primary::before {
      content: "";
      position: absolute;
      top: -45%;
      bottom: -45%;
      left: -62%;
      width: 42%;
      border-radius: 999px;
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 35%,
        rgba(255, 255, 255, 0.48) 50%,
        rgba(255, 255, 255, 0.18) 65%,
        rgba(255, 255, 255, 0) 100%
      );
      filter: blur(0.5px);
      transform: skewX(-18deg);
      pointer-events: none;
      opacity: 0;
      z-index: 1;
    }

    .hero-actions .btn-primary:hover {
      background: var(--button-green);
      border-color: var(--button-green);
      color: #FFFFFF;
      transform: translateY(-3px);
      box-shadow: 0 16px 30px rgba(53, 166, 53, 0.36);
    }

    .hero-actions .btn-primary:hover::before {
      animation: heroButtonShine 0.78s ease forwards;
    }

    .hero-actions .btn-outline:hover {
      background: #293645;
      border-color: #293645;
      color: #FFFFFF;
      transform: translateY(-3px);
      box-shadow: 0 14px 28px rgba(41, 54, 69, 0.24);
    }

    .hero-actions .btn-outline {
      width: fit-content;
      min-width: 0;
      padding: 12px 24px;
      border-color: rgba(41, 54, 69, 0.22);
      color: #006048;
      background: transparent;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.45;
    }

    @keyframes heroButtonShine {
      0% {
        left: -62%;
        opacity: 0;
      }
      18% {
        opacity: 0.9;
      }
      82% {
        opacity: 0.9;
      }
      100% {
        left: 122%;
        opacity: 0;
      }
    }

    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .hero-note span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .hero-note span::before {
      content: "•";
      color: var(--green-light);
      font-weight: 900;
    }

    .hero-visual {
      position: relative;
      min-height: 530px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      perspective: 900px;
      isolation: isolate;
    }

    .hero-wholesale-glow {
      position: absolute;
      width: 360px;
      height: 500px;
      border-radius: 999px;
      background: linear-gradient(180deg, #0b6a4f 0%, #004D39 100%);
      box-shadow: 0 28px 70px rgba(0, 77, 57, 0.24);
      opacity: 0.74;
      pointer-events: none;
      z-index: 0;
      transform-origin: 50% 50%;
      will-change: transform;
    }

    .hero-wholesale-glow--one {
      right: 108px;
      top: 8px;
      transform: rotate(32deg);
      animation: wholesaleGlowClockwise 18s linear infinite;
    }

    .hero-wholesale-glow--two {
      width: 320px;
      height: 470px;
      left: 92px;
      bottom: 4px;
      background: linear-gradient(180deg, rgba(85, 185, 71, 0.78), rgba(0, 96, 72, 0.88));
      opacity: 0.52;
      transform: rotate(-42deg);
      animation: wholesaleGlowCounter 22s linear infinite;
    }

    .hero-wholesale-image-wrap {
      --tilt-x: 0deg;
      --tilt-y: 0deg;
      width: min(165%, 1020px);
      max-width: none;
      position: relative;
      z-index: 2;
      pointer-events: auto;
      cursor: pointer;
      transform-style: preserve-3d;
      transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0) scale(1);
      transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .hero-wholesale-image-wrap::before {
      content: "";
      position: absolute;
      inset: -10% -10% 5% -10%;
      background:
        radial-gradient(
          ellipse at center,
          rgba(0, 96, 72, 0.24),
          rgba(85, 185, 71, 0.13) 45%,
          transparent 70%
        );
      filter: blur(40px);
      opacity: 0.84;
      pointer-events: none;
      transition: opacity 400ms ease;
      z-index: -1;
    }

    .hero-wholesale-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 24px 46px rgba(0, 77, 57, 0.14));
      position: relative;
      z-index: 1;
      transition: filter 0.36s ease;
    }

    .hero-visual.is-image-hover .hero-wholesale-image {
      filter: drop-shadow(0 32px 62px rgba(0, 77, 57, 0.2));
    }

    @keyframes wholesaleGlowClockwise {
      from { transform: rotate(32deg); }
      to { transform: rotate(392deg); }
    }

    @keyframes wholesaleGlowCounter {
      from { transform: rotate(-42deg); }
      to { transform: rotate(-402deg); }
    }

    .hero-panel {
      position: absolute;
      inset: 28px 0 0 44px;
      border-radius: 30px;
      background: linear-gradient(135deg, var(--green-main), var(--green-dark) 68%, #2B8870);
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 34px;
      color: white;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -90px;
      top: -95px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.11);
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      left: -60px;
      bottom: -70px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.16);
    }

    .buyer-card {
      position: relative;
      background: rgba(255, 255, 255, 0.96);
      color: var(--black);
      border-radius: 20px;
      padding: 24px;
      margin-top: 105px;
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
      z-index: 2;
    }

    .buyer-top {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      margin-bottom: 18px;
    }

    .buyer-badge {
      background: var(--green-pale);
      color: var(--green-main);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 900;
    }

    .supplier-list {
      display: grid;
      gap: 10px;
    }

    .supplier-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border: 1px solid rgba(0, 96, 72, 0.10);
      border-radius: 12px;
      padding: 12px;
      background: #FAFAF7;
      font-size: 13px;
    }

    .supplier-item strong {
      color: var(--green-main);
    }

    .floating-metric {
      position: absolute;
      left: 0;
      top: 56px;
      width: 215px;
      background: var(--cream);
      border-radius: 18px;
      padding: 20px;
      box-shadow: var(--shadow-soft);
      transform: rotate(-5deg);
      border: 1px solid rgba(0, 96, 72, 0.12);
      z-index: 3;
    }

    .floating-metric strong {
      display: block;
      font-family: var(--serif);
      font-size: 38px;
      line-height: 1;
      color: var(--green-main);
      font-weight: 400;
      margin-bottom: 8px;
    }

    .floating-metric p {
      color: var(--muted);
      font-size: 13px;
    }

    .orbit-icons {
      position: absolute;
      right: 22px;
      top: 2px;
      display: flex;
      gap: 8px;
      z-index: 4;
    }

    .orbit-icons span {
      width: 43px;
      height: 43px;
      border-radius: 50%;
      background: white;
      display: grid;
      place-items: center;
      color: var(--green-main);
      font-weight: 900;
      box-shadow: var(--shadow-soft);
    }

    section {
      padding: 92px 0;
    }

    .section-head {
      text-align: center;
      max-width: 790px;
      margin: 0 auto 46px;
    }

    .section-head h2 {
      font-size: clamp(34px, 5vw, 58px);
      margin-bottom: 18px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 16px;
    }

    .problem {
      background: white;
    }

    .sourcing-switcher {
      --sourcing-orange: #E66C19;
      display: flex;
      gap: 24px;
      min-height: 390px;
      padding: 8px;
      background: #FFFFFF;
      border: 1px solid rgba(0, 77, 57, 0.12);
      border-radius: 30px;
      box-shadow: var(--shadow-soft);
    }

    .sourcing-card {
      position: relative;
      flex: 0 0 118px;
      min-width: 0;
      border-radius: 24px;
      overflow: hidden;
      background: #FFFFFF;
      border: 1px solid rgba(0, 77, 57, 0.14);
      box-shadow: 0 18px 34px rgba(0, 38, 28, 0.10);
      transform: translateY(0);
      transition:
        flex-basis 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease;
    }

    .sourcing-card.is-active {
      flex: 1 1 auto;
      border-color: rgba(0, 96, 72, 0.32);
      box-shadow:
        0 28px 58px rgba(0, 77, 57, 0.14),
        inset 0 0 0 1px rgba(85, 185, 71, 0.18);
    }

    .sourcing-card--old {
      background: linear-gradient(135deg, var(--sourcing-orange), #C24D0B);
      border-color: rgba(255, 255, 255, 0.18);
      color: white;
      box-shadow:
        0 24px 48px rgba(230, 108, 25, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .sourcing-card--old.is-active {
      border-color: rgba(255, 255, 255, 0.36);
      box-shadow:
        0 28px 60px rgba(230, 108, 25, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    .sourcing-card--ktc {
      background: linear-gradient(135deg, var(--green-main), #004D39);
      border-color: rgba(255, 255, 255, 0.16);
      color: white;
      box-shadow:
        0 24px 48px rgba(0, 77, 57, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .sourcing-card--ktc.is-active {
      border-color: rgba(85, 185, 71, 0.48);
      box-shadow:
        0 28px 60px rgba(0, 77, 57, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    .sourcing-card:not(.is-active):hover {
      transform: translateY(-5px);
    }

    .sourcing-card--ktc::before {
      content: "";
      position: absolute;
      top: -35%;
      bottom: -35%;
      left: -58%;
      width: 42%;
      border-radius: 999px;
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.07) 28%,
        rgba(255, 255, 255, 0.24) 50%,
        rgba(255, 255, 255, 0.07) 72%,
        rgba(255, 255, 255, 0) 100%
      );
      opacity: 0;
      filter: blur(1.5px);
      mix-blend-mode: screen;
      transform: skewX(-18deg);
      pointer-events: none;
      z-index: 4;
    }

    .sourcing-card--ktc::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -70px;
      top: -70px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.16);
      transform: scale(1);
      transform-origin: center;
      transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.36s ease,
        opacity 0.36s ease;
      z-index: 1;
    }

    .sourcing-card--ktc:hover,
    .sourcing-card--ktc.is-active:hover,
    .sourcing-card--ktc:not(.is-active):hover {
      transform: translateY(-10px);
      border-color: rgba(85, 185, 71, 0.5);
      box-shadow:
        0 24px 56px rgba(0, 77, 57, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
      backdrop-filter: blur(16px) saturate(1.16);
      -webkit-backdrop-filter: blur(16px) saturate(1.16);
    }

    .sourcing-card--ktc:hover::before {
      animation: sourcingKtcGlassSweep 0.9s ease forwards;
    }

    .sourcing-card--ktc:hover::after {
      transform: scale(1.72);
      background: rgba(85, 185, 71, 0.26);
    }

    .sourcing-card--old::before {
      content: "";
      position: absolute;
      top: -35%;
      bottom: -35%;
      left: -58%;
      width: 42%;
      border-radius: 999px;
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.07) 28%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.07) 72%,
        rgba(255, 255, 255, 0) 100%
      );
      opacity: 0;
      filter: blur(1.5px);
      mix-blend-mode: screen;
      transform: skewX(-18deg);
      pointer-events: none;
      z-index: 4;
    }

    .sourcing-card--old::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -70px;
      top: -70px;
      border-radius: 50%;
      background: rgba(255, 202, 156, 0.16);
      transform: scale(1);
      transform-origin: center;
      transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.36s ease,
        opacity 0.36s ease;
      z-index: 1;
    }

    .sourcing-card--old:hover,
    .sourcing-card--old.is-active:hover,
    .sourcing-card--old:not(.is-active):hover {
      transform: translateY(-10px);
      border-color: rgba(255, 255, 255, 0.46);
      box-shadow:
        0 24px 56px rgba(230, 108, 25, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
      backdrop-filter: blur(16px) saturate(1.16);
      -webkit-backdrop-filter: blur(16px) saturate(1.16);
    }

    .sourcing-card--old:hover::before {
      animation: sourcingOldGlassSweep 0.9s ease forwards;
    }

    .sourcing-card--old:hover::after {
      transform: scale(1.72);
      background: rgba(255, 202, 156, 0.28);
    }

    .sourcing-card__button {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 374px;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
      display: block;
      padding: 0;
    }

    .sourcing-card--ktc .sourcing-card__button,
    .sourcing-card--old .sourcing-card__button {
      z-index: 3;
    }

    .sourcing-card__button:focus-visible {
      outline: 3px solid rgba(230, 108, 25, 0.42);
      outline-offset: -6px;
      border-radius: 24px;
    }

    .sourcing-card__expanded {
      display: grid;
      align-content: center;
      height: 100%;
      padding: 42px;
      opacity: 0;
      transform: translateX(18px);
      pointer-events: none;
      transition:
        opacity 0.28s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .sourcing-card:not(.is-active) .sourcing-card__expanded {
      position: absolute;
      inset: 0;
      width: min(760px, 72vw);
    }

    .sourcing-card.is-active .sourcing-card__expanded {
      position: relative;
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
      transition-delay: 0.16s;
    }

    .sourcing-label {
      display: inline-block;
      margin-bottom: 16px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green-main);
    }

    .sourcing-card--old .sourcing-label {
      color: white;
    }

    .sourcing-card--ktc .sourcing-label {
      color: #B8F2AE;
    }

    .sourcing-card h3 {
      max-width: 720px;
      color: #071233;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.05;
      margin-bottom: 18px;
    }

    .sourcing-card p {
      max-width: 760px;
      color: #172033;
      font-size: 16px;
      line-height: 1.62;
      margin-bottom: 14px;
    }

    .sourcing-card--ktc h3,
    .sourcing-card--ktc p,
    .sourcing-card--old h3,
    .sourcing-card--old p {
      color: white;
    }

    .sourcing-card--ktc p,
    .sourcing-card--old p {
      color: rgba(255, 255, 255, 0.84);
    }

    .sourcing-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .sourcing-tags span {
      border: 1px solid rgba(0, 77, 57, 0.13);
      background: #F8F8E8;
      border-radius: 999px;
      color: #071233;
      font-size: 13px;
      font-weight: 800;
      padding: 9px 13px;
    }

    .sourcing-card--old .sourcing-tags span {
      border-color: rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.10);
      color: white;
    }

    .sourcing-card--ktc .sourcing-tags span {
      border-color: rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.10);
      color: white;
    }

    .sourcing-card__collapsed {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 22px 12px;
      opacity: 1;
      transition: opacity 0.22s ease;
      pointer-events: none;
    }

    .sourcing-card.is-active .sourcing-card__collapsed {
      opacity: 0;
    }

    .sourcing-card__collapsed-kicker {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(0, 96, 72, 0.08);
      color: var(--green-main);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: inset 0 0 0 1px rgba(0, 96, 72, 0.12);
    }

    .sourcing-card--old .sourcing-card__collapsed-kicker {
      background: rgba(255, 255, 255, 0.13);
      color: white;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    }

    .sourcing-card--ktc .sourcing-card__collapsed-kicker {
      background: rgba(255, 255, 255, 0.13);
      color: white;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    }

    .sourcing-card__collapsed strong {
      color: #071233;
      font-size: 20px;
      font-weight: 900;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      text-align: center;
      line-height: 1.1;
    }

    .sourcing-card--old .sourcing-card__collapsed strong {
      color: white;
    }

    .sourcing-card--ktc .sourcing-card__collapsed strong {
      color: white;
    }

    @keyframes sourcingKtcGlassSweep {
      0% {
        left: -58%;
        opacity: 0;
      }
      16% {
        opacity: 0.82;
      }
      84% {
        opacity: 0.82;
      }
      100% {
        left: 118%;
        opacity: 0;
      }
    }

    @keyframes sourcingOldGlassSweep {
      0% {
        left: -58%;
        opacity: 0;
      }
      16% {
        opacity: 0.82;
      }
      84% {
        opacity: 0.82;
      }
      100% {
        left: 118%;
        opacity: 0;
      }
    }

    .benefits {
      background: var(--off-white);
    }

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

    .benefit-card {
      position: relative;
      overflow: hidden;
      background: white;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px;
      color: var(--ink);
      transform: translateY(0);
      will-change: transform;
      box-shadow: none;
      transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.36s ease,
        box-shadow 0.36s ease,
        background 0.36s ease,
        color 0.32s ease,
        backdrop-filter 0.36s ease;
    }

    .benefit-card.reveal {
      transition:
        opacity 0.7s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.36s ease,
        box-shadow 0.36s ease,
        background 0.36s ease,
        color 0.32s ease,
        backdrop-filter 0.36s ease;
    }

    .benefit-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          100deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.06) 28%,
          rgba(255, 255, 255, 0.24) 50%,
          rgba(255, 255, 255, 0.06) 72%,
          rgba(255, 255, 255, 0) 100%
        ) -120% 0 / 55% 100% no-repeat,
        linear-gradient(135deg, var(--green-main), #004D39);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.38s ease;
      z-index: 1;
    }

    .benefit-card::after {
      content: "";
      position: absolute;
      width: 122px;
      height: 122px;
      right: -46px;
      top: -46px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.16);
      opacity: 0;
      transform: scale(0.28);
      transform-origin: center;
      transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.36s ease,
        opacity 0.36s ease;
      z-index: 2;
    }

    .benefit-card > * {
      position: relative;
      z-index: 3;
    }

    .benefit-card:hover,
    .benefit-card.reveal.active:hover {
      transform: translateY(-10px);
      box-shadow:
        0 24px 56px rgba(0, 77, 57, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
      border-color: rgba(85, 185, 71, 0.5);
      color: white;
      backdrop-filter: blur(16px) saturate(1.16);
      -webkit-backdrop-filter: blur(16px) saturate(1.16);
    }

    .benefit-card:hover::before {
      opacity: 1;
      animation: benefitGlassSweep 0.95s ease forwards;
    }

    .benefit-card:hover::after {
      opacity: 1;
      transform: scale(1.18);
      background: rgba(85, 185, 71, 0.26);
    }

    .benefit-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green-light);
      color: white;
      margin-bottom: 18px;
      font-weight: 900;
      font-size: 18px;
      box-shadow: 0 10px 20px rgba(85, 185, 71, 0.24);
      transition:
        background 0.32s ease,
        color 0.32s ease,
        box-shadow 0.32s ease;
    }

    .benefit-card:hover .benefit-icon {
      background: white;
      color: var(--green-main);
      box-shadow: 0 12px 26px rgba(0, 38, 28, 0.18);
    }

    .benefit-card h3 {
      font-size: 25px;
      margin-bottom: 10px;
      transition: color 0.32s ease;
    }

    .benefit-card p {
      color: var(--muted);
      font-size: 15px;
      transition: color 0.32s ease;
    }

    .benefit-card:hover h3,
    .benefit-card:hover p {
      color: white;
    }

    @keyframes benefitGlassSweep {
      0% {
        background-position: -120% 0, 0 0;
      }
      100% {
        background-position: 220% 0, 0 0;
      }
    }

    .benefits-flow {
      background:
        radial-gradient(circle at 96% 42%, rgba(0, 96, 72, 0.08), transparent 26%),
        radial-gradient(circle at 2% 56%, rgba(0, 96, 72, 0.06), transparent 24%),
        #FBFCF8;
      overflow: hidden;
    }

    .benefits-flow__head {
      margin-bottom: 28px;
    }

    .benefits-flow__head .eyebrow {
      justify-content: center;
    }

    .benefits-flow__head h2 {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      color: var(--green-dark);
      line-height: 1.02;
    }

    .benefits-flow__head p {
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }

    .benefits-flow__stage {
      --flow-line-y: 285px;
      position: relative;
      min-height: 620px;
      max-width: 1180px;
      margin: 4px auto 0;
      padding: 0;
      isolation: isolate;
    }

    .benefits-flow__line {
      position: absolute;
      left: 0;
      right: 0;
      top: var(--flow-line-y);
      height: 6px;
      background: var(--green-main);
      border-radius: 999px;
      box-shadow:
        0 0 0 8px rgba(0, 96, 72, 0.09),
        0 18px 38px rgba(0, 77, 57, 0.12);
      z-index: 1;
    }

    .benefits-flow__wave {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    .benefits-flow__wave-soft {
      fill: none;
      stroke: rgba(0, 96, 72, 0.12);
      stroke-width: 18;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .benefits-flow__wave-main {
      fill: none;
      stroke: var(--green-main);
      stroke-width: 6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .benefits-flow__list {
      position: relative;
      z-index: 2;
      min-height: 620px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .benefits-flow__item {
      position: absolute;
      left: var(--x);
      top: var(--flow-line-y);
      width: min(300px, 25vw);
      text-align: center;
      transform: translateX(-50%) translateY(0);
      transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.28s ease;
    }

    .benefits-flow__item--top {
      top: calc(var(--flow-line-y) - 52px);
    }

    .benefits-flow__item--bottom {
      top: calc(var(--flow-line-y) + 68px);
    }

    .benefits-flow__item:hover {
      transform: translateX(-50%) translateY(-8px);
    }

    .benefits-flow__item--bottom:hover {
      transform: translateX(-50%) translateY(8px);
    }

    .benefits-flow__copy {
      position: absolute;
      left: 50%;
      width: 100%;
      border-radius: 18px;
      min-height: 188px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 16px 34px rgba(0, 38, 28, 0.10);
      border: 1px solid rgba(0, 77, 57, 0.06);
      overflow: hidden;
      transform: translateX(-50%);
      transition:
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
    }

    .benefits-flow__copy::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          100deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.06) 28%,
          rgba(255, 255, 255, 0.24) 50%,
          rgba(255, 255, 255, 0.06) 72%,
          rgba(255, 255, 255, 0) 100%
        ) -120% 0 / 55% 100% no-repeat,
        linear-gradient(135deg, var(--green-main), #004D39);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.38s ease;
      z-index: 1;
    }

    .benefits-flow__copy::after {
      content: "";
      position: absolute;
      width: 96px;
      height: 96px;
      right: -38px;
      top: -38px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.16);
      opacity: 0;
      transform: scale(0.28);
      transform-origin: center;
      transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.36s ease,
        opacity 0.36s ease;
      z-index: 2;
    }

    .benefits-flow__copy > * {
      position: relative;
      z-index: 3;
    }

    .benefits-flow__item--top .benefits-flow__copy {
      bottom: 40px;
    }

    .benefits-flow__item--bottom .benefits-flow__copy {
      top: 40px;
    }

    .benefits-flow__item:hover .benefits-flow__copy {
      background: #FFFFFF;
      border-color: rgba(85, 185, 71, 0.22);
      box-shadow:
        0 24px 56px rgba(0, 77, 57, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
      transform: translateX(-50%) scale(1.02);
    }

    .benefits-flow__item:hover .benefits-flow__copy::before {
      opacity: 1;
      animation: benefitGlassSweep 0.95s ease forwards;
    }

    .benefits-flow__item:hover .benefits-flow__copy::after {
      opacity: 1;
      transform: scale(1.18);
      background: rgba(85, 185, 71, 0.26);
    }

    .benefits-flow__copy h3 {
      color: var(--green-dark);
      width: min(100%, 238px);
      height: 2.1em;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 25px;
      line-height: 1.05;
      margin-bottom: 10px;
      text-wrap: balance;
    }

    .benefits-flow__copy p {
      width: min(100%, 250px);
      color: #172033;
      font-size: 15px;
      line-height: 1.4;
      min-height: calc(15px * 1.4 * 3);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .benefits-flow__item:hover .benefits-flow__copy h3,
    .benefits-flow__item:hover .benefits-flow__copy p {
      color: white;
    }

    .benefits-flow__node {
      position: absolute;
      left: 50%;
      top: 0;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #CBE9D8;
      border: 0;
      box-shadow:
        0 12px 22px rgba(0, 38, 28, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.68);
      color: var(--green-dark);
      font-family: var(--font-sans);
      font-size: 24px;
      font-weight: 400;
      line-height: 1;
      margin: 0;
      transform: translate(-50%, -50%);
      transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
    }

    .benefits-flow__node::before {
      content: none;
    }

    .benefits-flow__item--bottom .benefits-flow__node {
      margin: 0;
    }

    .benefits-flow__item:hover .benefits-flow__node {
      transform: translate(-50%, -50%) scale(1.1);
      background: linear-gradient(135deg, var(--green-main), #004D39);
      color: white;
      box-shadow:
        0 20px 34px rgba(0, 77, 57, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    .benefits-flow__hub {
      min-height: 760px;
      margin-top: 24px;
    }

    .benefits-flow__hub.reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .benefits-flow__connectors {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 1;
      transition: opacity 0.42s ease 0.45s;
    }

    .benefits-flow__hub.is-primed:not(.active) .benefits-flow__connectors {
      opacity: 0;
    }

    .benefits-flow__connectors path {
      fill: none;
      stroke: rgba(85, 185, 71, 0.24);
      stroke-width: 4;
      stroke-linecap: round;
      filter: drop-shadow(0 12px 18px rgba(85, 185, 71, 0.14));
    }

    .benefits-flow__feature {
      position: absolute;
      left: 50%;
      top: 330px;
      z-index: 3;
      width: min(380px, 31vw);
      min-height: 228px;
      padding: 28px;
      border-radius: 18px;
      overflow: hidden;
      color: white;
      background:
        radial-gradient(circle at 88% 12%, rgba(85, 185, 71, 0.22), transparent 34%),
        linear-gradient(135deg, #005B43 0%, #004D39 58%, #006047 100%);
      box-shadow:
        0 28px 60px rgba(0, 77, 57, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
      transform: translate(-50%, -50%);
    }

    .benefits-flow__feature::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          100deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.08) 28%,
          rgba(255, 255, 255, 0.24) 50%,
          rgba(255, 255, 255, 0.08) 72%,
          rgba(255, 255, 255, 0) 100%
        ) -120% 0 / 55% 100% no-repeat;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.38s ease;
    }

    .benefits-flow__feature:hover::before {
      opacity: 1;
      animation: benefitGlassSweep 0.95s ease forwards;
    }

    .benefits-flow__feature > * {
      position: relative;
      z-index: 2;
    }

    .benefits-flow__feature .benefit-icon {
      margin-bottom: 18px;
      background: white;
      color: var(--green-main);
    }

    .benefits-flow__feature h3 {
      color: white;
      font-size: 25px;
      line-height: 1.05;
      margin-bottom: 10px;
    }

    .benefits-flow__feature p {
      color: rgba(255, 255, 255, 0.88);
      font-size: 15px;
      line-height: 1.42;
    }

    .benefits-flow__mini {
      position: absolute;
      z-index: 4;
      width: min(380px, 31vw);
      min-height: 228px;
      display: block;
      padding: 28px;
      text-align: left;
      --flow-final-transform: translate(0, 0);
      --flow-hover-transform: translateY(-10px);
    }

    .benefits-flow__hub.is-primed .benefits-flow__mini {
      opacity: 0;
      filter: blur(5px);
      pointer-events: none;
      transform: var(--flow-final-transform) translate(var(--from-x, 0px), var(--from-y, 0px)) scale(0.64);
      transform-origin: center;
      transition:
        transform 0.92s cubic-bezier(0.18, 1, 0.28, 1),
        opacity 0.5s ease,
        filter 0.56s ease,
        box-shadow 0.36s ease,
        border-color 0.36s ease,
        background 0.36s ease,
        color 0.32s ease,
        backdrop-filter 0.36s ease;
      transition-delay: var(--flow-delay, 0ms);
      will-change: transform, opacity, filter;
    }

    .benefits-flow__hub.is-primed.active .benefits-flow__mini {
      opacity: 1;
      filter: blur(0);
      pointer-events: auto;
      transform: var(--flow-final-transform);
    }

    .benefits-flow__hub.is-primed.active .benefits-flow__mini.benefit-card:hover {
      transform: var(--flow-hover-transform);
      transition-delay: 0ms;
    }

    .benefits-flow__mini .benefit-icon {
      margin: 0 0 18px;
    }

    .benefits-flow__mini h3 {
      font-size: 25px;
      line-height: 1.05;
      margin-bottom: 10px;
    }

    .benefits-flow__mini p {
      font-size: 15px;
      line-height: 1.42;
    }

    .benefits-flow__mini--left-top {
      left: 0;
      top: 18px;
    }

    .benefits-flow__mini--right-top {
      right: 0;
      top: 18px;
    }

    .benefits-flow__mini--left-bottom {
      left: 0;
      top: 388px;
    }

    .benefits-flow__mini--right-bottom {
      right: 0;
      top: 388px;
    }

    .benefits-flow__mini--bottom {
      left: 50%;
      bottom: 0;
      --flow-final-transform: translateX(-50%);
      --flow-hover-transform: translateX(-50%) translateY(-10px);
      transform: var(--flow-final-transform);
    }

    .benefits-flow__mini--bottom.benefit-card:hover {
      transform: var(--flow-hover-transform);
    }

    .buyer-types {
      background: white;
    }

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

    .type-card {
      background: var(--cream);
      border-radius: 22px;
      padding: 34px;
      border: 1px solid rgba(0, 96, 72, 0.11);
      transition: all 0.25s ease;
    }

    .type-card:hover {
      background: var(--green-main);
      color: white;
      transform: translateY(-5px);
      box-shadow: var(--shadow-soft);
    }

    .type-card:hover h3,
    .type-card:hover p {
      color: white;
    }

    .type-card h3 {
      font-size: 30px;
      margin-bottom: 12px;
    }

    .type-card p {
      color: var(--muted);
    }

    .how {
      background: var(--green-main);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .how::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 82% 10%, rgba(85, 185, 71, 0.22), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.08), transparent 30%);
      pointer-events: none;
    }

    .how .container {
      position: relative;
      z-index: 1;
    }

    .how .eyebrow,
    .how .section-head h2 {
      color: white;
    }

    .how .section-head p {
      color: rgba(255, 255, 255, 0.84);
    }

    .timeline {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      padding-top: 104px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 4.5%;
      right: 4.5%;
      top: 46px;
      border-top: 2px dashed rgba(248, 248, 232, 0.62);
      z-index: 0;
    }

    .timeline-step {
      position: relative;
      display: block;
      text-align: center;
      z-index: 1;
    }

    .timeline-step__card {
      position: relative;
      height: 260px;
      min-height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #F8F8E8;
      border: 1px solid rgba(0, 77, 57, 0.14);
      border-radius: 22px;
      padding: 76px 26px 30px;
      box-shadow: 0 22px 48px rgba(0, 38, 28, 0.14);
      transform: translateY(0) scale(1);
      transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    }

    .timeline-step:hover .timeline-step__card,
    .timeline-step.reveal.active:hover .timeline-step__card {
      transform: translateY(-6px) scale(1.01);
      border-color: rgba(85, 185, 71, 0.42);
      background: #FFFFF0;
      box-shadow: 0 28px 56px rgba(0, 38, 28, 0.18);
    }

    .timeline-step::before {
      content: attr(data-step);
      position: absolute;
      left: 0;
      right: 0;
      top: -104px;
      z-index: 2;
      color: white;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .timeline-step::after {
      content: "";
      position: absolute;
      left: 50%;
      top: -73px;
      z-index: 2;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--green-dark);
      border: 3px solid #F8F8E8;
      box-shadow:
        0 0 0 1px rgba(85, 185, 71, 0.72),
        0 0 0 3px var(--green-main),
        0 8px 18px rgba(0, 38, 28, 0.18);
      transform: translateX(-50%);
      pointer-events: none;
    }

    .step-number {
      position: absolute;
      left: 50%;
      top: 10px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green-light);
      display: grid;
      place-items: center;
      font-size: 18px;
      font-weight: 900;
      color: white;
      box-shadow: 0 10px 20px rgba(85, 185, 71, 0.24);
      transform: translate(-50%, -50%);
      transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease;
    }

    .timeline-step:hover .step-number,
    .timeline-step.reveal.active:hover .step-number {
      transform: translate(-50%, -50%) scale(1.08);
      background: var(--green-main);
      color: white;
      box-shadow: 0 14px 28px rgba(0, 38, 28, 0.24);
    }

    .timeline-step h3 {
      color: var(--black);
      font-size: 25px;
      line-height: 1.05;
      margin-bottom: 12px;
    }

    .timeline-step p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.46;
    }

    .categories {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(85, 185, 71, 0.12), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(0, 96, 72, 0.09), transparent 26%),
        #F9F9F8;
    }

    .categories::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -92px;
      top: -88px;
      border-radius: 50%;
      background: rgba(85, 185, 71, 0.12);
      pointer-events: none;
    }

    .categories .container {
      position: relative;
      z-index: 1;
    }

    .categories-head {
      margin-bottom: 34px;
    }

    .category-title {
      display: block;
      color: var(--green-dark);
      line-height: 1.02;
      white-space: nowrap;
    }

    .category-wrap {
      max-width: 980px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
    }

    .category-chip {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 77, 57, 0.36);
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      color: white;
      border-radius: 999px;
      padding: 14px 22px;
      font-size: 14.5px;
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(0, 77, 57, 0.18);
      backdrop-filter: blur(14px) saturate(1.08);
      -webkit-backdrop-filter: blur(14px) saturate(1.08);
      transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
    }

    .category-chip::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          100deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.08) 28%,
          rgba(255, 255, 255, 0.28) 50%,
          rgba(255, 255, 255, 0.08) 72%,
          rgba(255, 255, 255, 0) 100%
        ) -120% 0 / 55% 100% no-repeat,
        linear-gradient(135deg, #004D39, #003D2E);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.32s ease;
      z-index: 1;
    }

    .category-chip {
      isolation: isolate;
    }

    .category-chip span {
      position: relative;
      z-index: 3;
    }

    .category-chip::after {
      content: "";
      position: absolute;
      width: 34px;
      height: 34px;
      right: -12px;
      top: -12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      opacity: 0;
      transform: scale(0.5);
      transition:
        opacity 0.28s ease,
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 2;
    }

    .category-chip:hover {
      color: white;
      transform: translateY(-4px);
      border-color: rgba(85, 185, 71, 0.5);
      box-shadow:
        0 18px 38px rgba(0, 77, 57, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    .category-chip:hover::before {
      opacity: 1;
      animation: benefitGlassSweep 0.95s ease forwards;
    }

    .category-chip:hover::after {
      opacity: 1;
      transform: scale(1.35);
    }

    .trust {
      background: var(--off-white);
    }

    .trust-panel {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 40px;
      align-items: center;
      padding: 0;
    }

    .trust-panel h2 {
      font-size: clamp(34px, 5vw, 56px);
      margin-bottom: 18px;
    }

    .trust-panel p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: #404A45;
      font-size: 15px;
    }

    .check-list li::before {
      content: "✓";
      color: var(--green-light);
      font-weight: 900;
    }

    .trust-visual {
      min-height: 420px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 96% 8%, rgba(85, 185, 71, 0.28), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(85, 185, 71, 0.16), transparent 34%),
        linear-gradient(145deg, #006048 0%, #004D39 58%, #0B6A4F 100%);
      position: relative;
      overflow: hidden;
      color: white;
      padding: clamp(28px, 4vw, 44px);
      display: grid;
      align-content: center;
      box-shadow:
        0 24px 54px rgba(0, 77, 57, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
      isolation: isolate;
    }

    .trust-visual::before,
    .trust-visual::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .trust-visual::before {
      width: 230px;
      height: 230px;
      right: -108px;
      top: -98px;
      background: rgba(255, 255, 255, 0.08);
    }

    .trust-visual::after {
      width: 220px;
      height: 220px;
      left: -118px;
      bottom: -118px;
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .trade-activity-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
    }

    .trade-activity-item {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) auto;
      align-items: center;
      gap: 16px;
      min-height: 68px;
      padding: 13px 16px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow:
        0 14px 28px rgba(0, 38, 28, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
      color: #101010;
      transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    }

    .trade-activity-item:hover {
      transform: translateY(-4px);
      background: #FFFFFF;
      border-color: rgba(85, 185, 71, 0.44);
      box-shadow:
        0 20px 34px rgba(0, 38, 28, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .trade-activity-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green-pale);
      color: var(--green-main);
      font-weight: 900;
      transition:
        background 0.32s ease,
        color 0.32s ease,
        box-shadow 0.32s ease;
    }

    .trade-activity-item:hover .trade-activity-icon {
      background: white;
      color: var(--green-main);
      box-shadow: 0 12px 26px rgba(0, 38, 28, 0.18);
    }

    .trade-activity-icon svg {
      width: 22px;
      height: 22px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .trade-activity-icon--forward svg,
    .trade-activity-icon--forward svg path {
      fill: currentColor;
      stroke: none;
    }

    .trade-activity-copy {
      min-width: 0;
    }

    .trade-activity-copy strong {
      display: block;
      font-family: var(--font-body);
      letter-spacing: 0;
      color: #101010;
      font-size: 16px;
      line-height: 1.18;
      font-weight: 900;
    }

    .trade-activity-status {
      align-self: center;
      padding: 8px 13px;
      border-radius: 999px;
      background: #D7F4D2;
      border: 1px solid rgba(85, 185, 71, 0.36);
      color: #257A2F;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 8px 16px rgba(85, 185, 71, 0.16);
      font-size: 12px;
      line-height: 1;
      font-weight: 900;
      white-space: nowrap;
    }

    .faq {
      background: white;
    }

    .faq-list {
      max-width: 920px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 18px;
      background: white;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .faq-question {
      width: 100%;
      border: none;
      background: white;
      padding: 22px 24px;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 800;
      color: var(--black);
    }

    .faq-question span {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--green-pale);
      color: var(--green-main);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      transition: all 0.25s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer p {
      padding: 0 24px 22px;
      color: var(--muted);
    }

    .faq-item.active .faq-answer {
      max-height: 260px;
    }

    .faq-item.active .faq-question span {
      background: var(--green-light);
      color: white;
      transform: rotate(45deg);
    }

    .final-cta {
      --cta-footer-overlap: 160px;
      background: var(--off-white);
      padding: 26px 0 0;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .final-cta::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: var(--cta-footer-overlap);
      background: #030303;
      pointer-events: none;
      z-index: 0;
    }

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

    .cta-card {
      text-align: center;
      background: linear-gradient(135deg, var(--green-main), #004D39 70%, #2C8870);
      color: white;
      border-radius: 28px;
      padding: 70px 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      margin-bottom: 0;
      z-index: 1;
      transform: translateY(0);
      will-change: transform;
      transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.36s ease;
    }

    .cta-card.reveal {
      transition:
        opacity 0.7s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.36s ease;
    }

    .cta-card::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      left: -100px;
      top: -120px;
      background: rgba(255, 255, 255, 0.09);
      border-radius: 50%;
      transform: scale(1);
      transform-origin: center;
      transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.36s ease;
      z-index: 0;
    }

    .cta-card::after {
      content: "";
      position: absolute;
      top: -35%;
      bottom: -35%;
      left: -58%;
      width: 42%;
      border-radius: 999px;
      background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.07) 28%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.07) 72%,
        rgba(255, 255, 255, 0) 100%
      );
      opacity: 0;
      filter: blur(1.5px);
      mix-blend-mode: screen;
      transform: skewX(-18deg);
      pointer-events: none;
      z-index: 2;
    }

    .cta-card:hover,
    .cta-card.reveal.active:hover {
      transform: translateY(-8px);
      box-shadow:
        0 28px 70px rgba(0, 38, 28, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    .cta-card:hover::before {
      transform: scale(1.34);
      background: rgba(255, 255, 255, 0.13);
    }

    .cta-card:hover::after {
      animation: ctaGlassSweep 0.95s ease forwards;
    }

    .cta-card h2 {
      color: white;
      font-size: clamp(36px, 5vw, 64px);
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .cta-card p {
      max-width: 700px;
      margin: 0 auto 28px;
      color: rgba(255, 255, 255, 0.78);
      position: relative;
      z-index: 1;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      margin-bottom: 22px;
    }

    .cta-foot {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      position: relative;
      z-index: 1;
    }

    @keyframes ctaGlassSweep {
      0% {
        left: -58%;
        opacity: 0;
      }
      16% {
        opacity: 0.82;
      }
      84% {
        opacity: 0.82;
      }
      100% {
        left: 118%;
        opacity: 0;
      }
    }

    
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: all 0.7s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 980px) {
.hero-grid,
      .trust-panel {
        grid-template-columns: 1fr;
      }

      .sourcing-switcher {
        flex-direction: column;
        min-height: 0;
      }

      .sourcing-card,
      .sourcing-card.is-active {
        flex: 0 0 auto;
      }

      .sourcing-card__button {
        min-height: 104px;
      }

      .sourcing-card.is-active .sourcing-card__button {
        min-height: 360px;
      }

      .sourcing-card:not(.is-active) .sourcing-card__expanded {
        display: none;
      }

      .sourcing-card__collapsed {
        flex-direction: row;
        justify-content: space-between;
        padding: 22px 24px;
      }

      .sourcing-card__collapsed strong {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: right;
      }

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

      .benefits-flow__stage {
        min-height: auto;
        margin: 0;
        padding: 0;
      }

      .benefits-flow__wave,
      .benefits-flow__line {
        display: none;
      }

      .benefits-flow__list {
        display: grid;
        gap: 16px;
        min-height: 0;
      }

      .benefits-flow__item,
      .benefits-flow__item--top,
      .benefits-flow__item--bottom {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        display: grid;
        grid-template-columns: 78px 1fr;
        align-items: center;
        gap: 18px;
        text-align: left;
        transform: none;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(0, 77, 57, 0.12);
        border-radius: 20px;
        padding: 18px;
        box-shadow: 0 16px 32px rgba(0, 38, 28, 0.08);
      }

      .benefits-flow__item:hover {
        transform: translateY(-5px);
      }

      .benefits-flow__node,
      .benefits-flow__item--bottom .benefits-flow__node {
        position: static;
        left: auto;
        top: auto;
        order: 1;
        margin: 0;
        transform: none;
      }

      .benefits-flow__copy {
        position: static;
        left: auto;
        width: auto;
        order: 2;
        padding: 18px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(0, 77, 57, 0.06);
        box-shadow: 0 16px 34px rgba(0, 38, 28, 0.10);
        transform: none;
      }

      .benefits-flow__item:hover .benefits-flow__copy {
        background: #FFFFFF;
        box-shadow:
          0 24px 56px rgba(0, 77, 57, 0.16),
          inset 0 1px 0 rgba(255, 255, 255, 0.36);
        transform: scale(1.01);
      }

      .benefits-flow__item:hover .benefits-flow__node {
        transform: scale(1.08);
      }

      .benefits-flow__hub {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
      }

      .benefits-flow__connectors {
        display: none;
      }

      .benefits-flow__feature,
      .benefits-flow__mini,
      .benefits-flow__mini--left-top,
      .benefits-flow__mini--right-top,
      .benefits-flow__mini--left-bottom,
      .benefits-flow__mini--right-bottom,
      .benefits-flow__mini--bottom {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        --flow-final-transform: none;
        --flow-hover-transform: translateY(-10px);
        transform: none;
      }

      .benefits-flow__hub.is-primed.active .benefits-flow__mini {
        transform: none;
      }

      .benefits-flow__hub.is-primed.active .benefits-flow__mini.benefit-card:hover {
        transform: translateY(-10px);
      }

      .benefits-flow__feature {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 460px);
      }

      .benefits-flow__mini--bottom.benefit-card:hover {
        transform: translateY(-10px);
      }

      .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 76px 20px;
        padding-top: 42px;
      }

      .timeline::before {
        display: none;
      }

      .timeline-step__card {
        height: 250px;
        min-height: 250px;
        padding: 76px 24px 28px;
      }

      .timeline-step::before {
        top: -38px;
      }

      .timeline-step::after {
        display: none;
      }

      .hero-visual {
        min-height: 420px;
      }

      .hero-wholesale-image-wrap {
        width: min(100%, 620px);
      }

      .hero-wholesale-glow--one {
        width: 300px;
        height: 420px;
        right: 10%;
        top: 10px;
      }

      .hero-wholesale-glow--two {
        width: 270px;
        height: 390px;
        left: 8%;
        bottom: 0;
      }


      section {
        padding: 72px 0;
      }

      .final-cta {
        --cta-footer-overlap: 138px;
      }

      .cta-card {
        padding: 58px 24px;
      }
    }

    @media (max-width: 620px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .hero {
        padding-top: 60px;
      }

      .hero-content {
        text-align: center;
      }

      .hero-content .eyebrow {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: center;
      }

      h1 {
        font-size: 36px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-copy {
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-note {
        justify-content: center;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-outline {
        width: fit-content;
        min-width: 0;
        padding: 14px 22px;
      }

      .cta-actions .btn,
      .form-actions .btn {
        width: 100%;
      }

      .benefit-grid,
      .type-grid {
        grid-template-columns: 1fr;
      }

      .benefits-flow__head {
        margin-bottom: 24px;
      }

      .category-title {
        white-space: normal;
      }

      .benefits-flow__item,
      .benefits-flow__item--top,
      .benefits-flow__item--bottom {
        grid-template-columns: 62px 1fr;
        gap: 14px;
        padding: 16px;
      }

      .benefits-flow__node {
        width: 48px;
        height: 48px;
        font-size: 22px;
      }

      .benefits-flow__copy h3 {
        font-size: 22px;
        line-height: 1.05;
      }

      .benefits-flow__copy p {
        font-size: 13px;
        line-height: 1.32;
      }

      .benefits-flow__hub {
        grid-template-columns: 1fr;
      }

      .benefits-flow__feature,
      .benefits-flow__mini {
        padding: 24px;
        min-height: 0;
      }

      .benefits-flow__feature h3 {
        font-size: 25px;
      }

      .benefits-flow__feature p {
        font-size: 15px;
      }

      .benefits-flow__mini {
        display: block;
      }

      .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: 12px;
      }

      .timeline-step {
        text-align: left;
      }

      .timeline-step__card {
        height: 100%;
        min-height: 250px;
        padding: 18px 14px;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
      }

      .step-number {
        position: static;
        transform: none;
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
        font-size: 16px;
      }

      .timeline-step:hover .step-number,
      .timeline-step.reveal.active:hover .step-number {
        transform: none;
      }

      .timeline-step h3 {
        font-size: 22px;
        line-height: 1.05;
        margin-bottom: 12px;
      }

      .timeline-step p {
        font-size: 13px;
        line-height: 1.45;
      }

      .trust-panel {
        padding: 0;
        text-align: center;
      }

      .trust-panel .eyebrow {
        justify-content: center;
      }

      .trust-panel .check-list {
        text-align: left;
      }

      .trust-panel .check-list li {
        justify-content: flex-start;
      }

      .trust-visual {
        min-height: auto;
        padding: 22px;
      }

      .trade-activity-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 13px;
        text-align: left;
      }

      .trade-activity-status {
        grid-column: 2;
        justify-self: start;
        align-self: auto;
      }

      .sourcing-switcher {
        gap: 14px;
        padding: 6px;
        border-radius: 24px;
      }

      .sourcing-card {
        border-radius: 20px;
      }

      .sourcing-card.is-active .sourcing-card__button {
        min-height: 0;
      }

      .sourcing-card__expanded {
        padding: 28px 22px;
      }

      .sourcing-card h3 {
        font-size: 30px;
      }

      .sourcing-card p {
        font-size: 15px;
      }

      .hero-visual {
        min-height: auto;
      }

      .hero-wholesale-image-wrap {
        width: 100%;
      }

      .hero-wholesale-glow--one {
        width: 230px;
        height: 320px;
        right: 2%;
        top: 6px;
      }

      .hero-wholesale-glow--two {
        width: 210px;
        height: 300px;
        left: 0;
        bottom: 4px;
      }

      .final-cta {
        --cta-footer-overlap: 112px;
      }
    }
.btn-on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

body,
section,
.hero,
.problem,
.benefits,
.buyer-types,
.how,
.categories,
.trust,
.faq,
.final-cta {
  background-color: #F8F8F8;
}

.hero {
  background: #F8F8F8;
}

.final-cta {
  background: var(--off-white);
}

.final-cta::after {
  background: #030303;
}

.how {
  background: var(--green-main);
  color: white;
}

.how .eyebrow,
.how .section-head h2 {
  color: white;
}

.how .section-head p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 900px) {
  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
    overflow: hidden;
  }

  .hero-wholesale-image-wrap {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-wholesale-glow--one {
    width: min(64vw, 300px);
    height: min(88vw, 420px);
    left: 58%;
    right: auto;
    top: 3%;
    translate: -50% 0;
  }

  .hero-wholesale-glow--two {
    width: min(58vw, 270px);
    height: min(82vw, 390px);
    left: 39%;
    bottom: 0;
    translate: -50% 0;
  }
}

@media (max-width: 620px) {
  .hero-visual {
    width: 100%;
  }

  .hero-wholesale-image-wrap {
    width: min(100%, 500px);
  }

  .hero-wholesale-glow--one {
    width: min(72vw, 260px);
    height: min(98vw, 360px);
    left: 61%;
    top: 4%;
  }

  .hero-wholesale-glow--two {
    width: min(62vw, 230px);
    height: min(86vw, 320px);
    left: 36%;
    bottom: 2%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wholesale-glow {
    animation: none;
  }

  .hero-wholesale-image {
    transition: none;
  }
}

.mobile-break {
  display: none;
}

@media (max-width: 760px) {
  .mobile-break {
    display: block;
  }

  .problem,
  .benefits,
  .how,
  .categories,
  .trust,
  .faq {
    padding: 56px 0;
  }
}
