:root {
    --bg: #000000;
    --bg-1: #0a0b0d;
    --bg-2: #111316;
    --panel: #15181c;
    --panel-2: #1a1d22;
    --line: rgba(255, 255, 255, 0.08);
    --line-2: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.75);
    --muted-2: rgba(123, 130, 144, 0.75);
    --green: #0bd994;
    --green-bright: #1fd47a;
    --green-soft: rgba(21, 193, 107, 0.14);
    --green-card: #0c5a3a;
    --green-card-2: #0a4c31;
    --danger: #ff6c6c;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 22px;
    --nav-h: 60px;
    --nav-banner-h: 36px;
    --faq-sticky-top: calc(var(--nav-h) + var(--nav-banner-h) + 8px);
    --container: 1350px;
  }

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

  html,
  body {
    background: var(--bg);
    color: var(--text);
    font-family:
      "Inter",
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      "Helvetica Neue",
      Arial,
      sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  @supports (overflow-x: clip) {
    @media (hover: hover) and (pointer: fine) {
      html,
      body {
        overflow-x: clip;
      }
    }
  }

  .steps-grid,
  .team-carousel,
  .battery-cards,
  .fleet-carousel,
  .nairobi-advantages {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  @media (hover: none), (pointer: coarse) {
    .steps-grid,
    .team-carousel,
    .battery-cards,
    .fleet-carousel,
    .nairobi-advantages {
      touch-action: auto;
    }
    .steps-grid,
    .team-carousel,
    .battery-cards,
    .fleet-carousel {
      touch-action: pan-y;
      -webkit-user-select: none;
      user-select: none;
    }
  }

  html.modal-open,
  body.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  img {
    max-width: 100%;
    display: block;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  button {
    font-family: inherit;
    cursor: pointer;
  }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===== Nav ===== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--nav-h);
    background: rgba(24, 29, 33, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .nav-inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
  }
  .nav-brand img {
    height: auto;
    width: auto;
  }
  .nav-links {
    display: flex;
    justify-content: center;
    gap: 26px;
    font-size: 14px;
    color: rgba(233, 237, 244, 0.78);
  }
  .nav-links a {
    white-space: nowrap;
  }
  .nav-links a:hover {
    color: #fff;
  }
  .nav-right {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
  }
  .nav-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    opacity: 0.88;
    text-decoration: none;
  }
  .nav-tool img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 217, 148, 0.16);
    color: #0bd994;
    padding: 8px 14px;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
  }
  .nav-cta:hover {
    background: rgba(11, 217, 148, 0.22);
  }
  .nav-banner {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 49;
    height: var(--nav-banner-h);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(32, 37, 41, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(232, 236, 243, 0.8);
    font-size: 14px;
    transition:
      transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
      opacity 0.24s ease;
    will-change: transform, opacity;
  }
  .nav-banner.is-hidden {
    transform: translate3d(0, -110%, 0);
    opacity: 0;
    pointer-events: none;
  }
  .nav-banner img {
    object-fit: contain;
  }

  .nav-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #f4f7fb;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
  }
  .nav-menu-toggle span {
    width: 16px;
    height: 1.6px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.24s ease,
      opacity 0.2s ease;
  }
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.6px) rotate(45deg);
  }
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.6px) rotate(-45deg);
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 72;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    background: rgba(8, 12, 14, 0.14);
    backdrop-filter: blur(22px);
    transition: opacity 0.28s ease;
  }
  .mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav-backdrop {
    flex: 1 1 auto;
    border: 0;
    background: transparent;
    padding: 0;
  }
  .mobile-nav-panel {
    width: min(540px, calc(100vw - 44px));
    height: 100%;
    padding: max(28px, env(safe-area-inset-top, 0px) + 18px) 30px
      max(28px, env(safe-area-inset-bottom, 0px) + 18px);
    background: rgba(1, 2, 3, 0.98);
    box-shadow: 24px 0 64px rgba(0, 0, 0, 0.52);
    display: flex;
    flex-direction: column;
    transform: translate3d(-28px, 0, 0);
    transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.21, 1);
  }
  .mobile-nav-overlay.active .mobile-nav-panel {
    transform: translate3d(0, 0, 0);
  }
  .mobile-nav-close {
    width: 36px;
    height: 36px;
    margin-left: auto;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(244, 247, 251, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .mobile-nav-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
  }
  .mobile-nav-logo {
    width: fit-content;
    margin: 18px auto 36px;
    display: block;
  }
  .mobile-nav-logo img {
    width: 96px;
    height: auto;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 15px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
  .mobile-nav-links a.is-active {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    color: #ffffff;
  }
  .mobile-nav-actions {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 16px;
  }
  .mobile-nav-action {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
  }
  .mobile-nav-action.catalog {
    background: rgba(0, 50, 36, 0.96);
    color: #0bd994;
  }
  .mobile-nav-action.reserve {
    background: #18d39a;
    color: #04130d;
  }

  /* ===== Page input (debug) ===== */
  #pageInputWrap {
    position: fixed;
    top: 72px;
    right: 16px;
    z-index: 60;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: 0.2s ease;
  }
  #pageInputWrap.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  #pageInput {
    width: 80px;
    height: 32px;
    background: rgba(20, 22, 26, 0.95);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    outline: none;
  }

  /* ===== Shared typography ===== */
  h1,
  h2,
  h3,
  h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  h1 {
    font-size: clamp(40px, 5vw, 90px);
  }
  h2 {
    font-size: clamp(36px, 5vw, 80px);
  }
  h3 {
    font-size: clamp(18px, 1.5vw, 28px);
  }

  .section {
    padding: 100px 0;
    position: relative;
  }
  .section-sm {
    padding: 40px 0;
  }
  .section-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
  }
  .section-title .eyebrow {
    color: #0bd994;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .section-title h2 {
    margin-bottom: 12px;
  }
  .section-title p {
    color: var(--muted);
    font-size: 22px;
    line-height: 1.55;
  }

  .eyebrow-inline {
    font-size: 24px;
    color: #0bd994;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--green);
    color: #04220f;
  }
  .btn-primary:hover {
    background: #24f2ae;
  }
  .btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .btn-ghost-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
  }
  .btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.04);
  }
  .btn-ghost-white:hover {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.04);
  }
  .drivers-video-btn-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  .drivers-video-btn {
    white-space: normal;
    padding: 11px 24px;
    height: 60px;
  }
  .drivers-video-btn span{
    font-size: 22px;
  }
  .btn-lg {
    padding: 13px 22px;
    font-size: 14px;
  }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    /* padding: calc(var(--nav-h) + var(--nav-banner-h) + 52px) 0 34px; */
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: #000;
    background-image: url("../images/hero-car.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .hero .container {
    position: relative;
    z-index: 1;
    height: 100vh;
  }
  .hero-copy {
    padding-top: clamp(100px, calc(8vh + 55px), 182px);
    max-width: 920px;
    margin: 0 auto;
  }
  .hero-copy h1 {
    margin: 0 auto 18px;
    /* font-size: 86px; */
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  }
  .hero-copy p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }
  .hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 350px;
  }
  .hero-actions .btn {
    min-width: 138px;
    padding: 13px 28px;
    font-size: 18px;
  }
  .hero-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(0, 0, 0, 0.9);
  }
  .hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(235, 239, 246, 0.7);
    font-size: 11px;
    animation: heroScrollFloat 3s ease-in-out infinite;
  }
  .hero-scroll img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }
  .hero-venture{
    width:200px;
    height:200px;
    position:absolute;
    right:100px;
    top:150px;
  }
  @keyframes heroScrollFloat {
    0%,
    100% {
      transform: translate(-50%, 0);
    }
    25% {
      transform: translate(-50%, -4px);
    }
    50% {
      transform: translate(-50%, 8px);
    }
    75% {
      transform: translate(-50%, -2px);
    }
  }

  /* ===== What one E2 earns (2 cards) ===== */
  .earn-grid {
    display: grid;
    grid-template-columns: 1.55fr 0.9fr;
    gap: 18px;
    align-items: stretch;
  }
  #earn .section-title {
    max-width: none;
    text-align: center;
    margin-bottom: 44px;
  }
  .earn-subtitle {
    margin: 14px auto 0;
    max-width: 1000px;
    color: rgba(236, 240, 247, 0.82);
    font-size: 17px;
    line-height: 1.5;
  }
  .earn-card {
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 536px;
    background-image: none;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: #090d14;
  }
  .earn-card::before {
    content: none;
  }
  .earn-card::after {
    content: none;
  }
  .earn-breakdown-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 32px 26px;
  }
  .earn-breakdown-head {
    margin-bottom: 20px;
  }
  .earn-breakdown-kicker {
    color: #eef2f9;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .earn-breakdown-total {
    font-size: clamp(56px, 6vw, 70px);
    font-weight: 700;
    color: var(--green);
    line-height: 0.92;
    letter-spacing: -0.045em;
  }
  .earn-breakdown-legend {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 18px;
  }
  .earn-breakdown-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }
  .earn-breakdown-legend-label {
    font-size: 12px;
    line-height: 1.2;
    color: rgba(232, 237, 245, 0.72);
    white-space: nowrap;
  }
  .earn-breakdown-legend-swatch {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 3px;
    flex: 0 0 auto;
  }
  .earn-breakdown-legend-swatch-stack {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex: 0 0 auto;
  }
  .earn-breakdown-legend-swatch--purchase {
    background: #869aff;
  }
  .earn-breakdown-legend-swatch--annual-1 {
    background: #0bd994;
  }
  .earn-breakdown-legend-swatch--annual-2 {
    background: #009865;
  }
  .earn-breakdown-legend-swatch--annual-3 {
    background: #0d6a4a;
  }
  .earn-breakdown-legend-swatch--balloon {
    background: linear-gradient(90deg, #89e715 0%, #72ca10 100%);
  }
  .earn-breakdown-chart {
    position: relative;
    margin-top: auto;
    padding-top: 4px;
  }
  .earn-breakdown-guides {
    position: absolute;
    top: 0;
    left: 64px;
    right: 74px;
    bottom: 72px;
    pointer-events: none;
    background:
      linear-gradient(
        to right,
        transparent calc(25% - 0.5px),
        rgba(150, 160, 187, 0.15) calc(25% - 0.5px),
        rgba(150, 160, 187, 0.15) calc(25% + 0.5px),
        transparent calc(25% + 0.5px)
      ),
      linear-gradient(
        to right,
        transparent calc(50% - 0.5px),
        rgba(150, 160, 187, 0.15) calc(50% - 0.5px),
        rgba(150, 160, 187, 0.15) calc(50% + 0.5px),
        transparent calc(50% + 0.5px)
      ),
      linear-gradient(
        to right,
        transparent calc(75% - 0.5px),
        rgba(150, 160, 187, 0.15) calc(75% - 0.5px),
        rgba(150, 160, 187, 0.15) calc(75% + 0.5px),
        transparent calc(75% + 0.5px)
      ),
      linear-gradient(
        to right,
        transparent calc(100% - 0.5px),
        rgba(150, 160, 187, 0.15) calc(100% - 0.5px),
        rgba(150, 160, 187, 0.15) calc(100% + 0.5px),
        transparent calc(100% + 0.5px)
      );
  }
  .earn-breakdown-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 120px;
    align-items: center;
    gap: 12px;
    min-height: 38px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }
  .earn-breakdown-row--purchase {
    margin-bottom: 14px;
  }
  .earn-breakdown-year {
    font-size: 15px;
    color: rgba(220, 226, 238, 0.68);
    line-height: 1.12;
  }
  .earn-breakdown-year--purchase {
    color: rgba(235, 240, 246, 0.74);
  }
  .earn-breakdown-track {
    min-width: 0;
  }
  .earn-breakdown-bar {
    width: var(--earn-value, 0%);
    height: 22px;
    min-height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 12px 18px rgba(6, 12, 20, 0.18);
  }
  .earn-breakdown-bar--purchase {
    box-shadow: 0 10px 20px rgba(141, 156, 255, 0.14);
  }
  .earn-breakdown-segment {
    display: block;
    align-self: stretch;
    flex: 0 0 auto;
    border-radius: 0;
    position: relative;
    font-size:11px;
    line-height:22px;
    text-align:center;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    filter: saturate(1.18) brightness(1.08);
  }
  .earn-breakdown-segment + .earn-breakdown-segment {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
  }
  .earn-breakdown-segment--purchase {
    background: #869aff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 0 18px rgba(143, 159, 255, 0.24);
  }
  .earn-breakdown-segment--annual-1 {
    background: #0bd994;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 14px rgba(73, 235, 179, 0.18);
  }
  .earn-breakdown-segment--annual-2 {
    background: #009865;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 0 14px rgba(55, 217, 156, 0.16);
  }
  .earn-breakdown-segment--annual-3 {
    background: #0d6a4a;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 0 14px rgba(42, 189, 132, 0.14);
  }
  .earn-breakdown-segment--balloon {
    background: linear-gradient(90deg, #8ae816 0%, #72ca10 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 16px rgba(138, 232, 22, 0.18);
  }
  .earn-breakdown-value {
    font-size: 17px;
    font-weight: 500;
    color: rgba(247, 250, 255, 0.9);
    text-align: right;
  }
  .earn-breakdown-axis {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 74px;
    gap: 12px;
    position: relative;
    z-index: 1;
  }
  .earn-breakdown-scale {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .earn-breakdown-scale span {
    font-size: 12px;
    color: rgba(201, 207, 219, 0.58);
    line-height: 1;
  }
  .earn-breakdown-axis-label {
    margin-top: 12px;
    color: rgba(245, 248, 252, 0.95);
    font-size: 15px;
    text-align: center;
  }
  .earn-breakdown-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(220, 227, 238, 0.7);
    font-size: 14px;
    line-height: 1.45;
  }
  .earn-side {
    display: grid;
    grid-template-rows: minmax(300px, 1.18fr) minmax(220px, 0.82fr);
    gap: 18px;
  }
  .earn-side-card {
    background: linear-gradient(180deg, #131821 0%, #0d1117 100%);
    border: 0;
    border-radius: 18px;
    padding: 34px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 0;
    min-height: 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  .earn-side-card.media {
    background-image: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .earn-side-card.media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(119, 145, 206, 0.2) 0%,
        rgba(61, 80, 124, 0.06) 34%,
        rgba(8, 10, 14, 0.16) 100%
      ),
      radial-gradient(
        100% 68% at 50% 10%,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0) 72%
      );
    pointer-events: none;
  }
  .earn-side-card.media .earn-side-label,
  .earn-side-card.media .earn-side-title {
    position: relative;
    z-index: 2;
  }
  .earn-side-card--ad {
    justify-content: flex-start;
    padding-top: 40px;
  }
  .earn-side-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .earn-side-label-highlight {
    color: var(--green);
    font-weight: 700;
  }
  .earn-side-title {
    font-size: clamp(32px, 2.7vw, 42px);
    font-weight: 500;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  .earn-side-card--revenue {
    padding-top: 28px;
    padding-bottom: 28px;
    background: linear-gradient(180deg, #151922 0%, #0f1218 100%);
  }
  .earn-side-icon {
    margin: 0 0 18px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .earn-side-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .earn-side-copy {
    margin: 0;
    max-width: 270px;
    color: #f3f5f8;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.36;
    letter-spacing: -0.01em;
  }

  @media (min-width: 1200px) {
    .earn-grid {
      grid-template-columns: 850px minmax(0, 1fr);
    }
    .earn-card {
      height: auto;
      min-height: 536px;
    }
  }

  /* ===== Three steps ===== */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .steps-title-mobile-break {
    display: none;
  }
  .step-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .step-thumb {
    position: relative;
    background: #272729;
    border-radius: 14px;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    height: 510px;
    margin-bottom: 30px;
  }
  .step-thumb img.step-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .step-num-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 56px;
    height: auto;
    pointer-events: none;
  }
  .step-body {
    padding: 0 4px;
  }
  .step-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 11px;
    color: #fff;
  }
  .step-card p {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.3;
  }

  /* ===== Drivers earn twice ===== */
  .compare-head {
    text-align: left;
    margin-bottom: 36px;
    max-width: auto;
  }
  .compare-head h2 {
    margin-bottom: 14px;
  }
  .compare-head p {
    color: var(--muted);
    font-size: 22px;
    line-height: 1.5;
  }

  .compare-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .compare-card {
    background: #17181b;
    border: 0;
    border-radius: 16px;
    padding: 26px 28px;
    height: 500px;
  }
  .compare-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 72px;
  }
  .compare-card-head .circle-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
  }
  .compare-card-head .title {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
  }
  .bar-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 68px;
  }
  .bar-row:last-child {
    margin-bottom: 0;
  }
  .bar-row .car-thumb {
    width: 140px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bar-row .car-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .bar-body {
    min-width: 0;
  }
  .bar-name {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .bar-line {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .bar-track {
    flex: 1;
    height: 26px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }
  .bar-track.plain {
    background: transparent;
    overflow: visible;
    position: relative;
  }
  .bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(
      90deg,
      var(--green) 0%,
      var(--green-bright) 100%
    );
  }
  .bar-fill.gray {
    background: linear-gradient(90deg, #5d6470, #949aa7);
  }
  .bar-amount {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    min-width: 44px;
  }
  .bar-track .bar-amount.follow-fill {
    position: absolute;
    top: 50%;
    left: calc(var(--progress-width, 0%) + 12px);
    transform: translateY(-50%);
    min-width: 0;
    white-space: nowrap;
  }

  .metric-stack {
    background: #17181b;
    border-radius: 16px;
    padding: 26px 28px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
  }
  .metric-stack .compare-card-head {
    margin-bottom: 20px;
  }
  .metric {
    padding: 14px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .metric + .metric {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .metric-value {
    font-family: "Inter", "Inter", sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .metric-value .arrow {
    font-size: 28px;
    line-height: 1;
    -webkit-text-fill-color: initial;
    background: none;
  }
  .metric.up .metric-value {
    background: linear-gradient(0deg, #079969 0%, #0bd996 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .metric.up .metric-value .arrow {
    background: linear-gradient(
      180deg,
      #0bcc8d 0%,
      rgba(0, 0, 0, 0.1) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .metric.down .metric-value {
    background: linear-gradient(0deg, #5465bd 0%, #8ea1ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .metric.down .metric-value .arrow {
    background: linear-gradient(
      180deg,
      rgba(124, 144, 249, 0.05) 0%,
      #7c90f9 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .metric-label {
    font-size: 14px;
    color: var(--muted);
  }

  /* ===== More vehicles. More revenue. ===== */
  .revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .revenue-card {
    background: linear-gradient(180deg, #02120d 0%, #03432e 100%);
    border-radius: 20px;
    padding: 34px 24px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .revenue-card .rev-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 28px;
  }
  .revenue-card .rev-label svg {
    width: 20px;
    height: 20px;
    color: #fff;
  }
  .revenue-card .rev-amount {
    font-family: "Inter", sans-serif;
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 600;
    color: #fff;
    line-height: 1;
    display: inline-flex;
    align-items: flex-end;
    gap: 0.18em;
    margin-bottom: 28px;
  }
  .revenue-card .rev-amount::after {
    content: "per year";
    font-size: 0.5em;
    font-weight: 500;
    line-height: 1.1;
    color: rgba(255, 255, 255, 1);
    padding-bottom: 0.08em;
  }
  .revenue-card .rev-peryear {
    line-height:60px;
  }
  .revenue-card .rev-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
  }
  .revenue-card .rev-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
  }
  .revenue-foot {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    line-height: 1.6;
    margin-top: 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ===== Mission / Africa ===== */
  .mission-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    background-color: #000;
    background-image: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .mission-section .container {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 63px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .mission-stats {
    margin-top: auto;
  }
  .mission-head {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto 60px;
  }
  .mission-head h2 {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  }
  .mission-head p {
    color: #d7dbe3;
    font-size: 22px;
    line-height: 1.5;
    margin-top: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }
  .mission-reserve-btn {
    margin-top: 28px;
    padding: 11px 30px;
    font-size: 18px;
  }
  .mission-pin-wrap {
    position: absolute;
    left: 58.2%;
    top: 65.2%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin-bottom: 0;
    pointer-events: none;
  }
  .mission-pin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 217, 148, 0.16);
    border: 1px solid var(--green);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    color: #fff;
  }
  .mission-pin::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 0 6px rgba(31, 212, 122, 0.18);
  }
  .mission-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 980px;
    margin: auto auto 0;
  }
  .mission-stat {
    text-align: center;
  }
  .mission-stat strong {
    color: var(--green-bright);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  }
  .mission-stat span {
    color: #d7dbe3;
    font-size: 13px;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }

  /* ===== Why Nairobi ===== */
  .nairobi {
    position: relative;
    overflow: visible;
  }
  .nairobi-hero {
    position: relative;
    width: calc(100% - 60px);
    margin: 0 auto;
    height: clamp(656px, 30vw, 656px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
  }

  .nairobi-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
  }
  .nairobi-body {
    position: relative;
    width: 100%;
    margin: -303px 0 0;
    padding: 48px 36px 38px;
    border-radius: 30px;
    background: linear-gradient(
      180deg,
      rgba(25, 52, 118, 0.49) 0%,
      #1c2a4e 56.36%,
      #0f1524 100%
    );
    -webkit-backdrop-filter: blur(29px);
    backdrop-filter: blur(29px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36);
  }
  .nairobi-h {
    margin-bottom: 22px;
  }
  .nairobi-h h3 {
    font-size: clamp(52px, 5vw, 60px);
    font-weight: 600;
    line-height: 0.98;
    color: #f9fbff;
    letter-spacing: -0.05em;
  }
  .nairobi-body .hint {
    color: rgba(229, 235, 246, 0.84);
    font-size: clamp(15px, 5vw, 22px);
    line-height: 1.48;
    max-width: 960px;
    margin-bottom: 42px;
  }
  .nairobi-demand {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 40px;
  }
  .nairobi-demand-copy {
    flex: 1;
    min-width: 0;
  }
  .nairobi-demand-icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #19d997;
    background: rgba(11, 217, 148, 0.12);
    box-shadow: inset 0 0 0 1px rgba(11, 217, 148, 0.06);
  }
  .nairobi-demand-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .nairobi-demand-label {
    display: block;
    font-size: 14px;
    color: #f4f7ff;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .nairobi-demand-text {
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.12;
    color: #f7f9ff;
    letter-spacing: -0.03em;
  }
  .nairobi-demand-text strong {
    color: #19e49b;
    font-weight: 600;
  }
  .nairobi-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 22px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(248, 250, 255, 0.94);
  }
  .nairobi-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(205, 215, 240, 0.14);
  }
  .nairobi-advantages {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .nairobi-adv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: 78px;
    border-radius: 12px;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    padding: 16px 22px;
  }
  .nairobi-adv-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .nairobi-adv-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .nairobi-adv-text {
    display: block;
    width: 100%;
    text-align: left;
    color: rgba(244, 247, 255, 0.95);
    font-size: 20px;
    line-height: 1.22;
    letter-spacing: -0.01em;
  }

  /* ===== Built for one purpose ===== */
  .spec-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    background-color: #000;
    background-image: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: stretch;
  }

  .spec-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 58px 24px 54px;
  }
  .spec-top {
    text-align: center;
    margin: 0 auto;
  }
  .spec-top .label {
    color: #fcdfd6;
    font-size: 24px;
    margin-bottom: 12px;
  }
  .spec-top h2 {
    color: #fff;
    font-size: clamp(44px, 5.6vw, 64px);
    line-height: 1.08;
    margin-bottom: 28px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  }
  .spec-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .spec-action {
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    color: #f0f2f7;
    font-size: 16px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .spec-action .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    opacity: 0.9;
  }
  .spec-action .icon img {
    width: 14px;
    height: 14px;
    display: block;
    object-fit: contain;
  }
  .spec-grid {
    margin-top: auto;
    width: min(1080px, 100%);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .spec-item {
    text-align: center;
    padding: 0 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
  .spec-item:first-child {
    border-left: 0;
  }
  .spec-item strong {
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 700;
    display: block;
    height: 1.1em;
    margin-bottom: 6px;
    color: #fcdfd6;
    line-height: 1.1;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    font-feature-settings:
      "tnum" 1,
      "lnum" 1;
  }
  .spec-item span {
    font-size: 15px;
    color: rgba(245, 246, 250, 0.92);
  }

  /* ===== Battery system ===== */
  .battery-section {
    position: relative;
    min-height: 100vh;
    padding: 0;
    background-color: #191927;
    background-image: none;
    background-size: 88% auto;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  .battery-section .container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
  }
  .battery-wrap {
    position: relative;
    min-height: 100vh;
    width: 100%;
    border-radius: 0;
    overflow: visible;
    padding: 200px 0 70px;
    background: none;
    display: flex;
    flex-direction: column;
  }
  .battery-wrap::before {
    content: none;
  }
  .battery-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 32px;
  }
  .battery-head {
    max-width: 520px;
  }
  .battery-head .eyebrow {
    color: #fcdfd6;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .battery-head h2 {
    font-size: clamp(48px, 5vw, 68px);
    line-height: 1.04;
    max-width: 470px;
    margin: 0;
    color: #f8fbff;
  }
  .battery-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: auto;
  }
  .battery-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  .battery-pack {
    height: 96px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
  }
  .battery-pack img {
    max-height: 96px;
    width: auto;
    object-fit: contain;
  }
  .battery-card .btag {
    font-size: 22px;
    color: #f2f4fa;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .battery-card .bmeta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 25px;
  }
  .battery-card .bnum {
    font-size: 56px;
    font-weight: 700;
    color: #22e5a1;
    line-height: 1;
  }
  .battery-card .bnum small {
    font-size: 0.58em;
    color: #22e5a1;
    font-weight: 600;
    margin-left: 8px;
  }
  .battery-card .bnote {
    font-size: 20px;
    color: #c6c9d8;
    line-height: 1.46;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 20px;
  }
  .battery-card .bchip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #20df9e;
    min-height: 40px;
    background: rgba(9, 119, 82, 0.2);
    border-radius: 10px;
    padding: 0 14px 0 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
  }
  .battery-card .bchip.bchip--charging {
    min-height: 0;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.2;
    align-items: flex-start;
    text-align: left;
    white-space: normal;
  }
  .battery-card .bchip.bchip--charging span {
    display: block;
  }
  .battery-card .bchip.bchip--charging .bchip-icon {
    align-self: center;
  }
  .battery-card .bchip-icon {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 16px;
    object-fit: contain;
  }
  .battery-visual {
    display: none;
  }
  .battery-visual img {
    display: none;
  }

  /* ===== Cloud Fleet OS ===== */
  #fleet .section-title {
    max-width: 980px;
    margin-bottom: 38px;
  }
  #fleet .section-title h2 {
    margin-bottom: 0;
    font-size: clamp(46px, 5.8vw, 72px);
    line-height: 1.06;
  }
  .fleet-wrap {
    position: relative;
    overflow: visible;
  }
  .fleet-carousel {
    --fleet-bleed: calc(24px + max(0px, (100vw - var(--container)) / 2));
    display: flex;
    gap: 24px;
    overflow-x: auto;
    width: calc(100% + var(--fleet-bleed));
    margin-right: calc(var(--fleet-bleed) * -1);
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .fleet-carousel::-webkit-scrollbar {
    display: none;
  }
  .fleet-card {
    position: relative;
    flex: 0 0 min(1300px, calc(100% - 168px));
    min-height: 660px;
    max-height: 660px;
    border-radius: 20px;
    overflow: hidden;
    padding: 56px;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    border: 0 !important;
    background-size: cover;
    background-position: center right;
    box-shadow: none;
  }

  .fleet-card-1 {
    background-image: none;
  }
  .fleet-card-2 {
    background-image: none;
  }
  .fleet-card-3 {
    background-image: none;
  }
  .fleet-card-copy {
    position: relative;
    z-index: 1;
    max-width: 580px;
  }
  .fleet-maya-video-btn-wrap{
    margin-top: 50px;
    display: flex;
    justify-content: start;
    margin-bottom: 40px;
  }
  .fleet-card h3 {
    font-size: clamp(36px, 3.5vw, 54px);
    margin-bottom: 14px;
    line-height: 1.08;
    color: #ffffff;
  }
  .fleet-card p {
    font-size: 16px;
    color: rgba(236, 241, 252, 0.84);
    line-height: 1.48;
  }
  .fleet-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }
  .fleet-arrow {
    width: 34px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ebeff8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition:
      background 0.2s ease,
      opacity 0.2s ease;
  }
  .fleet-arrow:hover {
    background: rgba(255, 255, 255, 0.14);
  }
  .fleet-arrow:disabled {
    opacity: 0.38;
    cursor: default;
  }
  .fleet-arrow svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .fleet-pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .fleet-dot {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    transition:
      width 0.2s ease,
      background 0.2s ease;
  }
  .fleet-dot.active {
    width: 18px;
    background: #ffffff;
  }

  /* ===== Team ===== */
  #team .section-title {
    max-width: 940px;
    margin-bottom: 44px;
  }
  #team .section-title h2 {
    margin-bottom: 0;
    font-size: clamp(56px, 6vw, 76px);
    line-height: 1.08;
  }
  .team-wrap {
    position: relative;
  }
  .team-carousel {
    --team-bleed: calc(24px + max(0px, (100vw - var(--container)) / 2));
    display: flex;
    gap: 16px;
    overflow-x: auto;
    width: calc(100% + var(--team-bleed));
    margin-right: calc(var(--team-bleed) * -1);
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .team-carousel::-webkit-scrollbar {
    display: none;
  }
  .team-card {
    flex: 0 0 390px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 28px 20px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #1b1b1f 0%, #25262c 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    scroll-snap-align: start;
  }
  .team-card--featured {
    position: relative;
    background: linear-gradient(
      180deg,
      #001d12 0%,
      #032519 28%,
      #095337 100%
    );
    border-color: rgba(11, 217, 148, 0.16);
  }
  .team-featured-logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 104px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
  }
  .team-role {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 10px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1;
    color: #1ce3a0;
    background: rgba(11, 217, 148, 0.12);
    border: 1px solid rgba(11, 217, 148, 0.1);
  }
  .team-card h3 {
    font-size: 36px;
    margin-bottom: 26px;
    line-height: 1.12;
    color: #ffffff;
  }
  .team-card p {
    color: rgba(229, 233, 241, 0.86);
    font-size: 22px;
    line-height: 32px;
  }
  .team-link {
    margin-top: auto;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(246, 248, 251, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .team-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }
  .team-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
  }
  .team-arrow {
    width: 36px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(247, 250, 255, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition:
      background 0.2s ease,
      opacity 0.2s ease;
  }
  .team-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
  }
  .team-arrow:disabled {
    opacity: 0.36;
    cursor: default;
  }
  .team-arrow svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ===== Backed by ===== */
  .backed-wrap {
    text-align: center;
  }
  .backed-label {
    font-size: 17px;
    color: #fff;
    margin-bottom: 16px;
  }
  .backed-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 620px;
    margin: 0 auto;
    align-items: center;
  }
  .backed-cell {
    background: transparent;
    border: 0;
    border-radius: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
    color: inherit;
    text-decoration: none;
  }
  .backed-cell img {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.9;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  }
  .backed-name {
    font-size: 22px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.75);
  }

  /* ===== Ready CTA ===== */
  .ready-card {
    background-color: #263367;
    background-image: none;
    background-size: cover;
    background-position: center center;
    border-radius: 16px;
    min-height: 620px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(360px, 500px) 1fr;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
  }
  .ready-copy {
    padding: 56px 38px 16px;
    display: flex;
    flex-direction: column;
  }
  .ready-copy h2 {
    font-size: clamp(44px, 4.2vw, 58px);
    line-height: 1.06;
    margin-bottom: 16px;
  }
  .ready-copy p {
    color: #c7cde3;
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.45;
    max-width: none;
  }
  .ready-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }
  .ready-reserve {
    width: 100%;
    height: 38px;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 16px;
    font-weight: 700;
  }
  .ready-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }
  .ready-list li {
    list-style: none;
    font-size: 16px;
    color: #d6dcef;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .ready-list li::before {
    content: "\2713";
    color: #1de19e;
    font-size: 15px;
    font-weight: 700;
  }
  .ready-support {
    margin-top:20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    text-align: center;
    color: rgba(215, 221, 243, 0.72);
  }
  .ready-support a {
    color: rgba(215, 221, 243, 0.9);
  }
  .ready-payment-flow {
    margin-top: 18px;
    padding: 14px 14px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .ready-payment-flow-title {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1de19e;
    margin-bottom: 10px;
  }
  .ready-payment-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: rpf-step;
  }
  .ready-payment-step {
    position: relative;
    padding: 8px 0 8px 24px;
    border-left: 1px dashed rgba(255, 255, 255, 0.18);
    counter-increment: rpf-step;
  }
  .ready-payment-step:first-child {
    border-top-left-radius: 4px;
  }
  .ready-payment-step:last-child {
    border-bottom-left-radius: 4px;
  }
  .ready-payment-step::before {
    content: counter(rpf-step);
    position: absolute;
    left: -10px;
    top: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1de19e;
    color: #0c1a3a;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }
  .ready-payment-step-month {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(215, 221, 243, 0.6);
  }
  .ready-payment-step-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 1px;
  }
  .ready-payment-step-desc {
    font-size: 11px;
    color: rgba(215, 221, 243, 0.7);
    line-height: 1.4;
    margin-top: 1px;
  }
  .ready-payment-step-amount {
    font-size: 12px;
    color: #c7cde3;
    margin-top: 2px;
  }
  .ready-payment-step-desc strong {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
  }
  .ready-payment-flow-total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: rgba(215, 221, 243, 0.85);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .ready-payment-flow-total strong {
    color: #1de19e;
    font-size: 14px;
    font-weight: 700;
  }
  .ready-media {
    min-height: 100%;
  }

  /* ===== FAQ ===== */
  #faq .section-title {
    max-width: none;
    margin-bottom: 42px;
    text-align: center;
  }
  #faq .section-title .eyebrow {
    margin-bottom: 10px;
  }
  #faq .section-title h2 {
    margin-bottom: 0;
  }
  .faq-controls,
  .faq-wrap {
    max-width: 980px;
    margin: 0 auto;
  }
  .faq-controls {
    margin-bottom: 22px;
    transition: height 0.34s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .faq-controls.is-animating {
    overflow: hidden;
  }
  .faq-categories-row,
  .faq-categories-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .faq-categories-row:not([hidden]),
  .faq-categories-panel:not([hidden]) {
    animation: faqControlsReveal 0.2s ease-out;
  }
  .faq-categories-row[hidden],
  .faq-categories-panel[hidden],
  .faq-categories-divider[hidden] {
    display: none !important;
  }
  .faq-chip,
  .faq-toggle {
    min-height: 31px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease,
      transform 0.2s ease;
  }
  .faq-chip:hover,
  .faq-toggle:hover {
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
  }
  .faq-chip.is-active {
    color: var(--green);
    border-color: rgba(11, 217, 148, 0.58);
    background: rgba(11, 217, 148, 0.08);
  }
  .faq-toggle-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    flex-shrink: 0;
  }
  .faq-toggle-icon svg {
    width: 100%;
    height: 100%;
  }
  .faq-toggle--collapse {
    padding: 0 12px;
  }
  .faq-toggle--collapse .faq-toggle-icon {
    order: -1;
  }
  .faq-categories-divider {
    display: block;
    margin-top: 22px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
  }
  .faq-categories-divider:not([hidden]) {
    animation: faqDividerReveal 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .faq-item {
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition:
      background 0.24s ease,
      border-color 0.24s ease;
  }
  .faq-item:last-child {
    margin-bottom: 0;
  }
  .faq-btn {
    width: 100%;
    background: none;
    border: 0;
    padding: 20px 20px 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f8fafc;
    font-size: 24px;
    line-height: 1.35;
    text-align: left;
    gap: 16px;
    transition: color 0.2s ease;
    font-weight: 500;
  }
  .faq-btn-label {
    flex: 1;
    min-width: 0;
  }
  .faq-item.active .faq-btn {
    color: var(--green);
  }
  .faq-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    color: rgba(255, 255, 255, 0.92);
  }
  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease;
  }
  .faq-icon::after {
    transform: rotate(90deg);
  }
  .faq-item.active .faq-icon::after {
    opacity: 0;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.34s cubic-bezier(0.2, 0.7, 0.2, 1),
      opacity 0.22s ease;
    color: rgba(241, 245, 249, 0.82);
    font-size: 15px;
    line-height: 1.58;
    will-change: max-height, opacity;
  }
  .faq-answer > div {
    min-height: 0;
  }
  .faq-answer-copy {
    padding: 0 22px 24px;
  }
  .faq-answer-copy p {
    margin: 0;
  }
  .faq-answer-copy p + p {
    margin-top: 14px;
  }
  .faq-answer-copy strong {
    color: #f8fafc;
    font-weight: 600;
  }
  .faq-item.active .faq-answer {
    max-height: var(--faq-answer-height, 0px);
    opacity: 1;
  }
  .faq-sticky-title {
    display: none !important;
  }
  @keyframes faqControlsReveal {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes faqDividerReveal {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* ===== Footer ===== */
  .footer {
    position: relative;
    padding: 0 0 28px;
    color: var(--muted);
    font-size: 12px;
  }
  .footer .container {
    position: relative;
  }
  .footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0 36px;
    margin-bottom: 70px;
  }
  .footer-disclaimer p {
    color: rgba(220, 224, 232, 0.58);
    font-size: 13px;
    line-height: 1.55;
    max-width: 1350px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns:
      minmax(340px, 1.35fr) minmax(220px, 0.8fr)
      minmax(360px, 1fr);
    gap: 88px;
    align-items: start;
  }
  .footer-brand img {
    height: 42px;
    margin-bottom: 30px;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 390px;
  }
  .footer h4 {
    font-size: 16px;
    color: #f4f6fb;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 28px;
    font-weight: 500;
  }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(212, 216, 224, 0.78);
    font-size: 15px;
    line-height: 1.35;
  }
  .footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: rgba(212, 216, 224, 0.84);
    margin-top: 3px;
  }
  .footer-contact-item span {
    display: block;
  }
  .footer-sitemap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 38px;
  }
  .footer-sitemap-grid a {
    display: block;
    color: rgba(219, 223, 231, 0.78);
    font-size: 15px;
    margin-bottom: 0;
  }
  .footer-sitemap-grid a:hover,
  .footer-contact-item:hover {
    color: #fff;
  }
  .footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-subscribe {
    max-width: 392px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .footer-subscribe button {
    border: 0;
    color: #0bd994;
    height: 34px;
    padding: 0 18px;
    font-size: 14px;
    background: rgba(11, 217, 148, 0.16);
    border-radius: 20px;
  }
  .footer-copy {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--muted-2);
    font-size: 11px;
  }
  .footer-to-top {
    position: fixed;
    right: 18px;
    bottom: 42px;
    z-index: 40;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(108, 111, 118, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    backdrop-filter: blur(4px);
  }
  .footer-to-top svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  /* ===== Modals ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
  }
  .modal-overlay.active {
    display: flex;
  }
  .modal {
    width: min(560px, 96vw);
    max-height: 92vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #15181c 0%, #0d0f12 100%);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
  }
  .modal.wide {
    width: min(680px, 96vw);
  }
  .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    background: transparent;
    color: #fff;
    font-size: 16px;
  }
  .modal h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .modal p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .video-modal-overlay {
    z-index: 140;
    padding: 48px 84px;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }
  .video-modal {
    width: min(1024px, calc(100vw - 184px));
    max-height: none;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .video-modal:has(.video-modal-surface-portrait) {
    width: auto;
  }
  .video-modal-surface {
    overflow: hidden;
    border-radius: 20px;
    background: #0c0f14;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
  }
  .video-modal-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
  }
  .video-modal-player-portrait {
    aspect-ratio: 1 / 2;
    max-height: 80vh;
    height: 80vh;
    width: auto;
  }
  .video-modal-surface-portrait {
    position: relative;
    flex-shrink: 0;
  }
  .video-modal-close {
    position: absolute;
    top: 0;
    right: -58px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: rgba(25, 34, 52, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      background 0.2s ease,
      transform 0.2s ease;
  }
  .video-modal-close-portrait {
    position: absolute;
    top: 0;
    right: -52px;
    width: 40px;
    height: 40px;
  }
  .video-modal-close:hover {
    background: rgba(35, 45, 66, 0.98);
    transform: translateY(-1px);
  }
  .video-modal-close svg {
    width: 18px;
    height: 18px;
  }
  .partner-site-modal-overlay {
    z-index: 141;
    padding: 32px 48px;
    background: rgba(10, 12, 16, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
  .partner-site-modal {
    width: min(1280px, calc(100vw - 96px));
    max-height: none;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #14181d 0%, #0b0d11 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.36);
  }
  .partner-site-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 72px 16px 22px;
  }
  .partner-site-modal-title {
    color: #f6f8fb;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }
  .partner-site-modal-link {
    color: #1ee0a0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
  }
  .partner-site-modal-link:hover {
    text-decoration: underline;
  }
  .partner-site-modal-surface {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #ffffff;
  }
  .partner-site-modal-surface.is-fallback {
    background: linear-gradient(180deg, #14181d 0%, #0b0d11 100%);
  }
  .partner-site-frame {
    display: block;
    width: 100%;
    height: min(78vh, 860px);
    border: 0;
    background: #ffffff;
  }
  .partner-site-modal-surface.is-fallback .partner-site-frame {
    opacity: 0;
    pointer-events: none;
  }
  .partner-site-modal-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    text-align: center;
    background: linear-gradient(180deg, #14181d 0%, #0b0d11 100%);
  }
  .partner-site-modal-fallback.active {
    display: flex;
  }
  .partner-site-modal-fallback p {
    max-width: 420px;
    margin: 0;
    color: rgba(248, 251, 255, 0.82);
    font-size: 15px;
    line-height: 1.55;
  }
  .partner-site-modal-fallback-link {
    min-width: 196px;
  }
  .partner-site-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: rgba(25, 34, 52, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      background 0.2s ease,
      transform 0.2s ease;
  }
  .partner-site-modal-close:hover {
    background: rgba(35, 45, 66, 0.98);
    transform: translateY(-1px);
  }
  .partner-site-modal-close svg {
    width: 18px;
    height: 18px;
  }
  .reserve-step-tab {
    position: relative;
    padding: 0 0 16px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.44);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
  }

  .reserve-step-tab.is-active {
    color: #fff;
  }

  .reserve-step-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
  }
  @media (max-width: 900px) {
    .video-modal-overlay {
      padding: 18px 12px;
    }
    .video-modal {
      width: min(100vw - 24px, 960px);
    }
    .video-modal-close {
      top: 12px;
      right: 12px;
      z-index: 2;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .video-modal-surface {
      border-radius: 18px;
    }
    .partner-site-modal-overlay {
      padding: 18px 12px;
    }
    .partner-site-modal {
      width: min(100vw - 24px, 960px);
      border-radius: 18px;
    }
    .partner-site-modal-header {
      align-items: flex-start;
      flex-direction: column;
      gap: 8px;
      padding: 16px 58px 14px 16px;
    }
    .partner-site-modal-title {
      font-size: 15px;
    }
    .partner-site-modal-link {
      font-size: 12px;
    }
    .partner-site-frame {
      height: 72vh;
    }
    .partner-site-modal-fallback {
      padding: 24px 18px;
    }
    .partner-site-modal-fallback p {
      font-size: 14px;
    }
    .partner-site-modal-close {
      top: 10px;
      right: 10px;
      width: 36px;
      height: 36px;
    }
  }

  /* ===== Media Section ===== */
  #media {
    background: var(--bg);
    padding: 80px 0 96px;
  }
  #media .section-title {
    text-align: center;
    margin-bottom: 48px;
  }
  .media-grid {
    display: grid;
    grid-template-columns: 660px 660px;
    gap: 30px;
    justify-content: center;
    margin-bottom:30px;
  }
  .media-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 660px;
    display: flex;
    flex-direction: column;
  }
  .media-card-left {
    background: linear-gradient(180deg, #111822 0%, #0c1520 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .media-card-right {
    background: linear-gradient(180deg, #111822 0%, #0c1520 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .media-card-thumb {
    align-items: center;
    overflow: hidden;
    width:660px;
    height:auto;
  }
  .media-card-thumb img {
    width: 660px;
    height: 100%;
    display: block;
  }
  .media-card-info {
    padding: 40px;
    display: block;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .media-card-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 36px;
    font-weight: 500;
    height:200px;
  }
  .media-card-link {
    align-items: center;
    gap: 6px;
    color: rgba(11, 217, 148, 1);
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
  }
  .media-card-link:hover {
    color: #24f2ae;
  }
  .media-card-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  @media (max-width: 1400px) {
    .media-grid {
      grid-template-columns: 1fr 1fr;
      max-width: 1360px;
      width: 100%;
      margin: 0 auto;
    }
    .media-card {
      width: 100%;
      max-width: 660px;
    }
  }
  @media (max-width: 768px) {
    .media-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .media-card {
      height: 346px;
    }
    .media-card-thumb {
      width: 100%;
      height: auto;
      flex-shrink: 0;
    }
    .media-card-thumb img {
      width: 100%;
      height:auto;
    }
    .media-card-info {
      padding: 14px;
      border-top: none;
      border-left: 1px solid rgba(255, 255, 255, 0.06);
      gap: 8px;
    }
    .media-card-label {
      font-size: 20px;
      height:90px;
      -webkit-line-clamp: 3;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .media-card-link {
      font-size: 12px;
    }
  }

  .reserve-modal-overlay {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    backdrop-filter: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
  }
  .reserve-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .reserve-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
  }
  .reserve-modal {
    position: relative;
    z-index: 1;
    margin-left: auto;
    width: min(540px, 100vw);
    height: 100%;
    background:
      radial-gradient(
        circle at top left,
        rgba(11, 217, 148, 0.08),
        transparent 34%
      ),
      linear-gradient(180deg, #111111 0%, #080808 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -32px 0 96px rgba(0, 0, 0, 0.46);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .reserve-modal-overlay.active .reserve-modal {
    transform: translateX(0);
  }
  .reserve-modal-close {
    position: absolute;
    top: 22px;
    right: calc(min(540px, 100vw) + 18px);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 20, 24, 0.92);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    z-index: 3;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }
  .reserve-modal-close:hover {
    background: rgba(24, 24, 24, 0.98);
  }
  .reserve-modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px 30px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .reserve-modal-title {
    margin: 0 0 26px;
    font-size: 32px;
    line-height: 1.1;
    color: #fff;
  }
  .reserve-step-panel {
    display: none;
    flex-direction: column;
    gap: 20px;
  }

  .reserve-step-panel.is-active {
    display: flex;
  }

  .reserve-modal.is-step-basic .reserve-modal-cta-inner {
    justify-content: space-between;
  }

  .reserve-modal.is-step-reservation .reserve-modal-cta-inner {
    justify-content: space-between;
  }

  .reserve-modal.is-step-basic #reserveModalNext {
    display: inline-flex;
  }

  .reserve-modal.is-step-reservation #reserveModalCheckout {
    display: inline-flex;
    background: #0bd994;
  }

  .reserve-modal.is-step-reservation #reserveModalCheckout:hover {
    background: #0bd994;
  }

  #reserveModalNext,
  #reserveModalCheckout {
    display: none;
  }

  .reserve-modal-field-row {
    display: flex;
    gap: 16px;
  }
  .reserve-modal-field-row .reserve-modal-field {
    flex: 1;
  }
  .reserve-modal-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .reserve-modal-field-label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
  }
  .reserve-modal-field-label span {
    color: rgba(255, 255, 255, 0.48);
    font-weight: 500;
  }
  .reserve-modal-field-input,
  .reserve-modal-quantity-input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #161616;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    outline: none;
    transition:
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }
  .reserve-modal-field-input::placeholder,
  .reserve-modal-quantity-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }
  .reserve-modal-field-input:hover,
  .reserve-modal-quantity-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .reserve-modal-field-input:focus,
  .reserve-modal-quantity-input:focus {
    border-color: rgba(11, 217, 148, 0.82);
    box-shadow: 0 0 0 3px rgba(11, 217, 148, 0.15);
  }
  .reserve-modal-field-input[aria-invalid="true"] {
    border-color: rgba(255, 126, 126, 0.9);
    box-shadow: none;
  }
  .reserve-modal-field-error {
    display: none;
    color: #ff8c8c;
    font-size: 12px;
    line-height: 1.5;
  }
  .reserve-modal-field-error.show {
    display: block;
  }
  .reserve-modal-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
  }
  .reserve-modal-section-label {
    display: block;
    margin-bottom: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
  }
  .quantity-input-wrapper {
    width: 100%;
  }
  .reserve-modal-quantity-input {
    appearance: textfield;
  }
  .reserve-modal-quantity-input::-webkit-outer-spin-button,
  .reserve-modal-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .reserve-modal-quantity-input.is-shake {
    animation: reserveQtyShake 0.4s ease;
    border-color: #ff6b6b;
  }
  @keyframes reserveQtyShake {
    0%,
    100% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-6px);
    }
    75% {
      transform: translateX(6px);
    }
  }
  .reserve-modal-optin {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding-top: 2px;
  }
  .reserve-modal-optin-text {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.7;
  }
  .reserve-modal-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .reserve-option-card {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: #161616;
    color: #fff;
    text-align: left;
    transition:
      border-color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease;
  }
  .reserve-option-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
  }
  .reserve-option-card.is-selected {
    border-color: #0bd994;
    background: rgba(11, 217, 148, 0.1);
    box-shadow: inset 0 0 0 1px rgba(11, 217, 148, 0.14);
  }
  .reserve-option-card-radio {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
  }
  .reserve-option-card.is-selected .reserve-option-card-radio {
    border-color: #0bd994;
  }
  .reserve-option-card.is-selected .reserve-option-card-radio::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: #0bd994;
  }
  .reserve-option-card-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }
  .reserve-option-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.8);
  }
  .reserve-option-card-price-line {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .reserve-option-card-price {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #0bd994;
  }
  .reserve-option-card-price-old {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    line-height: 1;
    text-decoration: line-through;
  }
  .reserve-option-card-badge {
    margin-left: auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: #de6b2e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }
  .reserve-option-card--edition {
    width: min(172px, 100%);
    min-height: 156px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 14px 14px 16px;
    border-radius: 8px;
  }
  .reserve-option-card--edition.is-selected {
    background: rgba(7, 74, 50, 0.58);
    box-shadow: none;
  }
  .reserve-option-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .reserve-option-card--edition .reserve-option-card-radio {
    margin-top: 0;
  }
  .reserve-option-card--edition .reserve-option-card-copy {
    gap: 0;
  }
  .reserve-option-card--edition .reserve-option-card-title {
    font-size: 14px;
    line-height: 1.2;
  }
  .reserve-option-card--edition.is-selected .reserve-option-card-title {
    color: #0bd994;
  }
  .reserve-option-card-media {
    margin-top: auto;
    width: 100%;
  }
  .reserve-option-card-media img {
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
  }
  .reserve-modal-disclaimer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .reserve-payment-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
    padding: 18px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #161616;
  }
  .reserve-payment-flow-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
    padding: 0 2px;
  }
  .reserve-payment-flow-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
  }
  .reserve-payment-flow-subtitle {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
  }
  .reserve-payment-flow-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .reserve-payment-flow-step {
    position: relative;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 12px 0;
  }
  .reserve-payment-flow-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 36px;
    bottom: -12px;
    width: 2px;
    background: linear-gradient(
      to bottom,
      rgba(11, 217, 148, 0.55),
      rgba(11, 217, 148, 0.18)
    );
    border-radius: 2px;
  }
  .reserve-payment-flow-badge {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #06121f;
    background: #0bd994;
    box-shadow: 0 0 0 4px rgba(11, 217, 148, 0.12);
    flex-shrink: 0;
  }
  .reserve-payment-flow-step.is-future .reserve-payment-flow-badge {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
  }
  .reserve-payment-flow-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding-top: 2px;
  }
  .reserve-payment-flow-when {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0bd994;
    background: rgba(11, 217, 148, 0.12);
    line-height: 1.2;
  }
  .reserve-payment-flow-step.is-future .reserve-payment-flow-when {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
  }
  .reserve-payment-flow-step-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
  }
  .reserve-payment-flow-step-desc {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
  }
  .reserve-payment-flow-amount {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 4px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(11, 217, 148, 0.1);
    color: #0bd994;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    align-self: flex-start;
  }
  .reserve-payment-flow-step.is-future .reserve-payment-flow-amount {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
  }
  .reserve-payment-flow-amount small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.75;
  }
  .reserve-modal-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
  }
  .reserve-modal-checkbox {
    display: none;
  }
  .reserve-modal-checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 5px;
    border: 1.5px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .reserve-modal-checkbox:checked + .reserve-modal-checkbox-custom {
    background: #09e79d;
    border-color: #09e79d;
  }
  .reserve-modal-checkbox:checked + .reserve-modal-checkbox-custom::after {
    content: "✓";
    color: #06121f;
    font-size: 14px;
    font-weight: 700;
  }
  .reserve-modal-disclaimer-text,
  .reserve-modal-disclaimer-note {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.7;
  }
  .reserve-modal-disclaimer-note {
    margin: 0;
    padding-left: 32px;
  }
  .reserve-modal-cta {
    margin-top: auto;
    flex-shrink: 0;
  }
  .reserve-modal-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    min-height: 104px;
    padding: 20px 24px 24px;
    border-radius: 22px 22px 0 0;
    background: rgba(48, 46, 49, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.32);
  }
  .reserve-modal-cta-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .reserve-modal-cta-title {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
  }
  .reserve-modal-cta-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .reserve-modal-cta-currency {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
  }
  .reserve-modal-cta-amount {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
  }
  .reserve-modal-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #08b179 0%, #09e79d 100%);
    color: #03110c;
    font-size: 16px;
    font-weight: 700;
    transition:
      background 0.2s ease,
      opacity 0.2s ease;
  }
  .reserve-modal-cta-inner {
    justify-content: flex-end;
  }
  .reserve-modal-cta-btn:hover {
    background: #24f2ae;
  }
  .reserve-modal-cta-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    filter: none;
  }

  .checkout-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .checkout-modal-overlay.open {
    display: flex;
  }
  .checkout-modal-card {
    position: relative;
    width: min(500px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 32px;
  }
  .checkout-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
  }
  .checkout-modal-close:hover {
    color: #fff;
  }
  .checkout-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    color: #fff;
  }
  .checkout-loading-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
  }
  .checkout-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #0bd994;
    border-radius: 50%;
    animation: checkout-spin 0.8s linear infinite;
    margin-bottom: 16px;
  }
  @keyframes checkout-spin {
    to { transform: rotate(360deg); }
  }
  .checkout-loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
  }
  .checkout-loading-error {
    color: #ff6b6b;
    font-size: 14px;
    margin: 12px 0 0;
  }
  .checkout-form-group {
    margin-bottom: 16px;
  }
  .checkout-form-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
  }
  .checkout-form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #0f0f0f;
    color: #fff;
    font-size: 16px;
    outline: none;
  }
  .checkout-form-input:focus {
    border-color: #09e79d;
  }
  .checkout-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }
  .checkout-form-error {
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 6px;
    display: none;
  }
  .checkout-form-error.show {
    display: block;
  }
  .checkout-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
  }
  .checkout-modal-btn {
    flex: 1;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
  }
  .checkout-modal-btn.cancel {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }
  .checkout-modal-btn.cancel:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  .checkout-modal-btn.submit {
    background: #09e79d;
    color: #000;
  }
  .checkout-modal-btn.submit:hover {
    background: #0ff5b3;
  }
  .checkout-modal-btn.submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  .checkout-modal-btn.submit.loading {
    position: relative;
    color: transparent;
  }
  .checkout-modal-btn.submit.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: checkoutSpin 0.8s linear infinite;
  }
  @keyframes checkoutSpin {
    to {
      transform: rotate(360deg);
    }
  }
  .checkout-stripe-card-group {
    margin-bottom: 16px;
  }
  .checkout-stripe-card-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
  }
  #checkoutCardElement {
    padding: 14px 16px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: border-color 0.2s;
  }
  #checkoutCardElement.StripeElement--focus {
    border-color: #09e79d;
  }
  #checkoutCardElement.StripeElement--invalid {
    border-color: #ff6b6b;
  }
  #checkoutCardErrors {
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 8px;
    min-height: 18px;
  }
  .checkout-order-summary {
    background: #0f0f0f;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
  }
  .checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  .checkout-summary-row:last-child {
    margin-bottom: 0;
  }
  .checkout-summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
  }
  .checkout-summary-value {
    color: #fff;
    font-size: 14px;
  }
  .checkout-summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 12px;
  }
  .checkout-summary-total-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }
  .checkout-summary-total-value {
    font-size: 20px;
    font-weight: 600;
    color: #e4bf0e;
  }
  .checkout-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .checkout-confirm-modal.open {
    display: flex;
  }
  .checkout-confirm-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 32px;
    width: min(400px, 100%);
    text-align: center;
  }
  .checkout-confirm-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ff6b6b;
  }
  .checkout-confirm-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
  }
  .checkout-confirm-message {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 24px;
  }
  .checkout-confirm-actions {
    display: flex;
    gap: 12px;
  }
  .checkout-confirm-btn {
    flex: 1;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
  }
  .checkout-confirm-btn.cancel {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }
  .checkout-confirm-btn.cancel:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  .checkout-confirm-btn.ok {
    background: #09e79d;
    color: #fff;
  }
  .checkout-confirm-btn.ok:hover {
    background: #0ff5b3;
  }
  .checkout-success-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .checkout-success-modal.open {
    display: flex;
  }
  .checkout-success-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 32px;
    width: min(480px, 100%);
    max-height: 90vh;
    overflow-y: auto;
  }
  .checkout-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(0, 179, 119, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #09e79d;
  }
  .checkout-success-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: #09e79d;
  }
  .checkout-success-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 24px;
  }
  .checkout-success-details {
    background: #0f0f0f;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
  }
  .checkout-success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .checkout-success-row:last-child {
    border-bottom: none;
  }
  .checkout-success-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
  }
  .checkout-success-value {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: right;
  }
  .checkout-success-value.highlight {
    color: #e4bf0e;
    font-size: 20px;
  }
  .checkout-success-contact {
    text-align: center;
    padding: 16px;
    background: rgba(0, 179, 119, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(0, 179, 119, 0.3);
  }
  .checkout-success-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
  }
  .checkout-success-contact a {
    color: #09e79d;
    font-size: 16px;
    font-weight: 500;
  }
  .checkout-success-contact a:hover {
    text-decoration: underline;
  }
  .checkout-success-btn {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: #09e79d;
    color: #fff;
    margin-top: 16px;
  }
  .checkout-success-btn:hover {
    background: #0ff5b3;
  }

  /* Subscribe modal */
  .subscribe-modal-overlay {
    inset: 0;
    z-index: 2000;
    display: block;
    padding: 0;
    background: transparent;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s ease-out,
      visibility 0.25s ease-out;
  }
  .subscribe-modal-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .subscribe-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .subscribe-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(729px, calc(100vw - 32px));
    max-height: 100vh;
    overflow-y: hidden;
    background:
      linear-gradient(
        180deg,
        rgba(7, 14, 12, 0.1) 0%,
        rgba(7, 14, 12, 0.82) 62%,
        rgba(7, 14, 12, 0.94) 100%
      );
    border-radius: 0px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.25s ease-out,
      transform 0.25s ease-out;
  }
  .subscribe-modal.ready {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
  }
  .subscribe-modal-close {
    position: fixed;
    top: calc((100vh - 729px)/2);
    left: calc(50% + min(729px, calc(100vw - 32px)) / 2 + 20px);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2003;
  }
  .subscribe-modal-close:hover {
    background: rgba(0, 0, 0, 0.82);
  }
  .subscribe-modal-close svg {
    width: 16px;
    height: 16px;
  }
  .subscribe-modal-content {
    padding: 0px 0px;
  }
  .subscribe-modal-title {
    font-size: 32px;
    line-height: 1.4;
    color: #ffffff;
  }
  .subscribe-modal-subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.92);
  }
  .subscribe-modal-subtitle span {
    color: #01b77a;
  }
  .subscribe-modal-form {
    margin-top: 18px;
    min-height: 140px;
  }
  .subscribe-modal-form iframe,
  .subscribe-modal-form form {
    width: 100%;
  }
  .subscribe-modal-frame {
    width: 100%;
    height: 80vh;
    min-height: 560px;
    border: 0;
    display: block;
    background: transparent;
  }
  .subscribe-modal-error {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
  }
  .subscribe-modal-loading {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 2002;
    transition:
      opacity 0.25s ease-out,
      visibility 0.25s ease-out;
  }
  .subscribe-modal-loading.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .subscribe-modal-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: subscribe-spin 0.8s linear infinite;
  }
  @keyframes subscribe-spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* Cookie banner */
  .cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    background: rgba(12, 14, 18, 0.96);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
  }
  .cookie-banner.active {
    display: flex;
  }
  .cookie-banner p {
    font-size: 12px;
    color: var(--muted);
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
  }
  .cookie-banner .btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Subscribe toast */
  .toast {
    position: fixed;
    left: 50%;
    top: 56px;
    width: min(92vw, 372px);
    min-height: 104px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
    z-index: 9999;
  }
  .toast.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .toast-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .toast-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .toast-title {
    color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    margin: 0;
  }
  .toast-desc {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 20px;
    margin: 4px 0 0;
  }
  
  .reserve-modal {
    width: min(540px, 100vw);
  }
  .reserve-modal-content {
    padding: 34px 26px 22px;
  }
  .reserve-modal-close {
    right: calc(min(540px, 100vw) + 16px);
  }
  .reserve-modal-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  
  @media (max-width: 768px) {
    .subscribe-modal {
      width: min(100vw - 24px, 729px);
    }
    .subscribe-modal-close {
      top: 18px;
      left: auto;
      right: 20px;
    }
    .subscribe-modal-content {
      padding: 104px 22px 20px;
    }
    .subscribe-modal-title {
      font-size: 26px;
      line-height: 1.4;
    }
    .subscribe-modal-frame {
      height: 620px;
      min-height: 620px;
    }
    .toast {
      top: 16px;
    }
  }

  @media (max-height: 760px) {
    .subscribe-modal-content {
      padding-top: 100px;
      padding-bottom: 20px;
    }
    .subscribe-modal-title {
      font-size: 28px;
      line-height: 1.35;
    }
    .subscribe-modal-subtitle {
      margin-top: 6px;
    }
    .subscribe-modal-form {
      margin-top: 16px;
    }
  }

  @media (max-height: 560px) {
    .subscribe-modal {
      max-height: 96vh;
    }
    .subscribe-modal-content {
      padding: 68px 18px 18px;
    }
    .subscribe-modal-title {
      font-size: 22px;
      line-height: 1.25;
    }
    .subscribe-modal-subtitle {
      font-size: 14px;
      line-height: 1.4;
      margin-top: 4px;
    }
    .subscribe-modal-form {
      margin-top: 12px;
      min-height: 100px;
    }
  }

  /* Responsive */
  @media (max-width: 960px) {
    #how .container {
      padding-left: 16px;
      padding-right: 16px;
    }

    h2 {
      font-size: clamp(34px, 8vw, 56px);
    }
    .nav-inner {
      grid-template-columns: auto 1fr auto;
    }
    .nav-links {
      gap: 18px;
      font-size: 12px;
    }
    .hero-copy h1 {
      font-size: clamp(42px, 10vw, 72px);
    }
    .hero-actions {
      margin-bottom: 260px;
    }
    .earn-grid,
    .compare-grid,
    .ready-card,
    .battery-grid {
      grid-template-columns: 1fr;
    }
    .steps-grid,
    .revenue-grid,
    .backed-row,
    .spec-grid,
    .mission-stats,
    .battery-cards,
    .checkout-form {
      grid-template-columns: 1fr;
    }
    .checkout-form .full {
      grid-column: span 1;
    }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 48px 36px;
    }
    .footer-join {
      grid-column: 1 / -1;
    }
    .earn-lease {
      grid-template-columns: 1fr;
    }
    #fleet .section-title {
      margin-bottom: 30px;
    }
    #fleet .section-title h2 {
      font-size: clamp(40px, 7.4vw, 60px);
    }
    .fleet-card {
      flex-basis: calc(100% - 72px);
      min-height: 424px;
      padding: 40px 32px;
      background-position: 68% center;
    }
    .fleet-card h3 {
      font-size: clamp(34px, 5.6vw, 44px);
    }
    .fleet-card p {
      font-size: 15px;
      max-width: 300px;
    }
    #team .section-title {
      margin-bottom: 34px;
    }
    #team .section-title h2 {
      font-size: clamp(44px, 8vw, 62px);
    }
    .team-card {
      flex-basis: calc(100% - 64px);
      min-height: 320px;
    }
    .nairobi-hero {
      height: clamp(240px, 42vw, 320px);
    }
    .nairobi-body {
      margin-top: -24px;
      padding: 38px 28px 28px;
    }
    .drivers-video-btn span{
      font-size: 18px;
    }
    .nairobi-demand {
      align-items: flex-start;
      gap: 18px;
    }
    .nairobi-demand-text {
      font-size: clamp(28px, 7vw, 38px);
    }
    .nairobi-advantages {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .spec-shell {
      padding: 72px 16px 36px;
    }
    .spec-top h2 {
      font-size: clamp(36px, 9vw, 54px);
      margin-bottom: 20px;
    }
    .spec-action {
      font-size: 14px;
    }
    .spec-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      row-gap: 22px;
    }
    .spec-item {
      border-left: 0;
    }
    .battery-wrap {
      min-height: auto;
      padding: 40px 0 26px;
    }
    .battery-section,
    .battery-section .container {
      min-height: auto;
    }
    .battery-section {
      background-size: cover;
      background-position: center center;
    }
    .battery-head h2 {
      font-size: clamp(42px, 10vw, 60px);
      max-width: none;
    }
    .battery-cards {
      gap: 34px;
    }
    .backed-row {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      max-width: 460px;
    }
    .ready-card {
      min-height: auto;
      background-position: 66% center;
    }
    .ready-copy {
      padding: 36px 22px 16px;
    }
    .ready-copy h2 {
      font-size: clamp(34px, 10vw, 52px);
    }
    .ready-copy p {
      font-size: 15px;
    }
    .ready-list li {
      font-size: 14px;
    }
    .ready-reserve {
      font-size: 14px;
    }
    .ready-media {
      display: none;
    }
  }
  @media (max-width: 560px) {
    .nav-links {
      display: none;
    }
    .nav-inner {
      grid-template-columns: auto 1fr auto;
      gap: 10px;
    }
    .nav-brand {
      padding-left: 0;
      justify-self: center;
    }
    .nav-brand::before {
      display: none;
    }
    .nav-menu-toggle {
      display: inline-flex;
      justify-self: start;
    }
    .mobile-nav-overlay {
      display: flex;
    }
    .section-title h2 {
      font-size: 42px;
    }
    .reserve-modal-content {
      padding: 25px 18px 16px;
    }
    .reserve-modal-title {
      margin-right: 0;
      font-size: 28px;
    }
    .reserve-modal {
      width: 100vw;
    }
    .reserve-modal-steps {
      gap: 20px;
      margin-bottom: 24px;
    }
    .reserve-step-tab {
      font-size: 14px;
      padding-bottom: 14px;
    }
    .reserve-option-card {
      flex-wrap: wrap;
      padding: 14px 16px;
    }
    .reserve-option-card--edition {
      width: min(172px, 100%);
      min-height: 156px;
      flex-wrap: nowrap;
      gap: 16px;
      padding: 14px 14px 16px;
    }
    .reserve-option-card--edition .reserve-option-card-title {
      font-size: 14px;
    }
    .reserve-option-card-media img {
      width: 100%;
    }
    .reserve-option-card-price {
      font-size: 22px;
    }
    .reserve-option-card-badge {
      margin-left: 34px;
    }
    .reserve-modal-disclaimer-note {
      padding-left: 0;
    }
    .reserve-payment-flow {
      padding: 16px 14px;
    }
    .reserve-payment-flow-badge {
      width: 28px;
      height: 28px;
      font-size: 12px;
    }
    .reserve-payment-flow-step:not(:last-child)::before {
      left: 13px;
      top: 32px;
    }
    .reserve-payment-flow-step-title {
      font-size: 14px;
    }
    .reserve-payment-flow-step-desc {
      font-size: 12px;
    }
    .reserve-payment-flow-amount {
      font-size: 13px;
    }
    .reserve-modal-cta-inner {
      flex-direction: column;
      align-items: stretch;
      min-height: 0;
      padding: 18px 18px 22px;
      border-radius: 20px 20px 0 0;
    }
    .reserve-modal-cta-price {
      font-size: 22px;
    }
    .reserve-modal-cta-btn {
      width: 100%;
      min-width: 0;
    }
    .reserve-modal-close {
      top: 18px;
      right: 18px;
    }
    #fleet .section-title {
      margin-bottom: 24px;
    }
    #fleet .section-title h2 {
      font-size: 42px;
    }
    #team .section-title {
      margin-bottom: 28px;
    }
    #team .section-title h2 {
      font-size: 42px;
    }
    .nairobi-demand-label,
    .nairobi-advantages {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-sitemap-grid {
      gap: 18px 26px;
    }
    .footer-subscribe {
      max-width: none;
    }
    .footer-subscribe input {
      font-size: 14px;
    }
    .footer-to-top {
      right: 16px;
      bottom: 20px;
    }
  }

  @media (max-width: 560px) {
    .container {
      padding: 0 16px;
    }

    .section {
      padding: 52px 0;
    }

    .section-sm {
      padding: 32px 0;
    }

    .section-title {
      max-width: none;
      margin-bottom: 24px;
    }

    .section-title .eyebrow,
    .eyebrow-inline {
      font-size: 17px;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }

    .nav-right {
      gap: 10px;
    }

    .earn-grid {
      gap: 12px;
    }

    #earn .section-title {
      margin-bottom: 28px;
    }

    .section-title p {
      margin-top: 10px;
      font-size: 15px;
      line-height: 1.3;
    }

    .earn-card {
      min-height: 406px;
      border-radius: 16px;
    }

    .earn-card::after {
      height: 60%;
    }

    .earn-breakdown-card {
      padding: 20px 16px 18px;
    }

    .earn-breakdown-head {
      max-width: 240px;
      margin-bottom: 12px;
    }

    .earn-breakdown-kicker {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .earn-breakdown-total {
      font-size: 44px;
    }

    .earn-breakdown-legend {
      gap: 8px 12px;
      margin-bottom: 14px;
    }

    .earn-breakdown-legend-item {
      gap: 6px;
    }

    .earn-breakdown-legend-label {
      font-size: 9px;
    }

    .earn-breakdown-legend-swatch {
      width: 7px;
      height: 7px;
      border-radius: 2px;
    }

    .earn-breakdown-legend-swatch-stack {
      gap: 2px;
    }

    .earn-breakdown-guides {
      top: 0;
      left: 44px;
      right: 56px;
      bottom: 60px;
    }

    .earn-breakdown-row {
      grid-template-columns: 44px minmax(0, 1fr) 56px;
      gap: 8px;
      min-height: 30px;
      margin-bottom: 10px;
    }

    .earn-breakdown-row--purchase {
      margin-bottom: 12px;
    }

    .earn-breakdown-year {
      font-size: 12px;
    }

    .earn-breakdown-bar {
      height: 20px;
      min-height: 20px;
      border-radius: 6px;
    }

    .earn-breakdown-value {
      font-size: 12px;
    }

    .earn-breakdown-axis {
      grid-template-columns: 44px minmax(0, 1fr) 56px;
      gap: 8px;
    }

    .earn-breakdown-scale {
      padding-top: 8px;
    }

    .earn-breakdown-scale span {
      font-size: 10px;
    }

    .earn-breakdown-axis-label {
      margin-top: 10px;
      font-size: 12px;
    }

    .earn-breakdown-note {
      margin-top: 10px;
      padding-top: 10px;
      font-size: 10px;
      line-height: 1.45;
      max-width: none;
    }

    .earn-side {
      display: flex;
      flex-direction: row;
      gap: 12px;
    }

    .earn-side-card {
      flex: 1;
      min-height: 185px;
      padding: 18px 16px;
      border-radius: 16px;
    }

    .earn-side-card.media,
    .earn-side-card--ad,
    .earn-side-card--revenue {
      min-height: 185px;
    }

    .earn-side-label {
      font-size: 14px;
      line-height: 1.3;
      margin-bottom: 6px;
    }

    .earn-side-title {
      font-size: 18px;
    }

    .earn-side-icon {
      width: 42px;
      height: 42px;
      margin-top: 0;
    }

    .earn-side-copy {
      max-width: none;
      font-size: 14px;
      line-height: 1.4;
    }

    .steps-grid {
      display: flex;
      grid-template-columns: none;
      flex-wrap: nowrap;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      margin: 0 -16px;
      padding: 0 16px 8px;
    }

    .steps-grid::-webkit-scrollbar {
      display: none;
    }

    .step-card {
      flex: 0 0 78%;
      max-width: 320px;
      scroll-snap-align: start;
    }

    .steps-grid > .step-card:first-of-type {
      margin-left: 0;
    }

    .step-thumb {
      height: 356px;
      aspect-ratio: auto;
      margin-bottom: 20px;
      border-radius: 10px;
    }

    .step-num-badge {
      top: 12px;
      left: 12px;
      width: 42px;
    }

    .step-body {
      padding: 0;
    }

    .step-card h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 15px;
      line-height: 1.3;
    }

    .compare-head {
      margin-bottom: 18px;
      text-align: center;
    }

    .compare-head h2,
    .mission-head h2 {
      font-size: 42px;
      line-height: 1.05;
    }

    .compare-head p {
      font-size: 17px;
      line-height: 1.3;
      max-width: none;
    }

    .compare-grid {
      gap: 12px;
    }

    .compare-card,
    .metric-stack {
      min-height: 0;
      height: auto;
      padding: 18px 16px;
      border-radius: 10px;
    }

    .compare-card-head {
      margin-bottom: 18px;
    }

    .compare-card-head .circle-icon {
      width: 18px;
      height: 18px;
      font-size: 10px;
    }

    .compare-card-head .title {
      font-size: 15px;
      font-weight: 500;
    }

    .bar-row {
      grid-template-columns: 72px 1fr;
      gap: 12px;
      margin-bottom: 24px;
    }

    .bar-row .car-thumb {
      width: 72px;
      height: 52px;
    }

    .bar-name {
      font-size: 14px;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .bar-line {
      gap: 10px;
    }

    .bar-track {
      height: 16px;
      border-radius: 5px;
    }

    .bar-fill {
      border-radius: 5px;
    }

    .bar-amount {
      min-width: 30px;
      font-size: 20px;
    }

    .bar-track .bar-amount.follow-fill {
      left: calc(var(--progress-width, 0%) + 8px);
    }

    .metric-stack .compare-card-head {
      margin-bottom: 4px;
    }

    .metric {
      padding: 14px 0;
    }

    .metric-value {
      gap: 8px;
      margin-bottom: 6px;
      font-size: 42px;
    }

    .metric-value .arrow {
      font-size: 18px;
    }

    .metric-label {
      font-size: 12px;
    }

    .revenue-grid {
      gap: 12px;
    }

    .revenue-card {
      padding: 20px 16px 18px;
      border-radius: 18px;
    }

    .revenue-card .rev-label {
      font-size: 18px;
      margin-bottom: 40px;
    }

    .revenue-card .rev-label svg {
      width: 16px;
      height: 16px;
    }

    .revenue-card .rev-amount {
      font-size: 38px;
      margin-bottom: 30px;
    }
    .revenue-card .rev-divider {
      margin-bottom: 14px;
    }

    .revenue-card .rev-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.75);
    }

    .revenue-foot {
      margin-top: 16px;
      font-size: 12px;
      line-height: 1.5;
      text-align: left;
    }

    .mission-section {
      min-height: 968px;
    }

    .mission-section .container {
      min-height: 968px;
      padding-top: 56px;
      padding-bottom: 22px;
    }

    .mission-head {
      max-width: auto;
      margin-bottom: 20px;
    }

    .mission-head p {
      font-size: 17px;
      line-height: 1.3;
      margin-top: 12px;
    }

    .mission-reserve-btn {
      font-size: 14px;
      min-width: 152px;
      min-height: 36px;
      padding: 0 16px;
      font-weight: 500;
      border-radius: 999px;
    }

    .mission-pin-wrap {
      left: 72%;
      top: 64%;
    }

    .mission-pin {
      gap: 6px;
      padding: 6px 12px;
      font-size: 17px;
    }

    .mission-pin::before {
      width: 6px;
      height: 6px;
      box-shadow: 0 0 0 4px rgba(31, 212, 122, 0.18);
    }

    .mission-stats {
      grid-template-columns: 1fr;
      gap: 0;
      width: 100%;
      max-width: none;
      margin: auto 0 0;
    }

    .mission-stat {
      text-align: left;
      padding: 12px 0;
    }

    .mission-stat + .mission-stat {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mission-stat strong {
      font-size: 30px;
      margin-bottom: 6px;
    }

    .mission-stat span {
      font-size: 14px;
      line-height: 1.35;
    }

    .nairobi-hero {
      width: 100%;
      height: 200px;
      border-radius: 18px;
    }

    .nairobi-body {
      margin-top: -30px;
      padding: 22px 18px 18px;
      border-radius: 16px;
    }

    .nairobi-h {
      margin-bottom: 12px;
    }

    .nairobi-h h3 {
      font-size: 38px;
    }

    .nairobi-body .hint {
      font-size: 17px;
      line-height: 1.3;
      margin-bottom: 18px;
    }

    .nairobi-demand {
      gap: 12px;
      margin-bottom: 34px;
    }

    .nairobi-demand-icon {
      width: 40px;
      height: 40px;
    }

    .nairobi-demand-icon svg {
      width: 20px;
      height: 20px;
    }

    .nairobi-demand-label {
      font-size: 14px;
      margin-bottom: 4px;
    }

    .nairobi-demand-text {
      font-size: 20px;
    }

    .nairobi-divider {
      gap: 10px;
      margin-bottom: 14px;
      font-size: 12px;
    }

    .nairobi-advantages {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: repeat(2, auto);
      gap: 12px;
      overflow: visible;
    }

    .nairobi-advantages::-webkit-scrollbar {
      display: none;
    }

    .nairobi-adv {
      min-height: 58px;
      gap: 12px;
      padding: 12px 14px;
      scroll-snap-align: none;
    }

    .nairobi-adv-icon {
      width: 20px;
      height: 20px;
    }

    .nairobi-adv-text {
      font-size: 14px;
      line-height: 1.35;
    }

    .spec-section {
      min-height: 812px;
    }

    .spec-shell {
      min-height: 812px;
      padding: 48px 16px 24px;
    }

    .spec-top .label {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .spec-top h2 {
      font-size: 42px;
      margin-bottom: 16px;
    }

    .spec-actions {
      gap: 8px;
    }

    .spec-action {
      gap: 6px;
      padding: 8px 12px;
      font-size: 12px;
    }

    .spec-action .icon img {
      width: 12px;
      height: 12px;
    }

    .spec-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      margin-top: auto;
    }

    .spec-item {
      padding: 12px 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-left: 0;
    }

    .spec-item:nth-child(odd) {
      border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .spec-item strong {
      font-size: 24px;
      margin-bottom: 4px;
    }

    .spec-item span {
      font-size: 11px;
      line-height: 1.35;
    }

    .battery-section {
      min-height: 812px;
      background-image: url("../images/m/bg-2.png");
      background-size: cover;
      background-position: center center;
    }

    .battery-section .container {
      min-height: 812px;
    }

    .battery-wrap {
      min-height: 812px;
      padding: 44px 0 24px;
    }

    .battery-head .eyebrow {
      font-size: 17px;
      margin-bottom: 8px;
    }

    .battery-head h2 {
      font-size: 42px;
    }

    .battery-cards {
      display: flex;
      flex-wrap: nowrap;
      gap: 28px;
      overflow-x: auto;
      width: calc(100% + 16px);
      margin-right: -16px;
      padding-right: 16px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .battery-cards::-webkit-scrollbar {
      display: none;
    }

    .battery-card {
      flex: 0 0 82%;
      max-width: 320px;
      scroll-snap-align: start;
    }

    .battery-pack {
      height: 58px;
      margin-bottom: 18px;
    }

    .battery-pack img {
      max-height: 58px;
    }

    .battery-card .btag {
      font-size: 16px;
      margin-bottom: 6px;
    }

    .battery-card .bmeta {
      align-items: flex-end;
      margin-bottom: 12px;
    }

    .battery-card .bnum {
      font-size: 40px;
    }

    .battery-card .bnum small {
      margin-left: 6px;
    }

    .battery-card .bchip {
      min-height: 32px;
      padding: 0 10px 0 8px;
      font-size: 13px;
      border-radius: 999px;
    }

    .battery-card .bchip.bchip--charging {
      padding: 6px 8px;
      border-radius: 10px;
      font-size: 11px;
      line-height: 1.2;
    }

    .battery-card .bchip-icon {
      width: 12px;
      height: 12px;
      flex-basis: 12px;
    }

    .battery-card .bnote {
      padding-top: 14px;
      font-size: 14px;
      line-height: 1.52;
    }

    .fleet-wrap {
      overflow: visible;
    }

    .fleet-carousel {
      --fleet-bleed: 16px;
      gap: 14px;
      width: calc(100% + var(--fleet-bleed));
      margin-right: calc(var(--fleet-bleed) * -1);
      padding-bottom: 0;
    }

    .fleet-card {
      flex: 0 0 calc(100% - 28px);
      max-width: 352px;
      min-height: 482px;
      max-height: none;
      padding: 28px 22px;
      border-radius: 20px;
      align-items: stretch;
      background-position: center center;
    }

    .fleet-card-copy {
      max-width: auto;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .fleet-card h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .fleet-card p {
      font-size: 15px;
      line-height: 1.3;
    }

    .fleet-maya-video-btn-wrap {
      margin-top: auto;
      margin-bottom: 0;
      align-self: center;
      justify-content: center;
    }

    .fleet-controls {
      gap: 10px;
      margin-top: 18px;
    }

    .fleet-arrow,
    .team-arrow {
      width: 40px;
      height: 30px;
    }

    .fleet-pagination {
      gap: 6px;
      padding: 6px 12px;
    }

    .fleet-dot.active {
      width: 16px;
    }

    .team-wrap {
      overflow: visible;
    }

    .team-carousel {
      gap: 12px;
    }

    .team-card {
      min-height: 324px;
      padding: 22px 18px 18px;
      border-radius: 18px;
    }

    .team-featured-logo {
      width: 72px;
    }

    .team-role {
      padding: 6px 10px;
      margin-bottom: 14px;
      font-size: 12px;
    }

    .team-card h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .team-card p {
      font-size: 15px;
      line-height: 1.55;
    }

    .team-card.is-active {
      transform: none;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .team-link {
      width: 24px;
      height: 24px;
      border-radius: 6px;
    }

    .team-controls {
      margin-top: 12px;
    }

    .backed-label {
      font-size: 17px;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .backed-row {
      gap: 12px;
      max-width: none;
    }

    .backed-cell {
      gap: 8px;
    }

    .backed-cell img {
      max-height: 60px;
    }

    .backed-name {
      font-size: 12px;
      line-height: 1.25;
    }

    #reserve .container {
      padding: 0;
    }

    .ready-card {
      display: flex;
      align-items: stretch;
      grid-template-columns: 1fr;
      min-height: 0;
      aspect-ratio: 750 / 2000;
      border-radius: 0;
      background-image: url("../images/m/bg-6.png");
      background-position: top center;
      background-size: 100% auto;
      background-repeat: no-repeat;
    }

    .ready-copy {
      flex: 1 1 auto;
      min-height: 90%;
      height: auto;
      display: flex;
      flex-direction: column;
      padding: clamp(268px, 72vw, 316px) 24px
        calc(20px + env(safe-area-inset-bottom, 0px));
    }

    .ready-copy h2 {
      font-size: 32px;
      line-height: 1.12;
      margin-bottom: 12px;
    }

    .ready-copy p {
      margin-bottom: 35px;
      font-size: 17px;
      line-height: 1.5;
    }

    .ready-form {
      gap: 12px;
      margin-bottom: 18px;
    }

    .ready-reserve {
      height: 46px;
      font-size: 14px;
      border-radius: 12px;
    }

  .ready-list {
    gap: 10px;
  }

  .ready-list li {
    font-size: 14px;
  }

  .ready-payment-flow {
    padding: 12px;
  }

  .ready-payment-flow-title {
    font-size: 10px;
  }

  .ready-payment-step {
    padding: 7px 0 7px 22px;
  }

  .ready-payment-step::before {
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    left: -9px;
    top: 8px;
  }

  .ready-payment-step-title {
    font-size: 12px;
  }

  .ready-payment-step-desc {
    font-size: 10px;
  }

  .ready-payment-step-amount {
    font-size: 11px;
  }

  .ready-payment-flow-total {
    font-size: 11px;
  }

  .ready-payment-flow-total strong {
    font-size: 13px;
  }

  .ready-support {
      margin-top:10px;
      padding-top: 14px;
      font-size: 12px;
    }

    #faq .section-title {
      margin-bottom: 28px;
    }

    .faq-controls,
    .faq-wrap {
      max-width: none;
    }

    .faq-controls {
      margin-bottom: 18px;
    }

    .faq-categories-row {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 0 4px 4px;
      margin: 0 -4px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .faq-categories-row::-webkit-scrollbar {
      display: none;
    }

    .faq-categories-panel {
      gap: 8px;
    }

    .faq-chip,
    .faq-toggle {
      min-height: 36px;
      padding: 0 14px;
      font-size: 13px;
    }

    .faq-toggle-icon {
      width: 13px;
      height: 13px;
    }

    .faq-categories-divider {
      margin-top: 18px;
    }

    .faq-item {
      margin-bottom: 10px;
      border-radius: 12px;
    }

    .faq-btn {
      padding: 17px 16px 17px 18px;
      font-size: 16px;
      line-height: 1.4;
      gap: 12px;
    }

    .faq-icon {
      width: 20px;
      height: 20px;
      flex-basis: 20px;
    }

    .faq-icon::before,
    .faq-icon::after {
      width: 14px;
    }

    .faq-answer {
      font-size: 13px;
      line-height: 1.6;
    }

    .faq-answer-copy {
      padding: 0 18px 18px;
    }

    .faq-answer-copy p + p {
      margin-top: 12px;
    }

    .footer-disclaimer {
      margin-bottom: 28px;
      padding: 18px 0 20px;
    }

    .footer-disclaimer p {
      font-size: 11px;
      line-height: 1.55;
    }

    .footer-grid {
      gap: 28px;
    }

    .footer-brand img {
      max-width: 88px;
    }

    .footer-contact-item span,
    .footer-sitemap-grid a,
    .footer-contact-item,
    .footer-social {
      gap: 10px;
    }

    .footer-copy {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: flex-start;
    }
  }

  @media (max-width: 560px) {
    :root {
      --nav-h: 58px;
      --nav-banner-h: 42px;
    }

    #how .steps-grid {
      padding-left: 16px !important;
    }

    #how .steps-grid > .step-card:first-child,
    #how .steps-grid > .step-card:first-of-type {
      margin-left: 0 !important;
    }

    .steps-title-mobile-break {
      display: inline;
    }

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

    .nav {
      background: rgba(16, 19, 20, 0.96);
    }

    .nav-inner {
      grid-template-columns: auto auto 1fr;
      gap: 6px;
    }

    .nav-brand {
      position: static;
      padding-left: 0;
      justify-self: start;
    }

    .nav-brand::before {
      display: none;
    }

    .nav-brand img {
      height: 40px;
    }

    .nav-tool {
      display: none;
    }

    .nav-cta {
      min-height: 36px;
      padding: 0 14px;
      font-size: 13px;
      font-weight: 600;
      border-radius: 8px;
      background: rgba(11, 217, 148, 0.18);
    }

    .nav-banner {
      height: var(--nav-banner-h);
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      background: rgba(31, 37, 40, 0.98);
      color: rgba(239, 243, 249, 0.92);
    }

    .nav-banner img {
      width: 22px;
      height: 22px;
    }

    .hero {
      min-height: 100svh;
      text-align: center;
      padding-top: calc(var(--nav-h) + var(--nav-banner-h) + 4px);
      background-image: url("../images/m/bg.png");
      background-position: center bottom;
      background-size: cover;
    }

    .hero .container {
      min-height: calc(100svh - var(--nav-h) - var(--nav-banner-h));
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .hero-copy {
      max-width: 328px;
      margin: 0 auto;
      padding-top: 34px;
      text-align: center;
    }
    .hero-copy h1 {
      font-size: 36px;
      line-height: 40px;

      margin: 0 0 16px;
      text-wrap: balance;
    }

    .hero-copy p {
      max-width: 300px;
      margin: 0 auto 20px;
      font-size: 17px;
      font-weight: 500;
      line-height: 1.45;
    }

    .hero-actions {
      justify-content: center;
      gap: 10px;
      margin-bottom: 0;
      flex-wrap: nowrap;
    }

    .hero-actions .btn {
      min-width: 152px;
      min-height: 36px;
      padding: 0 16px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 999px;
    }

    .hero-actions .btn-primary {
      color: #051c10;
    }

    .hero-actions .btn-ghost {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(255, 255, 255, 0.34);
      color: rgba(0, 0, 0, 0.9);
    }

    .hero-scroll {
      bottom: 14px;
      gap: 6px;
      font-size: 12px;
      color: rgba(244, 248, 253, 0.84);
    }

    .hero-scroll img {
      width: 28px;
      height: 28px;
      padding: 6px;
      background: rgba(255, 255, 255, 0.02);
    }
  }

  /* ============ Life & motion layer ============ */

  /* Scroll reveal */
  [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
      opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
      transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  [data-reveal-group] > * {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
      opacity 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
      transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: calc(var(--reveal-i, 0) * 90ms);
    will-change: opacity, transform;
  }
  [data-reveal-group].is-visible > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Section boundary fog (for smart page switch) */
  body::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 32vh;
    pointer-events: none;
    z-index: 48;
    opacity: 0;
    transform: translate3d(0, -8px, 0) scale(1.03);
    background:
      radial-gradient(
        120% 88% at 50% -8%,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.07) 24%,
        rgba(255, 255, 255, 0) 66%
      ),
      linear-gradient(
        180deg,
        rgba(8, 13, 20, 0.42) 0%,
        rgba(8, 13, 20, 0.18) 46%,
        rgba(8, 13, 20, 0) 100%
      );
    filter: blur(12px);
    transition:
      opacity 180ms ease,
      transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
  }
  body.section-transitioning::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* Title clip-path reveal (x2y-style mask) */
  .title-reveal {
    display: inline-block;
    max-width: 100%;
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 18px, 0);
    opacity: 0.001;
    transition:
      clip-path 900ms cubic-bezier(0.22, 0.61, 0.21, 1),
      -webkit-clip-path 900ms cubic-bezier(0.22, 0.61, 0.21, 1),
      transform 900ms cubic-bezier(0.22, 0.61, 0.21, 1),
      opacity 600ms ease-out;
    will-change: clip-path, transform, opacity;
  }
  .title-reveal.is-visible {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  /* Key image scale-in (display-style reveal) */
  .img-reveal {
    opacity: 0.001;
    transform: scale(0.92);
    border-radius: 28px;
    overflow: hidden;
    clip-path: inset(0 0 0 0 round 28px);
    -webkit-clip-path: inset(0 0 0 0 round 28px);
    transition:
      transform 1100ms cubic-bezier(0.22, 0.61, 0.21, 1),
      opacity 700ms ease-out,
      border-radius 1100ms cubic-bezier(0.22, 0.61, 0.21, 1),
      clip-path 1100ms cubic-bezier(0.22, 0.61, 0.21, 1),
      -webkit-clip-path 1100ms cubic-bezier(0.22, 0.61, 0.21, 1);
    will-change: transform, opacity, border-radius;
  }
  .img-reveal.is-visible {
    opacity: 1;
    transform: scale(1);
    border-radius: 0;
    clip-path: inset(0 0 0 0 round 0);
    -webkit-clip-path: inset(0 0 0 0 round 0);
  }

  @media (prefers-reduced-motion: reduce) {
    .title-reveal,
    .title-reveal.is-visible,
    .img-reveal,
    .img-reveal.is-visible {
      clip-path: none !important;
      -webkit-clip-path: none !important;
      transform: none !important;
      opacity: 1 !important;
      border-radius: 0 !important;
      transition: none !important;
    }
  }

  /* Card entrance (tech accent) */
  .card-enter {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.985);
    filter: saturate(0.86) brightness(0.96);
  }
  .card-enter.is-visible {
    animation: cardEnterTech 560ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: calc(var(--card-enter-i, 0) * 55ms);
  }
  @keyframes cardEnterTech {
    0% {
      opacity: 0;
      transform: translate3d(0, 16px, 0) scale(0.985);
      filter: saturate(0.86) brightness(0.96);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: none;
    }
  }

  /* Nav active indicator */
  .nav-links a {
    position: relative;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -6px;
    height: 2px;
    background: var(--green-bright);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .nav-links a.is-active::after,
  .nav-links a:hover::after {
    transform: scaleX(1);
  }

  /* Button micro-interactions */
  .btn {
    transition:
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      opacity 0.2s ease;
  }
  .btn-primary:hover {
    transform: none;
    box-shadow: none;
  }
  .btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 14px rgba(11, 217, 148, 0.28);
  }
  .btn-ghost:hover {
    transform: none;
  }
  .nav-cta {
    transition:
      background 0.2s ease,
      color 0.2s ease,
      opacity 0.2s ease;
  }
  .nav-cta:hover {
    transform: none;
    box-shadow: none;
  }
  .qty-actions button {
    transition:
      transform 0.12s ease,
      background 0.2s ease;
  }
  .qty-actions button:active {
    transform: scale(0.9);
  }

  /* Reserve total pulse on quantity change */
  @keyframes totalPulse {
    0% {
      transform: scale(1);
      color: inherit;
    }
    40% {
      transform: scale(1.08);
      color: var(--green-bright);
    }
    100% {
      transform: scale(1);
      color: inherit;
    }
  }
  .total-pulse {
    display: inline-block;
    animation: totalPulse 0.35s ease;
  }

  /* Cards hover lift */
  .step-card,
  .revenue-card,
  .earn-side-card,
  .backed-cell,
  .nairobi-adv {
    transition:
      transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
      box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
      border-color 0.3s ease;
  }
  @media (hover: hover) and (pointer: fine) {
    .step-card:hover,
    .revenue-card:hover,
    .earn-side-card:hover,
    .backed-cell:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }
    .nairobi-adv:hover {
      transform: translateY(-2px);
    }
  }

  /* Mission pin pulse */
  .mission-pin::before {
    animation: pinPulse 2.4s ease-out infinite;
  }
  @keyframes pinPulse {
    0% {
      box-shadow:
        0 0 0 0 rgba(31, 212, 122, 0.55),
        0 0 0 0 rgba(31, 212, 122, 0.28);
    }
    70% {
      box-shadow:
        0 0 0 10px rgba(31, 212, 122, 0),
        0 0 0 18px rgba(31, 212, 122, 0);
    }
    100% {
      box-shadow:
        0 0 0 0 rgba(31, 212, 122, 0),
        0 0 0 0 rgba(31, 212, 122, 0);
    }
  }

  /* Metric arrow bounce */
  @keyframes arrowBounceUp {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-4px);
    }
  }
  @keyframes arrowBounceDown {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(4px);
    }
  }
  .metric.up .arrow {
    display: inline-block;
    animation: arrowBounceUp 1.8s ease-in-out infinite;
  }
  .metric.down .arrow {
    display: inline-block;
    animation: arrowBounceDown 1.8s ease-in-out infinite;
  }

  /* Hero background drift */
  .hero {
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: -24%;
    background:
      radial-gradient(
        42% 30% at 20% 68%,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 28%,
        rgba(255, 255, 255, 0) 62%
      ),
      radial-gradient(
        36% 26% at 78% 58%,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 30%,
        rgba(255, 255, 255, 0) 66%
      ),
      radial-gradient(
        30% 22% at 58% 74%,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 34%,
        rgba(255, 255, 255, 0) 70%
      );
    filter: blur(24px);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
    opacity: 0.38;
    will-change: transform, opacity;
    animation: heroSmokeDrift 19s linear infinite;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: -20%;
    background:
      radial-gradient(
        40% 40% at 20% 30%,
        rgba(11, 217, 148, 0.18) 0%,
        transparent 65%
      ),
      radial-gradient(
        35% 35% at 80% 70%,
        rgba(31, 212, 122, 0.12) 0%,
        transparent 65%
      );
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
    animation: heroDrift 22s ease-in-out infinite alternate;
  }
  .hero > .container {
    position: relative;
    z-index: 1;
  }
  @keyframes heroDrift {
    0% {
      transform: translate3d(0, 0, 0) scale(1);
      opacity: 0.9;
    }
    100% {
      transform: translate3d(-3%, 2%, 0) scale(1.08);
      opacity: 1;
    }
  }
  @keyframes heroSmokeDrift {
    0% {
      transform: translate3d(-0.8%, 0, 0) scale(1.03);
      opacity: 0.28;
    }
    35% {
      transform: translate3d(2.1%, -1.6%, 0) scale(1.08);
      opacity: 0.42;
    }
    70% {
      transform: translate3d(-1.5%, 1.4%, 0) scale(1.06);
      opacity: 0.34;
    }
    100% {
      transform: translate3d(1.2%, -0.9%, 0) scale(1.09);
      opacity: 0.3;
    }
  }

  /* FAQ icon accent */
  .faq-icon {
    transition: color 0.2s ease;
  }
  .faq-item.active .faq-icon {
    transform: none;
  }

  /* Cookie banner slide-in */
  .cookie-banner {
    transform: translateY(120%);
    opacity: 0;
    transition:
      transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
      opacity 0.35s ease;
    display: flex !important;
    pointer-events: none;
  }
  .cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Footer social hover */
  .footer-social a {
    transition:
      transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
      filter 0.25s ease;
  }
  .footer-social a:hover {
    transform: translateY(-3px);
    filter: brightness(1.3) drop-shadow(0 6px 14px rgba(11, 217, 148, 0.35));
  }

  /* Back to top visibility */
  .footer-to-top {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
      background 0.25s ease;
  }
  .footer-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .footer-to-top:hover {
    transform: translateY(-3px);
  }

  /* Carousel active card emphasis */
  .fleet-card,
  .team-card {
    transition:
      transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
      box-shadow 0.35s ease,
      border-color 0.3s ease;
  }
  .fleet-card.is-active {
    box-shadow: none;
  }
  .team-card.is-active {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.4);
  }

  @media (max-width: 560px) {
    .steps-grid,
    .team-carousel,
    .battery-cards,
    .fleet-carousel {
      overflow-x: scroll;
    }

    .hero-venture {
      width: 50px;
      height: 50px;
      right: 16px;
      top: 120px;
    }
  }

  @media (hover: none), (pointer: coarse) {
    .nairobi-advantages[data-reveal-group] > .nairobi-adv {
      transform: none;
      transition:
        opacity 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
        border-color 0.3s ease;
      will-change: opacity;
    }
    .nav-links a:hover {
      color: rgba(233, 237, 244, 0.78);
    }
    .nav-links a:hover::after {
      transform: scaleX(0);
    }
    .nav-links a.is-active:hover::after {
      transform: scaleX(1);
    }
    .nav-cta:hover {
      background: rgba(11, 217, 148, 0.16);
      box-shadow: none;
      transform: none;
    }
    .btn-primary:hover {
      background: var(--green);
      box-shadow: none;
      transform: none;
    }
    .btn-ghost:hover {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.18);
      transform: none;
    }
    .fleet-arrow:hover {
      background: rgba(255, 255, 255, 0.08);
    }
    .team-arrow:hover {
      background: rgba(255, 255, 255, 0.06);
    }
    .footer-sitemap-grid a:hover {
      color: rgba(219, 223, 231, 0.78);
    }
    .footer-contact-item:hover {
      color: rgba(212, 216, 224, 0.78);
    }
    .footer-social a:hover {
      filter: none;
      transform: none;
    }
    .footer-to-top:hover {
      transform: translateY(12px);
    }
    .footer-to-top.is-visible:hover {
      transform: translateY(0);
    }
    .video-modal-close:hover {
      background: rgba(25, 34, 52, 0.92);
      transform: none;
    }
    .reserve-modal-close:hover {
      background: rgba(24, 24, 24, 0.98);
    }
    .reserve-modal-cta-btn:hover {
      background: #24f2ae;
    }
    .checkout-modal-close:hover {
      color: rgba(255, 255, 255, 0.6);
    }
    .checkout-modal-btn.cancel:hover,
    .checkout-confirm-btn.cancel:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    .checkout-modal-btn.submit:hover,
    .checkout-confirm-btn.ok:hover,
    .checkout-success-btn:hover {
      background: #09e79d;
    }
    .checkout-success-contact a:hover {
      text-decoration: none;
    }
    .subscribe-modal-close:hover {
      background: rgba(0, 0, 0, 0.7);
    }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-group] > * {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    body::before {
      display: none !important;
    }
    .card-enter,
    .card-enter.is-visible {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      animation: none !important;
    }
    .hero::before,
    .hero::after,
    .mission-pin::before,
    .metric.up .arrow,
    .metric.down .arrow {
      animation: none !important;
    }
  }