@font-face {
        font-family: "Onest";
        src: url("./assets/fonts/onest-cyrillic-400-DH8vlB-A.woff2") format("woff2");
        font-style: normal;
        font-weight: 400;
        font-display: swap;
        unicode-range: U+0400-052F;
      }

      @font-face {
        font-family: "Onest";
        src: url("./assets/fonts/onest-latin-400-bladozIj.woff2") format("woff2");
        font-style: normal;
        font-weight: 400;
        font-display: swap;
        unicode-range: U+0000-024F;
      }

      @font-face {
        font-family: "Onest";
        src: url("./assets/fonts/onest-cyrillic-600-DiaWg2oX.woff2") format("woff2");
        font-style: normal;
        font-weight: 600;
        font-display: swap;
        unicode-range: U+0400-052F;
      }

      @font-face {
        font-family: "Onest";
        src: url("./assets/fonts/onest-latin-600-jVaZHx2Z.woff2") format("woff2");
        font-style: normal;
        font-weight: 600;
        font-display: swap;
        unicode-range: U+0000-024F;
      }

      @font-face {
        font-family: "Onest";
        src: url("./assets/fonts/onest-cyrillic-700-CwpXuTGk.woff2") format("woff2");
        font-style: normal;
        font-weight: 700;
        font-display: swap;
        unicode-range: U+0400-052F;
      }

      @font-face {
        font-family: "Onest";
        src: url("./assets/fonts/onest-latin-700-Bd6qVL4Q.woff2") format("woff2");
        font-style: normal;
        font-weight: 700;
        font-display: swap;
        unicode-range: U+0000-024F;
      }

      :root {
        --page: #f7f0e4;
        --ink: #14372a;
        --green: #174332;
        --green-deep: #0b2c20;
        --line: rgba(20, 55, 42, 0.22);
        --muted: #385247;
        --gold: #c99335;
        --paper: #f4ecdf;
        --paper-strong: #eadfce;
        --dark: #062217;
        --dark-deep: #03180f;
        --soft-line: rgba(18, 63, 51, 0.15);
        --hero-cream: #f7f0e4;
        --hero-pill: rgba(20, 63, 47, 0.9);
        --hero-pill-line: rgba(245, 238, 222, 0.12);
        --hero-gold-strong: #c99335;
        --hero-button-green: #c99335;
        --ui: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        --edge: clamp(34px, 6.55vw, 104px);
        --header-h: 82px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        min-height: 100%;
        scroll-behavior: smooth;
        background: var(--page);
        touch-action: manipulation;
        -webkit-text-size-adjust: 100%;
        scrollbar-color: rgba(20, 55, 42, 0.56) var(--paper);
        scrollbar-width: thin;
      }

      body {
        min-height: 100%;
        margin: 0;
        background: var(--page);
        color: var(--ink);
        font-family: var(--ui);

        overscroll-behavior-x: none;
      }

      a {
        color: inherit;
        text-decoration: none;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
      }

      button {
        font: inherit;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
      }

      ::selection {
        color: #fff;
        background: var(--green);
      }

      :focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: 4px;
      }

      .motion-enabled [data-reveal] {
        opacity: 0;
        transform: translate3d(0, 26px, 0);
        transition:
          opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
          transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0ms);
        will-change: opacity, transform;
      }

      .motion-enabled [data-reveal].is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      .hero {
        position: relative;
        min-height: 100svh;
        overflow: clip;
        background: var(--hero-cream);
        isolation: isolate;
      }

      .hero::after {
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
          linear-gradient(180deg, var(--hero-cream) 0%, rgba(247, 240, 228, 0.98) 9%, rgba(247, 240, 228, 0) 24%),
          linear-gradient(
            90deg,
            var(--hero-cream) 0%,
            rgba(247, 240, 228, 0.99) 30%,
            rgba(247, 240, 228, 0.84) 45%,
            rgba(247, 240, 228, 0.28) 63%,
            rgba(247, 240, 228, 0) 78%
          );
        content: "";
        pointer-events: none;
      }

      .site-header {
        position: absolute;
        z-index: 10;
        top: 0;
        right: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: var(--header-h);
        padding: 0 var(--edge);
        border-bottom: 1px solid rgba(245, 238, 222, 0.12);
        background: var(--dark-deep);
      }

      .brand-logo {
        display: flex;
        align-items: center;
        width: clamp(174px, 14.2vw, 204px);
        height: 58px;
      }

      .brand-logo img {
        display: block;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: contain;
        filter: none;
      }

      .menu-button {
        display: inline-grid;
        place-items: center;
        width: 33px;
        height: 33px;
        margin-right: -3px;
        padding: 0;
        border: 0;
        color: #f9f1e3;
        background: transparent;
        cursor: pointer;
      }

      .menu-button span,
      .menu-button::before {
        display: block;
        width: 24px;
        height: 1px;
        background: currentColor;
        content: "";
        transition:
          transform 180ms ease,
          opacity 180ms ease;
      }

      .menu-button span {
        transform: translateY(-4px);
      }

      .menu-button::before {
        transform: translateY(5px);
      }

      .menu-button:hover span {
        transform: translateY(-5px);
      }

      .menu-button:hover::before {
        transform: translateY(6px);
      }

      .site-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-left: auto;
        margin-right: 18px;
        padding: 5px;
        border: 1px solid var(--hero-pill-line);
        border-radius: 999px;
        color: rgba(255, 250, 240, 0.94);
        background: var(--hero-pill);

      }

      .site-nav a {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 36px;
        padding: 0 18px;
        border-radius: 999px;
        white-space: nowrap;
        transition:
          color 180ms ease,
          background 180ms ease;
      }

      .site-nav a::after {
        content: none;
      }

      .site-nav a:hover {
        color: #fff9ec;
        background: rgba(224, 164, 49, 0.18);
      }

      .header-actions {
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .header-account {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 17px;
        border: 1px solid rgba(245, 238, 222, 0.3);
        border-radius: 12px;
        color: #fff9ec;
        background: transparent;

        transition:
          background 180ms ease,
          transform 180ms ease;
      }

      .header-account:hover {
        border-color: rgba(224, 164, 49, 0.72);
        background: rgba(224, 164, 49, 0.13);
        transform: translateY(-1px);
      }

      .header-account-primary {
        border-color: var(--gold);
        color: var(--dark-deep);
        background: var(--gold);
      }

      .header-account-primary::after {
        content: none;
      }

      .mobile-menu {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        display: none;
        width: min(320px, calc(100vw - var(--edge) * 2));
        padding: 12px;
        border: 1px solid rgba(20, 55, 42, 0.16);
        border-radius: 14px;
        background: var(--page);
        box-shadow: 0 22px 60px rgba(3, 24, 15, 0.22);
      }

      .mobile-menu a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 12px;
        border-bottom: 1px solid rgba(18, 63, 51, 0.1);
        color: var(--green-deep);

        
      }

      .mobile-menu a:last-child {
        border-bottom: 0;
      }

      .hero-shell {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: minmax(430px, 0.45fr) minmax(0, 0.55fr);
        column-gap: clamp(16px, 3.6vw, 58px);
        min-height: 100svh;
        padding: var(--header-h) var(--edge) 0;
      }

      .hero-media {
        position: absolute;
        inset: 0;
        z-index: 0;
        display: block;
        min-width: 0;
        min-height: 0;
        overflow: hidden;
        background: var(--hero-cream);
      }

      .hero-video-media {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        max-height: none;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
        background: var(--hero-cream);
        pointer-events: none;
        user-select: none;
      }

      .hero-left {
        display: flex;
        grid-column: 1;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        min-height: calc(100svh - var(--header-h));
        padding: clamp(104px, 17.1vh, 184px) 0 clamp(58px, 7.2vh, 76px);
      }

      .hero-copy {
        position: relative;
        z-index: 3;
        width: min(640px, 100%);
      }

      .hero-kicker {
        margin: 0 0 19px;
        color: #a66f12;

      }

      .hero-title {
        margin: 0;
        font-family: var(--ui);

        
      }

      .hero-title span {
        display: block;
      }

      .hero-title .title-top {
        color: var(--green-deep);
      }

      .hero-title .title-bottom {
        width: auto;
        margin-top: 7px;
        color: var(--green);
        transform: none;
      }

      .hero-subtitle {
        display: flex;
        align-items: center;
        gap: 23px;
        margin: 34px 0 0;
        max-width: 600px;
        color: rgba(20, 55, 42, 0.9);

        white-space: normal;
      }

      .hero-subtitle::before {
        display: block;
        width: 48px;
        height: 1px;
        flex: 0 0 auto;
        background: var(--gold);
        content: "";
      }

      .hero-clarifier {
        max-width: 490px;
        margin: 19px 0 0 71px;
        color: rgba(20, 55, 42, 0.78);

      }

      .hero-clarifier strong {
        color: var(--green-deep);

      }

      .access-button {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 313px;
        height: 50px;
        margin-top: 38px;
        padding: 0 22px;
        border: 1px solid var(--hero-button-green);
        border-radius: 12px;
        color: var(--dark-deep);
        background: var(--hero-button-green);

        box-shadow: none;
        transition:
          background 180ms ease,
          border-color 180ms ease,
          transform 180ms ease;
      }

      .access-button svg {
        width: 23px;
        height: 13px;
        flex: 0 0 auto;
        color: currentColor;
      }

      .access-button:hover {
        border-color: #e4ae4b;
        background: #e4ae4b;
        transform: translateY(-1px);
      }

      .hero-login-link {
        display: inline-flex;
        align-items: baseline;
        gap: 7px;
        margin-top: 16px;
        color: rgba(20, 55, 42, 0.76);

      }

      .hero-login-link strong {
        color: var(--green-deep);

        text-decoration: underline;
        text-decoration-color: rgba(211, 154, 45, 0.75);
        text-underline-offset: 4px;
      }

      .hero-login-link:hover strong {
        color: #9b6815;
      }

      .menu-button {
        display: none;
      }

      .section-inner,
      .footer-inner {
        width: min(1180px, 100%);
        margin: 0 auto;
      }

      .page-section {
        padding: clamp(78px, 8.9vw, 132px) var(--edge);
        scroll-margin-top: 96px;
        background: #fffaf1;
      }

      .muted-section,
      .portfolio-section,
      .faq-section {
        background: var(--paper);
      }

      .portfolio-section {
        overflow: hidden;
      }

      .dark-section {
        padding: clamp(78px, 8.6vw, 128px) var(--edge);
        scroll-margin-top: 96px;
        color: #fff;
        background: var(--dark-deep);
      }

      .split-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.93fr) minmax(340px, 0.7fr);
        align-items: center;
        gap: clamp(34px, 6vw, 84px);
      }

      .split-grid > *,
      .partners-grid > *,
      .footer-grid > * {
        min-width: 0;
      }

      .section-kicker {
        margin: 0 0 16px;
        color: var(--gold);

      }

      .section-title,
      .site-footer h2 {
        max-width: 820px;
        margin: 0;
        color: var(--green);
        font-family: var(--ui);

        
      }

      .dark-section .section-title,
      .cta-section .section-title,
      .site-footer h2 {
        color: #fff;
      }

      .section-lead {
        max-width: 690px;
        margin: 24px 0 0;
        color: rgba(17, 24, 33, 0.72);

      }

      .dark-section .section-lead,
      .cta-section .section-lead,
      .site-footer p {
        color: rgba(255, 255, 255, 0.74);
      }

      .section-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: clamp(36px, 5vw, 64px);
      }

      .section-head .section-lead {
        width: min(460px, 100%);
        margin: 0;
      }

      .media-frame {
        margin: 0;
        border: 1px solid rgba(18, 63, 51, 0.13);
        background: #fff;
        overflow: hidden;
      }

      .media-frame img,
      .wide-image img,
      .cta-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .media-frame img {
        aspect-ratio: 4 / 3;
      }

      .wide-image {
        margin: 0 0 18px;
        min-height: 315px;
        overflow: hidden;
        background: var(--paper-strong);
      }

      .wide-image img {
        min-height: 315px;
      }

      .metric-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1px;
        margin-top: 38px;
        border: 1px solid var(--soft-line);
        background: var(--soft-line);
      }

      .metric-row div {
        min-height: 102px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.72);
      }

      .metric-row strong {
        display: block;
        color: var(--green-deep);

      }

      .metric-row span {
        display: block;
        margin-top: 8px;
        color: rgba(17, 24, 33, 0.58);

      }

      .section-link,
      .footer-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        margin-top: 36px;
        padding: 0 20px;
        border: 1px solid var(--gold);
        border-radius: 12px;
        color: #13271e;
        background: var(--gold);

        text-align: center;

        transition:
          background 180ms ease,
          transform 180ms ease;
      }

      .dark-section .section-link,
      .cta-section .section-link,
      .footer-link {
        border-color: var(--gold);
        color: #13271e;
        background: var(--gold);
      }

      .section-link:hover,
      .footer-link:hover {
        border-color: #d6a34c;
        background: #d6a34c;
        transform: translateY(-1px);
      }

      .dark-section .section-link:hover,
      .cta-section .section-link:hover,
      .footer-link:hover {
        background: #d6a34c;
      }

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

      .feature-card,
      .legal-card,
      .faq-item {
        border: 1px solid var(--soft-line);
        background: rgba(255, 255, 255, 0.68);
        transition:
          transform 220ms ease,
          border-color 220ms ease,
          background 220ms ease,
          box-shadow 220ms ease;
      }

      .feature-card {
        display: flex;
        flex-direction: column;
        min-height: 360px;
      }

      .feature-card:hover,
      .faq-item:hover {
        border-color: rgba(18, 63, 51, 0.28);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 18px 40px rgba(16, 54, 41, 0.08);
        transform: translateY(-3px);
      }

      .feature-card img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
      }

      .feature-card div,
      .legal-card,
      .faq-item {
        padding: 24px;
      }

      .feature-card h3,
      .legal-card h3,
      .faq-question {
        margin: 0;
        color: var(--green-deep);

      }

      .feature-card p,
      .legal-card p,
      .faq-answer,
      .steps-list p {
        margin: 13px 0 0;
        color: rgba(17, 24, 33, 0.65);

      }

      .card-number {
        display: block;
        margin-bottom: 28px;
        color: var(--gold);
        font-family: var(--ui);

      }

      .partners-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
        gap: clamp(34px, 5.4vw, 72px);
        align-items: center;
      }

      .portfolio-section .section-inner {
        width: min(1328px, calc(100% + var(--edge) * 0.9));
        grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.06fr);
        align-items: stretch;
        gap: clamp(20px, 3.6vw, 44px);
      }

      .portfolio-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
      }

      .portfolio-section .section-lead {
        max-width: 620px;
      }

      .portfolio-section .metric-row {
        margin-top: 34px;
      }

      .portfolio-section .section-link {
        margin-top: 30px;
      }

      .media-frame-video {
        width: calc(100% + var(--edge) * 1.05);
        height: auto;
        min-height: 0;
        margin-right: calc(var(--edge) * -1);
        justify-self: end;
        align-self: stretch;
        border-color: rgba(18, 63, 51, 0.1);
        background: var(--paper-strong);
        box-shadow: 0 28px 66px rgba(16, 54, 41, 0.08);
      }

      .media-video-shell {
        position: relative;
        display: grid;
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;
        background: var(--paper-strong);
      }

      .media-video-shell::after {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(18, 63, 51, 0.04) 100%);
        content: "";
        pointer-events: none;
      }

      .media-frame-video .media-fallback,
      .media-frame-video .media-loop-video {
        grid-area: 1 / 1;
        display: block;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center center;
      }

      .media-frame-video .media-fallback {
        aspect-ratio: auto;
        transition: transform 900ms ease, opacity 320ms ease;
      }

      .media-frame-video .media-loop-video {
        position: relative;
        opacity: 0;
        pointer-events: none;
        user-select: none;
        transition:
          opacity 320ms ease,
          transform 900ms ease;
      }

      .media-video-shell[data-video-ready="true"] .media-loop-video {
        opacity: 1;
      }

      .media-frame-video:hover .media-fallback,
      .media-frame-video:hover .media-loop-video {
        transform: scale(1.03);
      }

      .partners-section {
        padding-top: clamp(66px, 7.2vw, 96px);
        padding-bottom: clamp(66px, 7.2vw, 96px);
      }

      .partners-section .partners-grid {
        align-items: start;
        gap: clamp(28px, 4.4vw, 60px);
      }

      .partner-image {
        min-height: 500px;
        margin: 0;
        overflow: hidden;
        background: var(--dark);
      }

      .partners-section .partner-image,
      .partners-section .partner-image img {
        min-height: 420px;
      }

      .partners-section .partner-image {
        position: sticky;
        top: clamp(92px, 11vh, 144px);
        align-self: start;
      }

      .partner-image img {
        width: 100%;
        height: 100%;
        min-height: 500px;
        object-fit: cover;
        filter: grayscale(0.12) contrast(1.02);
        transition: transform 900ms ease;
      }

      .partners-section .partner-image:hover img {
        transform: scale(1.03);
      }

      .partners-copy {
        display: flex;
        flex-direction: column;
      }

      .partners-section .section-lead {
        max-width: 640px;
      }

      .partners-section .section-link {
        margin-top: 28px;
      }

      .steps-list {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        margin: 0;
        padding: 0;
        border-top: 1px solid var(--soft-line);
        border-left: 1px solid var(--soft-line);
        list-style: none;
      }

      .steps-list li {
        min-height: 250px;
        padding: 26px;
        border-right: 1px solid var(--soft-line);
        border-bottom: 1px solid var(--soft-line);
        background: #fff;
      }

      .steps-list span {
        display: block;
        margin-bottom: 48px;
        color: var(--gold);
        font-family: var(--ui);

      }

      .steps-list h3 {
        margin: 0;
        color: var(--green-deep);

      }

      .cta-section {
        position: relative;
        padding: clamp(86px, 9.2vw, 136px) var(--edge);
        color: #fff;
        background: var(--dark-deep);
        overflow: hidden;
        isolation: isolate;
      }

      .cta-image {
        position: absolute;
        inset: 0;
        z-index: -2;
      }

      .cta-image::after {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(7, 29, 24, 0.88) 0%, rgba(7, 29, 24, 0.72) 48%, rgba(7, 29, 24, 0.2) 100%),
          linear-gradient(0deg, rgba(7, 29, 24, 0.76), rgba(7, 29, 24, 0.1));
        content: "";
      }

      .cta-content {
        max-width: 720px;
      }

      .cta-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 36px;
      }

      .cta-actions .section-link {
        margin-top: 0;
      }

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

      .legal-card {
        display: flex;
        flex-direction: column;
        min-height: 238px;
        transition:
          border-color 180ms ease,
          transform 180ms ease;
      }

      .legal-card:hover {
        border-color: rgba(18, 63, 51, 0.34);
        transform: translateY(-2px);
      }

      .legal-card span {
        margin-top: auto;
        padding-top: 28px;
        color: var(--gold);

        
      }

      .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .faq-item {
        padding: 0;
      }

      .faq-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 78px;
        padding: 0 24px;
        border: 0;
        color: inherit;
        background: transparent;
        text-align: left;
        cursor: pointer;
      }

      .faq-icon {
        display: inline-grid;
        place-items: center;
        width: 36px;
        height: 36px;
        flex: 0 0 auto;
        border: 1px solid rgba(18, 63, 51, 0.2);
        border-radius: 12px;
        color: var(--gold);
        transition: transform 180ms ease;
      }

      .faq-trigger[aria-expanded="true"] .faq-icon {
        transform: rotate(45deg);
      }

      .faq-answer {
        max-width: 840px;
        margin: 0;
        padding: 0 24px 26px;
      }

      .site-footer {
        padding: clamp(62px, 7vw, 92px) var(--edge);
        color: #fff;
        background: var(--dark-deep);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.48fr);
        gap: clamp(32px, 6vw, 84px);
        align-items: start;
      }

      .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 24px;
      }

      .footer-nav a,
      .footer-contact a {
        color: rgba(255, 255, 255, 0.8);

      }

      .footer-contact {
        display: grid;
        gap: 16px;
      }

      .footer-meta {
        margin-top: 46px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
        color: rgba(255, 255, 255, 0.56);

      }

      .footer-meta p {
        margin: 0 0 10px;
      }

      .footer-meta p:last-child {
        margin-bottom: 0;
      }

      .footer-meta strong {
        color: rgba(255, 255, 255, 0.82);

      }

      .cookie-consent {
        position: fixed;
        right: max(18px, env(safe-area-inset-right));
        bottom: max(18px, env(safe-area-inset-bottom));
        z-index: 50;
        width: min(520px, calc(100vw - 36px));
        padding: 20px;
        border: 1px solid rgba(18, 63, 51, 0.2);
        color: var(--ink);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 24px 70px rgba(16, 54, 41, 0.16);
      }

      .cookie-consent[hidden] {
        display: none;
      }

      .cookie-consent p {
        margin: 0;
        color: rgba(17, 24, 33, 0.72);

      }

      .cookie-consent a {
        color: var(--green-deep);
        text-decoration: underline;
        text-underline-offset: 3px;
      }

      .cookie-consent-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
      }

      .cookie-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 16px;
        border: 1px solid rgba(18, 63, 51, 0.68);
        border-radius: 12px;
        color: #fff;
        background: var(--green-deep);

        cursor: pointer;
      }

      .cookie-button-secondary {
        color: var(--green-deep);
        background: rgba(255, 255, 255, 0.5);
      }

      @media (max-width: 1180px) {
        :root {
          --edge: clamp(28px, 5vw, 64px);
        }

        .site-nav {
          gap: 6px;
          margin-right: 16px;

        }

        .header-actions {
          gap: 2px;
        }

        .header-account {
          min-height: 44px;
          padding: 0 15px;

        }

        .hero-shell {
          grid-template-columns: minmax(390px, 0.45fr) minmax(0, 0.55fr);
          column-gap: 24px;
        }

        .hero-left {
          padding-top: clamp(92px, 14vh, 142px);
        }

        .portfolio-section .section-inner {
          width: min(1260px, calc(100% + var(--edge) * 0.7));
          grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
          gap: clamp(18px, 2.8vw, 34px);
        }

        .media-frame-video {
          width: calc(100% + var(--edge) * 0.82);
          margin-right: calc(var(--edge) * -0.82);
        }

      }

      @media (max-width: 900px) {
        :root {
          --edge: 28px;
          --header-h: 72px;
        }

        .hero {
          min-height: 930px;
          overflow: hidden;
        }

        .hero::after {
          display: block;
          background:
            linear-gradient(
              180deg,
              var(--hero-cream) 0%,
              rgba(247, 240, 228, 1) 39%,
              rgba(247, 240, 228, 0.92) 53%,
              rgba(247, 240, 228, 0.28) 72%,
              rgba(247, 240, 228, 0) 100%
            ),
            linear-gradient(90deg, rgba(247, 240, 228, 0.96) 0%, rgba(247, 240, 228, 0.28) 100%);
        }

        .hero-media {
          top: auto;
          height: 48%;
        }

        .site-header {
          position: relative;
          right: 0;
          left: 0;
          margin: 0;
        }

        .site-nav,
        .header-actions {
          display: none;
        }

        .menu-button {
          display: inline-grid;
        }

        .site-header.is-menu-open .mobile-menu {
          display: grid;
        }

        .brand-logo {
          width: 164px;
          height: 50px;
        }

        .hero-shell {
          display: flex;
          flex-direction: column;
          min-height: calc(890px - var(--header-h));
          padding: 56px var(--edge) 42px;
        }

        .hero-video-media {
          inset: auto 0 0 auto;
          width: 145%;
          height: auto;
          max-height: none;
          aspect-ratio: auto;
          object-fit: contain;
          object-position: right bottom;
        }

        .hero-left {
          display: block;
          min-height: 0;
          width: 100%;
          padding: 0;
        }

        .hero-copy {
          width: min(460px, 100%);
        }

        .hero-title .title-bottom {
          margin-top: 8px;
        }

        .hero-subtitle {
          max-width: 310px;
          gap: 15px;
          margin-top: 26px;

          white-space: normal;
        }

        .hero-subtitle::before {
          width: 38px;
        }

        .hero-clarifier {
          max-width: 350px;
          margin-left: 53px;
        }

        .hero-login-link {
          flex-wrap: wrap;
        }

        .access-button {
          width: 282px;
          height: 50px;
          margin-top: 36px;
          padding: 0 22px;

        }

        .portfolio-section .section-inner {
          grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.9fr);
          gap: 16px;
        }

        .media-frame-video {
          width: calc(100% + 18px);
          margin-right: -18px;
        }

      }

      @media (min-width: 761px) and (max-width: 900px) {
        .hero-copy {
          width: min(600px, 100%);
        }

        .hero-subtitle {
          max-width: 460px;
        }

        .hero-clarifier {
          max-width: 420px;
        }

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

        .steps-list li {
          grid-column: span 2;
          min-height: 250px;
        }

        .steps-list li:nth-child(4) {
          grid-column: 2 / span 2;
        }
      }

      @media (max-width: 760px) {
        .hero-subtitle {
          display: block;
          width: 100%;
          max-width: min(460px, 100%);
        }

        .hero-subtitle::before {
          width: 38px;
          margin: 0 0 12px;
        }

        .hero-clarifier {
          width: 100%;
          max-width: min(420px, 100%);
          margin-left: 0;
        }

        .page-section,
        .dark-section,
        .cta-section,
        .site-footer {
          padding-right: var(--edge);
          padding-left: var(--edge);
        }

        .split-grid,
        .partners-grid,
        .footer-grid {
          grid-template-columns: minmax(0, 1fr);
        }

        .section-head {
          display: block;
        }

        .section-head .section-lead {
          width: auto;
          margin-top: 20px;
        }

        .section-title,
        .site-footer h2 {

          overflow-wrap: break-word;
          hyphens: none;
        }

        .portfolio-section .section-inner {
          grid-template-columns: 1fr;
          gap: 22px;
        }

        .portfolio-copy {
          width: 100%;
        }

        .metric-row,
        .feature-grid,
        .legal-grid,
        .steps-list{
          grid-template-columns: 1fr;
        }

        .metric-row {
          gap: 1px;
        }

        .feature-card,
        .legal-card,
        .steps-list li {
          min-height: auto;
        }

        .steps-list li {
          grid-column: auto;
        }

        .steps-list span {
          margin-bottom: 28px;
        }

        .partner-image,
        .partner-image img {
          min-height: 330px;
        }

        .partners-section .partner-image {
          position: static;
          top: auto;
        }

        .media-frame-video {
          width: 100%;
          height: auto;
          min-height: 0;
          margin-right: 0;
          align-self: auto;
          aspect-ratio: 4 / 3;
        }

        .partners-section {
          padding-top: clamp(54px, 14vw, 74px);
          padding-bottom: clamp(54px, 14vw, 74px);
        }

        .partners-section .partner-image,
        .partners-section .partner-image img {
          min-height: 290px;
        }

        .footer-nav {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 560px) {
        :root {
          --edge: 22px;
        }

        .site-header {
          height: 72px;
        }

        .brand-logo {
          width: 154px;
          height: 48px;
        }

        .menu-button {
          margin-right: -5px;
        }

        .hero-shell {
          padding-top: 46px;
          padding-bottom: 34px;
        }

        .hero {
          min-height: 930px;
        }

        .hero-title .title-bottom {
          width: auto;
          transform: none;

        }

        .hero-subtitle {
          max-width: 100%;

        }

        .hero-subtitle::before {
          width: 32px;
          margin-bottom: 10px;
        }

        .hero-clarifier {
          max-width: 100%;

        }

        .access-button {
          width: 100%;

        }

        .hero-login-link {
          width: 100%;
          gap: 5px;

        }

        .mobile-menu {
          width: calc(100vw - var(--edge) * 2);
        }

      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          scroll-behavior: auto !important;
          transition-duration: 0.001ms !important;
          animation-duration: 0.001ms !important;
          animation-iteration-count: 1 !important;
        }
      }

      /* Portal-aligned surfaces: the marketing page keeps its own composition,
         while cards and media use the calmer AGROVELES cabinet shape language. */
      :root {
        --surface: #fffef9;
        --surface-tint: #f1f7ef;
        --surface-warm: #fbf6ee;
        --edge-line: rgba(23, 52, 41, 0.13);
        --shape-card: 16px;
        --shape-panel: 20px;
      }

      .media-frame,
      .wide-image,
      .partner-image,
      .cookie-consent {
        border-radius: var(--shape-panel);
      }

      .media-frame,
      .wide-image,
      .partner-image {
        border: 1px solid var(--edge-line);
      }

      .metric-row {
        gap: 14px;
        border: 0;
        background: transparent;
      }

      .metric-row div {
        border: 1px solid var(--edge-line);
        border-radius: var(--shape-card);
        background: var(--surface);
      }

      .feature-grid,
      .legal-grid {
        gap: 14px;
      }

      .feature-card,
      .legal-card,
      .faq-item,
      .steps-list li {
        border-color: var(--edge-line);
        border-radius: var(--shape-card);
      }

      .feature-card,
      .legal-card,
      .faq-item,
      .steps-list li {
        background: var(--surface);
      }

      .feature-card {
        overflow: hidden;
      }

      .feature-card img {
        border-radius: var(--shape-card) var(--shape-card) 0 0;
      }

      .legal-card:nth-child(even),
      .steps-list li:nth-child(even) {
        background: var(--surface-tint);
      }

      .feature-card:hover,
      .faq-item:hover,
      .legal-card:hover {
        border-color: rgba(47, 123, 78, 0.3);
        background: var(--surface-warm);
        box-shadow: none;
      }

      .steps-list {
        gap: 14px;
        border: 0;
      }

      .steps-list li {
        border: 1px solid var(--edge-line);
      }

      .faq-grid {
        gap: 14px;
      }

      .faq-icon {
        border-radius: 10px;
      }

      @media (max-width: 760px) {
        .metric-row,
        .feature-grid,
        .legal-grid,
        .steps-list{
          gap: 12px;
        }

        .media-frame,
        .wide-image,
        .partner-image {
          border-radius: 18px;
        }
      }

