@font-face {
        font-family: "Cormorant Garamond";
        src: url("./assets/fonts/cormorant-garamond-300.ttf") format("truetype");
        font-style: normal;
        font-weight: 300;
        font-display: block;
      }

      @font-face {
        font-family: "Cormorant Garamond";
        src: url("./assets/fonts/cormorant-garamond-400.ttf") format("truetype");
        font-style: normal;
        font-weight: 400;
        font-display: block;
      }

      @font-face {
        font-family: "Manrope";
        src: url("./assets/fonts/manrope-400.ttf") format("truetype");
        font-style: normal;
        font-weight: 400;
        font-display: block;
      }

      @font-face {
        font-family: "Manrope";
        src: url("./assets/fonts/manrope-500.ttf") format("truetype");
        font-style: normal;
        font-weight: 500;
        font-display: block;
      }

      @font-face {
        font-family: "Manrope";
        src: url("./assets/fonts/manrope-600.ttf") format("truetype");
        font-style: normal;
        font-weight: 600;
        font-display: block;
      }

      :root {
        --page: #fff;
        --ink: #111821;
        --green: #123f33;
        --green-deep: #103629;
        --line: rgba(17, 24, 33, 0.22);
        --muted: #1d2429;
        --gold: #b49a55;
        --paper: #f8f6ef;
        --paper-strong: #efe7d7;
        --dark: #0d2e25;
        --dark-deep: #071d18;
        --soft-line: rgba(18, 63, 51, 0.15);
        --hero-cream: #fffef9;
        --hero-pill: rgba(247, 239, 225, 0.72);
        --hero-pill-line: rgba(23, 52, 41, 0.09);
        --hero-gold-strong: #c99335;
        --hero-button-green: #081d14;
        --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
        --ui: "Manrope", Arial, 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%;
      }

      body {
        min-height: 100%;
        margin: 0;
        background: var(--page);
        color: var(--ink);
        font-family: var(--ui);
        letter-spacing: 0;
        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: var(--page);
        background: var(--dark);
      }

      a:focus-visible,
      button:focus-visible {
        outline: 2px solid var(--hero-gold-strong);
        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(255, 254, 249, 0.98) 9%, rgba(255, 254, 249, 0) 24%),
          linear-gradient(
            90deg,
            var(--hero-cream) 0%,
            rgba(255, 254, 249, 0.99) 30%,
            rgba(255, 254, 249, 0.84) 45%,
            rgba(255, 254, 249, 0.28) 63%,
            rgba(255, 254, 249, 0) 78%
          );
        content: "";
        pointer-events: none;
      }

      .site-header {
        position: absolute;
        z-index: 10;
        top: 0;
        right: var(--edge);
        left: var(--edge);
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: var(--header-h);
        border-bottom: 1px solid rgba(180, 154, 85, 0.2);
      }

      .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: #121a22;
        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(23, 52, 41, 0.92);
        background: var(--hero-pill);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1;
        text-transform: none;
      }

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

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

      .site-nav a:hover {
        color: var(--green-deep);
        background: rgba(201, 147, 53, 0.14);
      }

      .header-actions {
        display: inline-flex;
        align-items: center;
        gap: 2px;
        padding: 4px;
        border: 1px solid rgba(23, 52, 41, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.46);
      }

      .header-account {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 0 13px;
        border: 0;
        border-radius: 999px;
        color: var(--green-deep);
        background: transparent;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1;
        text-transform: none;
        transition:
          background 180ms ease,
          transform 180ms ease;
      }

      .header-account:hover {
        background: rgba(201, 147, 53, 0.12);
        transform: translateY(-1px);
      }

      .header-account-primary {
        color: #9a6a1e;
      }

      .header-account-primary::after {
        margin-left: 7px;
        color: var(--hero-gold-strong);
        content: "↗";
        font-size: 12px;
      }

      .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(18, 63, 51, 0.16);
        background: #fff;
        box-shadow: 0 22px 60px rgba(16, 54, 41, 0.12);
      }

      .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);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .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-title {
        margin: 0;
        font-family: var(--serif);
        font-size: clamp(86px, 8.35vw, 132px);
        font-weight: 300;
        line-height: 0.75;
        letter-spacing: 0;
      }

      .hero-title span {
        display: block;
      }

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

      .hero-title .title-bottom {
        width: max-content;
        margin-top: 11px;
        color: var(--green);
        transform: scaleX(1.05);
        transform-origin: left top;
      }

      .hero-subtitle {
        display: flex;
        align-items: center;
        gap: 23px;
        margin: 34px 0 0;
        color: rgba(23, 52, 41, 0.9);
        font-size: clamp(21px, 1.55vw, 25px);
        font-weight: 400;
        line-height: 1.2;
        white-space: nowrap;
      }

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

      .hero-clarifier {
        max-width: 430px;
        margin: 20px 0 0 71px;
        color: rgba(23, 52, 41, 0.72);
        font-size: 13px;
        font-weight: 500;
        line-height: 1.65;
      }

      .hero-clarifier strong {
        color: var(--green-deep);
        font-weight: 600;
      }

      .access-button {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 313px;
        height: 64px;
        margin-top: 47px;
        padding: 0 30px 0 34px;
        border: 1px solid var(--hero-button-green);
        color: #fff;
        background: var(--hero-button-green);
        font-size: 13px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        box-shadow: 0 22px 50px rgba(8, 29, 20, 0.16);
        transition:
          background 180ms ease,
          border-color 180ms ease,
          transform 180ms ease;
      }

      .access-button svg {
        width: 23px;
        height: 13px;
        flex: 0 0 auto;
        color: var(--gold);
      }

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

      .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: #fff;
      }

      .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);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.24em;
        line-height: 1.1;
        text-transform: uppercase;
      }

      .section-title,
      .site-footer h2 {
        max-width: 820px;
        margin: 0;
        color: var(--green);
        font-family: var(--serif);
        font-size: clamp(45px, 5.1vw, 76px);
        font-weight: 300;
        line-height: 0.94;
        letter-spacing: 0;
      }

      .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);
        font-size: clamp(17px, 1.35vw, 20px);
        line-height: 1.68;
      }

      .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);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.35;
      }

      .metric-row span {
        display: block;
        margin-top: 8px;
        color: rgba(17, 24, 33, 0.58);
        font-size: 13px;
        line-height: 1.45;
      }

      .section-link,
      .footer-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        margin-top: 36px;
        padding: 0 24px;
        border: 1px solid rgba(18, 63, 51, 0.66);
        color: var(--green-deep);
        background: rgba(255, 255, 255, 0.55);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-align: center;
        text-transform: uppercase;
        transition:
          background 180ms ease,
          transform 180ms ease;
      }

      .dark-section .section-link,
      .cta-section .section-link,
      .footer-link {
        border-color: rgba(255, 255, 255, 0.58);
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
      }

      .section-link:hover,
      .footer-link:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
      }

      .dark-section .section-link:hover,
      .cta-section .section-link:hover,
      .footer-link:hover {
        background: rgba(255, 255, 255, 0.14);
      }

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

      .feature-card,
      .terms-card,
      .flow-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,
      .terms-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,
      .terms-card,
      .flow-card,
      .legal-card,
      .faq-item {
        padding: 24px;
      }

      .feature-card h3,
      .terms-card h3,
      .flow-card h3,
      .legal-card h3,
      .faq-question {
        margin: 0;
        color: var(--green-deep);
        font-size: 18px;
        font-weight: 600;
        line-height: 1.28;
      }

      .feature-card p,
      .terms-card p,
      .flow-card p,
      .legal-card p,
      .faq-answer,
      .steps-list p {
        margin: 13px 0 0;
        color: rgba(17, 24, 33, 0.65);
        font-size: 15px;
        line-height: 1.62;
      }

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

      .terms-card {
        min-height: 236px;
      }

      .card-number {
        display: block;
        margin-bottom: 28px;
        color: var(--gold);
        font-family: var(--serif);
        font-size: 36px;
        font-weight: 300;
        line-height: 0.9;
      }

      .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;
      }

      .partner-summary {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 28px;
      }

      .partner-summary-item {
        padding: 18px 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.03);
      }

      .partner-summary-label {
        display: block;
        color: rgba(212, 183, 104, 0.96);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .partner-summary-text {
        display: block;
        margin-top: 10px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 14px;
        line-height: 1.6;
      }

      .partner-list,
      .flow-grid {
        display: grid;
        gap: 14px;
      }

      .partners-section .partner-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 26px;
      }

      .partner-item,
      .dark-section .flow-card {
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.05);
      }

      .partner-item {
        display: flex;
        flex-direction: column;
        min-height: 196px;
        padding: 24px;
        transition:
          transform 220ms ease,
          border-color 220ms ease,
          background 220ms ease;
      }

      .partner-badge {
        display: block;
        color: var(--gold);
        font-family: var(--serif);
        font-size: 32px;
        font-weight: 300;
        line-height: 0.9;
      }

      .partner-item:hover,
      .dark-section .flow-card:hover {
        border-color: rgba(255, 255, 255, 0.26);
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
      }

      .partner-item h3,
      .dark-section .flow-card h3 {
        margin: 22px 0 0;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.3;
      }

      .partner-item p,
      .dark-section .flow-card p {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.74);
        font-size: 15px;
        line-height: 1.6;
      }

      .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(--serif);
        font-size: 42px;
        font-weight: 300;
        line-height: 0.9;
      }

      .steps-list h3 {
        margin: 0;
        color: var(--green-deep);
        font-size: 18px;
        font-weight: 600;
        line-height: 1.28;
      }

      .flow-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 40px;
      }

      .dark-section .flow-card {
        min-height: 250px;
      }

      .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;
      }

      .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);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .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);
        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);
        font-size: 14px;
        line-height: 1.5;
      }

      .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);
        font-size: 13px;
        line-height: 1.6;
      }

      .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);
        font-weight: 600;
      }

      .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);
        font-size: 13px;
        line-height: 1.55;
      }

      .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: 40px;
        padding: 0 16px;
        border: 1px solid rgba(18, 63, 51, 0.68);
        color: #fff;
        background: var(--green-deep);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        line-height: 1;
        text-transform: uppercase;
        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;
          font-size: 14px;
        }

        .header-actions {
          gap: 2px;
        }

        .header-account {
          min-height: 32px;
          padding: 0 11px;
          font-size: 12px;
        }

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

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

        .hero-title {
          font-size: clamp(78px, 8.4vw, 104px);
        }

        .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,
              #fff 0%,
              rgba(255, 255, 255, 1) 39%,
              rgba(255, 255, 255, 0.92) 53%,
              rgba(255, 255, 255, 0.28) 72%,
              rgba(255, 255, 255, 0) 100%
            ),
            linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.28) 100%);
        }

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

        .site-header {
          position: relative;
          right: auto;
          left: auto;
          margin: 0 var(--edge);
        }

        .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 {
          font-size: clamp(74px, 17.4vw, 104px);
          line-height: 0.82;
        }

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

        .hero-subtitle {
          max-width: 310px;
          gap: 15px;
          margin-top: 26px;
          font-size: 19px;
          line-height: 1.28;
          white-space: normal;
        }

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

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

        .access-button {
          width: 282px;
          height: 60px;
          margin-top: 42px;
          padding: 0 22px 0 28px;
          font-size: 12px;
          letter-spacing: 0.24em;
        }

        .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 (max-width: 760px) {
        .page-section,
        .dark-section,
        .cta-section,
        .site-footer {
          padding-top: 64px;
          padding-bottom: 64px;
          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 {
          font-size: clamp(38px, 11.2vw, 52px);
          overflow-wrap: break-word;
          hyphens: none;
        }

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

        .portfolio-copy {
          width: 100%;
        }

        .metric-row,
        .feature-grid,
        .terms-grid,
        .flow-grid,
        .legal-grid,
        .steps-list,
        .partner-summary,
        .partners-section .partner-list {
          grid-template-columns: 1fr;
        }

        .metric-row {
          gap: 1px;
        }

        .feature-card,
        .terms-card,
        .dark-section .flow-card,
        .legal-card,
        .steps-list li {
          min-height: 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 {
          font-size: clamp(64px, 20vw, 86px);
        }

        .hero-subtitle {
          max-width: 280px;
          font-size: 17px;
        }

        .hero-clarifier {
          max-width: 292px;
          margin-left: 0;
          font-size: 12px;
        }

        .access-button {
          width: min(100%, 282px);
          letter-spacing: 0.26em;
        }

        .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;
        }
      }
    