:root {
        --ink: #051a10;
        --deep: #032d1a;
        --line: rgba(236, 255, 208, 0.52);
        --lime: #c8ff3d;
        --paper: #f4ffca;
        --soft: #d7ecbc;
      }

      * { box-sizing: border-box; }

      html { scroll-behavior: smooth; }

      body {
        margin: 0;
        min-width: 280px;
        overflow-x: hidden;
        color: var(--paper);
        background: var(--deep);
        font-family: "Manrope", Arial, sans-serif;
      }

      button,
      a { -webkit-tap-highlight-color: transparent; }

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

      .site-header {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        border-top: 4px solid var(--lime);
        background: rgba(0, 37, 20, 0.82);
        backdrop-filter: blur(16px);
      }

      .header-inner {
        display: flex;
        min-height: 86px;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        width: min(100% - 7.2vw, 1510px);
        margin: 0 auto;
      }

      .brand {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        gap: 10px;
        font-family: "DM Mono", monospace;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.19em;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        overflow: hidden;
        border: 1px solid rgba(200, 255, 61, 0.72);
        border-radius: 50%;
        background: #06421f;
        box-shadow: 0 0 0 3px rgba(200, 255, 61, 0.12);
      }

      .brand-mark img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .desktop-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(20px, 2.8vw, 55px);
        color: #f2ffde;
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.01em;
      }

      .desktop-nav a {
        position: relative;
        padding: 8px 0;
      }

      .desktop-nav a::after {
        position: absolute;
        right: 0;
        bottom: 3px;
        left: 0;
        height: 2px;
        content: "";
        background: var(--lime);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 200ms ease;
      }

      .desktop-nav a:hover::after,
      .desktop-nav a:focus-visible::after {
        transform: scaleX(1);
        transform-origin: left;
      }

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

      .round-control {
        display: grid;
        width: 36px;
        height: 36px;
        place-items: center;
        border: 1px solid rgba(241, 255, 220, 0.55);
        border-radius: 50%;
        color: var(--paper);
        font-family: "DM Mono", monospace;
        font-size: 0.75rem;
        transition: background 180ms ease, color 180ms ease, transform 180ms ease;
      }

      .round-control:hover {
        color: var(--ink);
        background: var(--paper);
        transform: translateY(-2px);
      }

      .nav-cta,
      .hero-cta,
      .panel-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        border-radius: 999px;
        font-family: "DM Mono", monospace;
        font-weight: 500;
        letter-spacing: 0.035em;
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      }

      .nav-cta {
        min-height: 42px;
        padding: 0 18px;
        border: 1px solid var(--lime);
        color: var(--ink);
        background: var(--lime);
        font-size: 0.72rem;
      }

      .nav-cta:hover,
      .hero-cta:hover,
      .panel-cta:hover {
        box-shadow: 0 10px 28px rgba(3, 25, 12, 0.22);
        transform: translateY(-3px);
      }

      .menu-toggle { display: none; }

      .hero {
        position: relative;
        display: grid;
        min-height: 870px;
        min-height: max(760px, 100svh);
        overflow: clip;
        isolation: isolate;
        background: #0a782e url("../assets/green-hill.png") center right / cover no-repeat;
      }

      .hero-video {
        position: absolute;
        z-index: -2;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        pointer-events: none;
      }

      .hero::before {
        position: absolute;
        z-index: -1;
        inset: 0;
        content: "";
        background: linear-gradient(90deg, rgba(0, 38, 17, 0.91) 0%, rgba(0, 61, 24, 0.75) 33%, rgba(0, 91, 30, 0.22) 57%, rgba(0, 65, 24, 0.02) 100%);
      }

      .hero::after {
        display: none;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: center;
        width: min(87vw, 720px);
        margin: 90px 0 94px clamp(24px, 5.3vw, 104px);
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 23px;
        color: var(--lime);
        font-family: "DM Mono", monospace;
        font-size: 0.74rem;
        font-weight: 500;
        letter-spacing: 0.11em;
        text-transform: uppercase;
      }

      .eyebrow::before {
        width: 8px;
        height: 8px;
        content: "";
        border-radius: 50%;
        background: var(--lime);
        box-shadow: 0 0 0 6px rgba(200, 255, 61, 0.16);
      }

      h1,
      h2,
      p { margin: 0; }

      h1 {
        max-width: 760px;
        color: #fbfff3;
        font-size: clamp(3.25rem, 6.35vw, 7.55rem);
        font-weight: 500;
        letter-spacing: -0.078em;
        line-height: 0.91;
      }

      h1 em {
        color: var(--lime);
        font-style: normal;
      }

      .hero-copy {
        max-width: 515px;
        margin-top: 28px;
        color: #d9efc9;
        font-size: clamp(0.98rem, 1.25vw, 1.16rem);
        font-weight: 500;
        line-height: 1.55;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 11px;
        margin-top: 36px;
      }

      .hero-cta {
        min-height: 54px;
        padding: 0 23px;
        color: var(--ink);
        background: #f5ffd7;
        font-size: 0.78rem;
      }

      .hero-note {
        min-height: 54px;
        padding: 0 19px;
        border: 1px solid var(--line);
        border-radius: 999px;
        color: #eefed7;
        font-family: "DM Mono", monospace;
        font-size: clamp(0.65rem, 0.85vw, 0.73rem);
        letter-spacing: 0.025em;
        display: flex;
        align-items: center;
      }

      .copy-ca {
        display: inline-flex;
        min-height: 54px;
        align-items: center;
        gap: 8px;
        max-width: 100%;
        padding: 0 16px;
        border: 1px solid var(--line);
        border-radius: 999px;
        color: #eefed7;
        background: rgba(0, 43, 18, 0.36);
        font-family: "DM Mono", monospace;
        font-size: 0.7rem;
        letter-spacing: 0.025em;
        cursor: pointer;
        transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
      }

      .copy-ca:hover,
      .copy-ca:focus-visible {
        border-color: var(--lime);
        color: var(--ink);
        background: var(--lime);
        outline: none;
        transform: translateY(-3px);
      }

      .copy-ca.is-copied {
        border-color: var(--lime);
        color: var(--ink);
        background: var(--lime);
      }

      .copy-ca__label {
        color: var(--lime);
        font-size: 0.64rem;
        font-weight: 500;
        letter-spacing: 0.1em;
      }

      .copy-ca:hover .copy-ca__label,
      .copy-ca:focus-visible .copy-ca__label,
      .copy-ca.is-copied .copy-ca__label { color: inherit; }

      .copy-ca__value {
        overflow: hidden;
        max-width: 21ch;
        white-space: nowrap;
        text-overflow: ellipsis;
      }

      .copy-ca__action {
        padding-left: 8px;
        border-left: 1px solid currentColor;
        font-size: 0.62rem;
        font-weight: 500;
        letter-spacing: 0.08em;
      }

      .down-cue {
        position: absolute;
        right: clamp(26px, 5.3vw, 104px);
        bottom: 42px;
        display: flex;
        align-items: center;
        gap: 13px;
        color: rgba(249, 255, 238, 0.76);
        font-family: "DM Mono", monospace;
        font-size: 0.68rem;
        letter-spacing: 0.1em;
      }

      .down-cue span {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        border: 1px solid rgba(249, 255, 238, 0.48);
        border-radius: 50%;
        font-size: 1rem;
        animation: bob 1.8s ease-in-out infinite;
      }

      .ticker {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        min-height: 52px;
        overflow: hidden;
        align-items: center;
        border-top: 1px solid rgba(236, 255, 208, 0.27);
        background: rgba(1, 31, 14, 0.68);
        backdrop-filter: blur(9px);
      }

      .ticker-track {
        display: flex;
        width: max-content;
        align-items: center;
        gap: 27px;
        padding-left: 27px;
        color: #efffd9;
        font-family: "DM Mono", monospace;
        font-size: 0.66rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        animation: crawl 24s linear infinite;
      }

      .ticker-track b {
        color: var(--lime);
        font-size: 0.86rem;
      }

      .gateway {
        position: relative;
        overflow: hidden;
        padding: clamp(86px, 11vw, 175px) clamp(18px, 5.3vw, 104px) clamp(92px, 12vw, 175px);
        background-color: #032714;
        background-image: radial-gradient(circle at 85% 15%, rgba(147, 255, 40, 0.19), transparent 27%), radial-gradient(circle at 14% 80%, rgba(42, 212, 78, 0.15), transparent 33%);
      }

      .gateway::before {
        position: absolute;
        inset: 0;
        pointer-events: none;
        content: "";
        opacity: 0.18;
        background-image: linear-gradient(rgba(233, 255, 199, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(233, 255, 199, 0.14) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
      }

      .gateway-inner {
        position: relative;
        width: min(100%, 1360px);
        margin: 0 auto;
      }

      .gateway-heading {
        max-width: 935px;
        margin: 0 auto 53px;
        color: #f8ffe9;
        font-size: clamp(2.9rem, 6vw, 6.5rem);
        font-weight: 500;
        letter-spacing: -0.075em;
        line-height: 0.93;
        text-align: center;
      }

      .gateway-heading span { color: var(--lime); }

      .gateway-shell {
        overflow: hidden;
        border: 1px solid rgba(238, 255, 206, 0.5);
        border-radius: 28px;
        background: rgba(0, 36, 18, 0.7);
        box-shadow: 0 35px 90px rgba(0, 12, 5, 0.33);
      }

      .gateway-tabs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 19px;
        border-bottom: 1px solid rgba(238, 255, 206, 0.24);
      }

      .gateway-tabs button {
        min-height: 54px;
        border: 1px solid rgba(238, 255, 206, 0.45);
        border-radius: 999px;
        color: #effbdc;
        background: transparent;
        font-family: "DM Mono", monospace;
        font-size: 0.78rem;
        letter-spacing: 0.04em;
        cursor: pointer;
        transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
      }

      .gateway-tabs button:hover { transform: translateY(-2px); }

      .gateway-tabs button[aria-selected="true"] {
        border-color: var(--lime);
        color: var(--ink);
        background: var(--lime);
      }

      .gateway-panel {
        display: grid;
        min-height: 420px;
        grid-template-columns: minmax(0, 0.97fr) minmax(320px, 0.74fr);
        align-items: stretch;
      }

      .gateway-copy {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: clamp(31px, 5.2vw, 77px);
      }

      .gateway-kicker {
        margin-bottom: 17px;
        color: var(--lime);
        font-family: "DM Mono", monospace;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .gateway-copy h2 {
        max-width: 540px;
        color: #f8ffec;
        font-size: clamp(2.1rem, 4.25vw, 4.15rem);
        font-weight: 500;
        letter-spacing: -0.07em;
        line-height: 0.98;
      }

      .gateway-copy p {
        max-width: 510px;
        margin-top: 20px;
        color: var(--soft);
        font-size: 1rem;
        line-height: 1.62;
      }

      .panel-cta {
        min-height: 50px;
        margin-top: 29px;
        padding: 0 19px;
        border: 1px solid var(--line);
        color: #f5ffe4;
        background: transparent;
        font-size: 0.73rem;
      }

      .gateway-art {
        position: relative;
        min-height: 350px;
        overflow: hidden;
        border-left: 1px solid rgba(238, 255, 206, 0.24);
        background: #063a20;
      }

      .gateway-art::before {
        position: absolute;
        z-index: 1;
        top: 32px;
        left: 31px;
        width: 94px;
        height: 94px;
        content: "";
        border: 1px solid rgba(222, 255, 142, 0.44);
        border-radius: 50%;
        box-shadow: 0 0 0 25px rgba(183, 255, 46, 0.06), 0 0 0 51px rgba(183, 255, 46, 0.04);
      }

      .gateway-art::after {
        position: absolute;
        z-index: 1;
        right: 33px;
        bottom: 32px;
        left: 33px;
        height: 1px;
        content: "";
        background: rgba(223, 255, 174, 0.44);
      }

      .gateway-art img {
        position: absolute;
        right: -1px;
        bottom: -17%;
        width: min(112%, 560px);
        max-width: none;
        filter: saturate(1.14) contrast(1.04);
        mix-blend-mode: screen;
        opacity: 0.99;
        transform: rotate(-5deg);
      }

      .art-caption {
        position: absolute;
        z-index: 2;
        right: 34px;
        bottom: 54px;
        left: 34px;
        display: flex;
        justify-content: space-between;
        color: #efffdc;
        font-family: "DM Mono", monospace;
        font-size: 0.63rem;
        letter-spacing: 0.1em;
      }

      .art-caption strong { color: var(--lime); font-weight: 500; }

      @keyframes crawl {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
      }

      @keyframes bob {
        50% { transform: translateY(5px); }
      }

      @media (max-width: 1030px) {
        .desktop-nav { gap: 21px; }
        .desktop-nav a:nth-child(4) { display: none; }
        .header-inner { width: min(100% - 40px, 1510px); }
      }

      @media (max-width: 760px) {
        .site-header { position: absolute; }

        .header-inner {
          position: relative;
          min-height: 72px;
          gap: 12px;
          width: min(100% - 32px, 600px);
        }

        .brand { font-size: 0.9rem; }
        .brand-mark { width: 34px; height: 34px; }
        .desktop-nav { display: none; }
        .header-actions .round-control { display: none; }
        .nav-cta { min-height: 37px; padding: 0 12px; font-size: 0.64rem; }

        .menu-toggle {
          display: grid;
          width: 38px;
          height: 38px;
          place-items: center;
          padding: 0;
          border: 1px solid rgba(241, 255, 220, 0.55);
          border-radius: 50%;
          color: var(--paper);
          background: transparent;
          cursor: pointer;
        }

        .menu-toggle svg { width: 17px; height: 17px; }

        .mobile-menu {
          position: absolute;
          top: calc(100% + 10px);
          right: 0;
          left: 0;
          display: grid;
          gap: 3px;
          padding: 10px;
          border: 1px solid rgba(241, 255, 220, 0.25);
          border-radius: 18px;
          background: rgba(0, 36, 18, 0.96);
          box-shadow: 0 18px 45px rgba(0, 13, 5, 0.33);
          opacity: 0;
          pointer-events: none;
          transform: translateY(-8px);
          transition: opacity 160ms ease, transform 160ms ease;
        }

        .mobile-menu a {
          padding: 13px;
          border-radius: 10px;
          color: #f0ffdc;
          font-family: "DM Mono", monospace;
          font-size: 0.75rem;
        }

        .mobile-menu a:hover { color: var(--ink); background: var(--lime); }
        .site-header.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }

        .hero {
          min-height: 720px;
          min-height: max(680px, 100svh);
        }

        .hero-video { object-position: 65% center; }
        .hero::before { background: linear-gradient(90deg, rgba(0, 38, 17, 0.91), rgba(0, 57, 23, 0.69) 58%, rgba(0, 80, 28, 0.11)); }

        .hero-content {
          width: min(100% - 34px, 600px);
          margin: 111px auto 102px;
        }

        .eyebrow { margin-bottom: 18px; font-size: 0.64rem; }
        h1 { font-size: clamp(3rem, 14.5vw, 5.3rem); letter-spacing: -0.09em; }
        .hero-copy { margin-top: 22px; font-size: 0.97rem; }
        .hero-actions { margin-top: 28px; }
        .hero-cta { min-height: 50px; padding: 0 17px; font-size: 0.7rem; }
        .hero-note { display: flex; align-items: center; min-height: 50px; padding: 0 15px; }
        .copy-ca { min-height: 50px; font-size: 0.64rem; }
        .down-cue { display: none; }
        .ticker { min-height: 46px; }

        .gateway { padding: 84px 16px 96px; }
        .gateway-heading { margin-bottom: 35px; font-size: clamp(2.8rem, 13vw, 4.6rem); }
        .gateway-shell { border-radius: 22px; }
        .gateway-tabs { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px; }
        .gateway-tabs button { min-height: 46px; font-size: 0.68rem; }
        .gateway-panel { grid-template-columns: 1fr; }
        .gateway-copy { min-height: 370px; padding: 36px 27px 44px; }
        .gateway-copy h2 { font-size: clamp(2.25rem, 11.5vw, 3.75rem); }
        .gateway-copy p { font-size: 0.95rem; }
        .gateway-art { min-height: 330px; border-top: 1px solid rgba(238, 255, 206, 0.24); border-left: 0; }
        .gateway-art img { right: -18%; bottom: -38%; width: min(118%, 470px); }
      }

      @media (min-width: 761px) { .mobile-menu { display: none; } }

      @media (max-width: 390px) {
        .brand span { display: none; }
        .header-inner { width: min(100% - 22px, 600px); }
        .nav-cta { padding: 0 10px; }
        .hero-content { width: min(100% - 24px, 600px); }
        .hero-note { width: 100%; justify-content: center; }
        .copy-ca { width: 100%; justify-content: center; padding-inline: 12px; }
        .gateway-copy { padding-inline: 22px; }
      }

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