/* Align the supplied landing to one shared content grid. */
:root { --content-width: 1180px; --content-edge: max(var(--edge), calc((100% - var(--content-width)) / 2)); }
.site-header { padding-inline: var(--content-edge); gap: 20px; }
.brand-logo { flex-shrink: 0; }
.brand-logo img { object-position: left center; }
.site-nav { gap: 2px; margin-right: 0; }
.site-nav a { padding-inline: 12px; }
.header-actions { flex-shrink: 0; }
.hero-shell { padding-inline: var(--content-edge); grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
.hero-left { padding-block: 72px; }
.hero-subtitle { max-width: 490px; }
.hero-login-link { display: flex; width: fit-content; }
.section-inner, .footer-inner { width: min(var(--content-width), 100%); }
.portfolio-section .section-inner { width: min(var(--content-width), 100%); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); }
.media-frame-video { width: 100%; margin: 0; min-width: 0; box-shadow: none; }
.media-video-shell { min-height: 100%; }
.media-frame-video .media-fallback, .media-frame-video .media-loop-video { position: absolute; inset: 0; }
.section-title, .site-footer h2 { text-wrap: balance; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 56px); align-items: end; }
.section-head > * { min-width: 0; }
.section-head .section-lead { width: 100%; max-width: 460px; }
.metric-row { gap: 10px; }
.metric-row div { padding: 18px 14px; }
.feature-card img { aspect-ratio: 4 / 3; height: auto; object-fit: cover; }
.steps-list li { padding: 24px 20px; }
.steps-list span, .card-number { margin-bottom: 28px; }
.legal-card span { color: #866012; }
.section-kicker, .hero-kicker { color: #8a621a; }
.dark-section .section-kicker, .cta-section .section-kicker { color: #eaba59; }
.faq-trigger { gap: 18px; padding-block: 18px; }
.faq-question { margin: 0; }
.footer-nav a { padding-block: 8px; }
.cta-content { max-width: var(--content-width); }
.cta-content > .section-title, .cta-content > .section-lead { max-width: 720px; }
.mobile-menu { right: var(--edge); max-height: calc(100svh - var(--header-h) - 24px); overflow-y: auto; }
.mobile-menu[hidden] { display: none !important; }
.menu-button { width: 44px; height: 44px; margin: 0; flex-shrink: 0; }
.cookie-consent { max-height: calc(100svh - 36px); overflow-y: auto; }
@media (max-width: 1180px) {
 .site-nav, .header-actions { display: none; }
 .menu-button { display: inline-grid; }
 .site-header.is-menu-open .mobile-menu { display: grid; }
 .steps-list { grid-template-columns: repeat(6, minmax(0, 1fr)); }
 .steps-list li { grid-column: span 2; min-height: 0; }
 .steps-list li:nth-child(4) { grid-column: 2 / span 2; }
 .metric-row { grid-template-columns: 1fr; }
 .metric-row div { padding: 16px 18px; }
}
@media (max-width: 900px) {
 .hero { min-height: 0; }
 .hero-shell { min-height: 840px; padding-top: 54px; padding-bottom: 310px; }
 .hero-left { padding: 0; }
 .hero-copy { width: min(600px, 100%); }
 .hero-subtitle { max-width: 540px; }
 .hero-media { height: 42%; }
 .hero-video-media { height: 100%; width: 100%; object-fit: cover; object-position: 64% bottom; }
 .hero::after { background: none; }
 .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #f7f0e4 0%, rgba(247,240,228,0) 48%); pointer-events: none; }
 .portfolio-section .section-inner { grid-template-columns: minmax(0, 1fr); }
 .media-frame-video { aspect-ratio: 4 / 3; }
 .partners-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: 28px; }
}
@media (max-width: 760px) {
 .hero-shell { min-height: 770px; padding-top: 42px; padding-bottom: 280px; }
 .hero-clarifier { max-width: 460px; }
 .section-head { grid-template-columns: 1fr; gap: 20px; }
 .section-head .section-lead { margin-top: 0; }
 .partners-grid { grid-template-columns: 1fr; }
 .metric-row { grid-template-columns: 1fr; }
 .steps-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .steps-list li, .steps-list li:nth-child(4) { grid-column: auto; }
 .steps-list li:last-child { grid-column: 1 / -1; }
 .steps-list li { padding: 22px; }
 .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 18px; }
}
@media (max-width: 480px) {
 .steps-list { grid-template-columns: 1fr; }
 .steps-list li { padding: 24px; }
 .hero-shell { min-height: 750px; }
 .hero-media { height: 36%; }
 .hero-video-media { object-position: 64% bottom; }
}
@media (prefers-reduced-motion: reduce) {
 .motion-enabled [data-reveal] { opacity: 1; transform: none; }
}

/* Editorial typography. One family, real supplied weights, and shared reading roles. */
:root {
  --type-display: clamp(2.125rem, 1.55rem + 2.7vw, 4.125rem);
  --type-section: clamp(1.875rem, 1.36rem + 1.52vw, 2.875rem);
  --type-heading: 1.125rem;
  --type-lead: 1.125rem;
  --type-body: 1rem;
  --type-control: 0.9375rem;
  --type-meta: 0.875rem;
  --measure-prose: 68ch;
  --text-muted: #385247;
  --text-on-dark: #c8d5cb;
}

body {
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

h1, h2, h3 {
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}

p {
  text-wrap: pretty;
}

a {
  text-underline-offset: 0.22em;
}

.site-nav,
.header-account {
  font-size: var(--type-meta);
  font-weight: 600;
  line-height: 1.35;
}

.mobile-menu a {
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.hero-title {
  font-size: var(--type-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-title .title-bottom {
  margin-top: 0.08em;
  white-space: normal;
}

.hero-subtitle {
  display: block;
  max-width: 43ch;
  margin-top: 1.5rem;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero-subtitle::before {
  content: none;
}

.hero-clarifier {
  max-width: 55ch;
  margin: 1.125rem 0 0;
  color: var(--text-muted);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.6;
}

.hero-clarifier strong {
  font-weight: 600;
}

.access-button,
.section-link,
.footer-link,
.cookie-button {
  min-height: 3.125rem;
  height: auto;
  padding-block: 0.875rem;
  font-size: var(--type-control);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.access-button {
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.hero-login-link {
  max-width: 100%;
  flex-wrap: wrap;
  column-gap: 0.375rem;
  row-gap: 0.125rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: var(--type-meta);
  font-weight: 400;
  line-height: 1.6;
}

.hero-login-link strong {
  font-weight: 600;
}

.section-title {
  max-width: 24ch;
  font-size: var(--type-section);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.section-lead {
  max-width: var(--measure-prose);
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: var(--type-lead);
  font-weight: 400;
  line-height: 1.6;
}

.dark-section .section-lead,
.cta-section .section-lead,
.site-footer p {
  color: var(--text-on-dark);
  line-height: 1.66;
  letter-spacing: 0.004em;
}

.section-head {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  margin-bottom: clamp(2rem, 3.3vw, 3rem);
}

.section-head .section-lead {
  max-width: 48ch;
}

.feature-card h3,
.legal-card h3,
.steps-list h3,
.faq-question {
  font-size: var(--type-heading);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.feature-card p,
.legal-card p,
.faq-answer,
.steps-list p {
  max-width: var(--measure-prose);
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.6;
}

.metric-row {
  grid-template-columns: minmax(0, 1fr);
  margin-top: 1.75rem;
}

.metric-row div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  align-items: start;
  gap: 1rem;
  min-height: 0;
  padding: 1rem 1.125rem;
}

.metric-row strong {
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1.4;
}

.metric-row span {
  max-width: var(--measure-prose);
  margin-top: 0;
  color: var(--text-muted);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.6;
}

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

.steps-list li {
  grid-column: span 2;
  min-height: 0;
  padding: 1.5rem;
}

.steps-list li:nth-child(4) {
  grid-column: 2 / span 2;
}

.steps-list span {
  margin-bottom: 1.5rem;
  color: #9a6e1b;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.legal-card span {
  padding-top: 1.5rem;
  color: #795410;
  font-size: var(--type-meta);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.faq-question {
  text-wrap: pretty;
}

.faq-answer {
  max-width: 73ch;
  margin-top: 0;
}

.site-footer h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.site-footer .section-lead {
  max-width: 54ch;
  font-size: var(--type-body);
}

.footer-nav a,
.footer-contact a {
  color: var(--text-on-dark);
  font-size: var(--type-control);
  font-weight: 400;
  line-height: 1.5;
}

.footer-meta {
  max-width: 110ch;
  color: var(--text-on-dark);
  font-size: var(--type-meta);
  font-weight: 400;
  line-height: 1.65;
}

.footer-meta strong {
  font-weight: 600;
}

.cookie-consent p {
  color: var(--text-muted);
  font-size: var(--type-meta);
  font-weight: 400;
  line-height: 1.6;
}

.page-section,
.dark-section {
  padding-block: clamp(4rem, 6.5vw, 6rem);
}

@media (max-width: 760px) {
  .hero-subtitle {
    font-size: var(--type-lead);
    line-height: 1.55;
  }

  .section-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

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

  .steps-list li,
  .steps-list li:nth-child(4) {
    grid-column: auto;
  }

  .steps-list li:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .steps-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .metric-row div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }

  .section-lead {
    font-size: var(--type-body);
  }
}

/* Crop the new editorial photographs without depending on intrinsic image height. */
.wide-image {
  min-height: 0;
  aspect-ratio: 5 / 2;
}

.wide-image img {
  min-height: 0;
  object-fit: cover;
}

.partners-section .partner-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.partners-section .partner-image img {
  display: block;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

@media (max-width: 760px) {
  .wide-image,
  .partners-section .partner-image {
    aspect-ratio: 4 / 3;
  }
}

/* A single participation sequence; scoped to this section only. */
#steps {
  --steps-gap: clamp(1.25rem, 2vw, 2rem);
  --steps-surface: #fffaf1;
  --steps-line: rgba(20, 55, 42, 0.24);
}

#steps .section-head {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

#steps .section-title {
  max-width: none;
}

#steps .section-head .section-lead {
  max-width: 42ch;
}

#steps .steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: var(--steps-gap);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  list-style: none;
}

#steps .steps-list::before {
  position: absolute;
  top: 0.8125rem;
  right: calc((100% - var(--steps-gap) * 4) / 5);
  left: 0;
  height: 1px;
  background: var(--steps-line);
  content: "";
}

#steps .steps-list > li {
  position: relative;
  display: grid;
  grid-column: auto;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#steps .steps-list > li > span {
  position: relative;
  justify-self: start;
  margin: 0 0 1.5rem;
  padding: 0 0.875rem 0 0;
  color: #9a6e1b;
  background: var(--steps-surface);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

#steps .steps-list h3 {
  min-height: 2.8em;
  margin: 0;
  color: var(--green-deep);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

#steps .steps-list p {
  margin: 0.625rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  text-wrap: pretty;
}

#steps .section-inner > .section-link {
  margin-top: 2.5rem;
}

@media (max-width: 1099px) {
  #steps .section-head {
    margin-bottom: 2.5rem;
  }

  #steps .steps-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  #steps .steps-list::before {
    content: none;
  }

  #steps .steps-list > li {
    grid-template-columns: 2rem minmax(12rem, 0.9fr) minmax(0, 1.6fr);
    column-gap: 1.75rem;
    padding-bottom: 1.875rem;
  }

  #steps .steps-list > li:not(:last-child)::before {
    position: absolute;
    top: 2rem;
    bottom: 0.5rem;
    left: 0.75rem;
    width: 1px;
    background: var(--steps-line);
    content: "";
  }

  #steps .steps-list > li:last-child {
    padding-bottom: 0;
  }

  #steps .steps-list > li > span {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  #steps .steps-list h3 {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    text-wrap: pretty;
  }

  #steps .steps-list p {
    grid-column: 3;
    grid-row: 1;
    max-width: 54ch;
    margin: 0;
  }
}

@media (max-width: 760px) {
  #steps .section-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  #steps .steps-list > li {
    grid-template-columns: 2rem minmax(0, 1fr);
    column-gap: 0.875rem;
    row-gap: 0.5rem;
    padding-bottom: 1.75rem;
  }

  #steps .steps-list > li > span {
    grid-row: 1 / span 2;
  }

  #steps .steps-list p {
    grid-column: 2;
    grid-row: 2;
  }

  #steps .section-inner > .section-link {
    margin-top: 2rem;
  }
}


/* Compact project terms, participants, and goods flow. */
#terms .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

#terms .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 1.25rem;
  margin: 0;
}

#terms .section-head .section-lead {
  max-width: 45ch;
  margin: 0;
}

#terms .terms-list {
  min-width: 0;
  margin: 0;
}

#terms .term-row {
  display: grid;
  grid-template-columns: minmax(0, 0.33fr) minmax(0, 0.67fr);
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.125rem 0;
  border-top: 1px solid var(--line);
}

#terms .term-row:last-child {
  border-bottom: 1px solid var(--line);
}

#terms .term-row dt {
  min-width: 0;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

#terms .term-row dd {
  min-width: 0;
  max-width: 68ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  text-wrap: pretty;
}

#partners .partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

#partners .partner-item {
  min-width: 0;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#partners .partner-item h3,
#deal-flow .flow-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

#partners .partner-item p,
#deal-flow .flow-card p {
  max-width: 68ch;
  margin: 0.625rem 0 0;
  color: var(--text-on-dark);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0.004em;
  text-wrap: pretty;
}

#deal-flow .flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin: 0;
}

#deal-flow .flow-card {
  min-width: 0;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  #terms .section-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  #terms .section-head .section-lead {
    max-width: 62ch;
  }

  #partners .partners-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  #partners .partner-image {
    position: static;
    aspect-ratio: 8 / 5;
    max-height: 24rem;
  }

  #partners .partner-image img {
    object-position: center 60%;
  }
}

@media (max-width: 760px) {
  #deal-flow .flow-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  #terms .term-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    padding-block: 1rem;
  }

  #partners .partner-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}
