  :root{
    --navy:#12141C;
    /* --navy:#121c16; */
    --navy-soft:#1B1E29;
    --lime:#C9F227;
    --amber:#FF8A3D;
    --paper:#F5F3EE;
   --ink:#14171F;
    --slate:#6B7280;
    --line:#E4E1D8;
    --radius:14px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--paper);
    overflow-x:hidden;
  }
  h1,h2,h3,h4,.display-font{
    font-family:'Space Grotesk',sans-serif;
    letter-spacing:-0.01em;
  }
  .mono{
    font-family:'JetBrains Mono',monospace;
  }
  a{text-decoration:none;}
  .text-lime{color:var(--lime) !important;}
  .text-amber{color:var(--amber) !important;}
  .bg-navy{background:var(--navy) !important;}
  .btn-lime{
    background:var(--lime);
    border:2px solid var(--lime);
    color:var(--navy);
    font-weight:600;
    border-radius:999px;
    padding:.7rem 1.6rem;
    transition:.2s ease;
  }
  .btn-lime:hover{
    background:transparent;
    color:var(--lime);
  }
  .btn-outline-paper{
    border:2px solid rgba(245,243,238,.35);
    color:var(--paper);
    border-radius:999px;
    padding:.7rem 1.6rem;
    font-weight:600;
    transition:.2s ease;
  }
  .btn-outline-paper:hover{
    border-color:var(--paper);
    color:var(--paper);
    background:rgba(245,243,238,.08);
  }
  .btn-ink{
    background:var(--ink);
    color:var(--paper);
    border-radius:999px;
    padding:.65rem 1.5rem;
    font-weight:600;
    border:2px solid var(--ink);
    transition:.2s ease;
  }
  .btn-ink:hover{
    background:transparent;
    color:var(--ink);
  }

  /* ===== Nav ===== */
  .navbar{
    background:rgba(18,20,28,.92);
    backdrop-filter:blur(10px);
    padding:.9rem 0;
    transition:.3s ease;
  }
  .navbar .nav-link{
    color:rgba(245,243,238,.8);
    font-weight:500;
    margin:0 .6rem;
    font-size:.95rem;
  }
  .navbar .nav-link:hover{color:var(--lime);}
  .brand-mark{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    font-size:1.3rem;
    color:var(--paper) !important;
    background: var(--paper);
  }
  .brand-mark .dot{
    width:10px;height:10px;border-radius:50%;
    background:var(--lime);
    box-shadow:0 0 12px var(--lime);
  }

  /* ===== route line progress marker ===== */
  #routeProgress{
    position:fixed;
    right:18px;
    top:0;
    bottom:0;
    width:2px;
    z-index:1200;
    pointer-events:none;
    display:none;
  }
  #routeProgress .track{
    position:absolute;
    top:0;bottom:0;left:0;right:0;
    background:rgba(20,23,31,.12);
  }
  #routeProgress .marker{
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);
    top:0;
    width:26px;height:26px;
    background:var(--navy);
    border:2px solid var(--lime);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--lime);
    font-size:.8rem;
    transition:top .08s linear;
  }
  @media(max-width:991px){#routeProgress{display:none !important;}}

  /* ===== Hero ===== */
  .hero{
    /* background:radial-gradient(120% 100% at 85% 0%, #232739 0%, var(--navy) 55%); */
    background:radial-gradient(120% 100% at 85% 20%, #233927 0%, var(--navy) 55%);
    color:var(--paper);
    padding:9rem 0 6rem;
    position:relative;
    overflow:hidden;
  }
  .hero .grid-lines{
    position:absolute;inset:0;
    background-image:
      linear-gradient(rgba(245,243,238,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,243,238,.05) 1px, transparent 1px);
    background-size:44px 44px;
    mask-image:linear-gradient(to bottom, black, transparent 85%);
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    font-family:'JetBrains Mono',monospace;
    font-size:.78rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--lime);
    border:1px solid rgba(201,242,39,.35);
    background:rgba(201,242,39,.06);
    padding:.35rem .8rem;
    border-radius:999px;
  }
  .hero h1{
    font-size:clamp(2.4rem, 5vw, 3.9rem);
    font-weight:700;
    line-height:1.05;
  }
  .hero p.lead{
    color:rgba(245,243,238,.72);
    font-size:1.15rem;
    max-width:520px;
  }

  /* dashboard readout card */
  .dash-card{
    background:var(--navy-soft);
    border:1px solid rgba(245,243,238,.08);
    border-radius:20px;
    padding:1.6rem;
    box-shadow:0 30px 60px -20px rgba(0,0,0,.6);
  }
  .dash-screen{
    background:#0B0D13;
    border-radius:14px;
    padding:1.4rem 1.4rem 1.1rem;
    border:1px solid rgba(201,242,39,.15);
  }
  .dash-row{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    padding:.55rem 0;
    border-bottom:1px dashed rgba(245,243,238,.1);
  }
  .dash-row:last-child{border-bottom:none;}
  .dash-label{
    font-size:.72rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:rgba(245,243,238,.5);
    font-family:'JetBrains Mono',monospace;
  }
  .dash-value{
    font-family:'JetBrains Mono',monospace;
    font-weight:700;
    font-size:1.35rem;
    color:var(--lime);
  }
  .dash-value small{font-size:.7rem;color:rgba(245,243,238,.5);font-weight:500;}
  .battery-bar{
    height:10px;
    border-radius:6px;
    background:rgba(245,243,238,.08);
    overflow:hidden;
    margin-top:.3rem;
  }
  .battery-bar span{
    display:block;height:100%;
    background:linear-gradient(90deg, var(--amber), var(--lime));
    width:0%;
    transition:width 1.4s ease;
  }

  /* ===== trust strip ===== */
  .trust-strip{
    background:var(--ink);
    color:var(--paper);
    padding:1.1rem 0;
  }
  .trust-strip .item{
    font-family:'JetBrains Mono',monospace;
    font-size:.85rem;
    color:rgba(245,243,238,.75);
    white-space:nowrap;
  }
  .trust-strip .item b{color:var(--lime);font-weight:700;}

  /* ===== sections general ===== */
  section{padding:5.5rem 0;}
  .section-tag{
    font-family:'JetBrains Mono',monospace;
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--amber);
    font-weight:700;
  }
  .section-title{
    font-size:clamp(1.8rem,3vw,2.6rem);
    font-weight:700;
    margin-top:.4rem;
  }
  .section-sub{
    color:var(--slate);
    max-width:560px;
  }

  /* feature cards */
  .feature-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:1.8rem;
    height:100%;
    transition:.25s ease;
  }
  .feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px -18px rgba(20,23,31,.18);
    border-color:transparent;
  }
  .feature-icon{
    width:48px;height:48px;
    border-radius:12px;
    background:var(--ink);
    color:var(--lime);
    display:flex;align-items:center;justify-content:center;
    font-size:1.3rem;
    margin-bottom:1rem;
  }

  /* pricing */
  .plan-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:2rem;
    height:100%;
    position:relative;
    transition:.25s ease;
  }
  .plan-card.featured{
    background:var(--ink);
    color:var(--paper);
    border-color:var(--ink);
    transform:scale(1.04);
    box-shadow:0 30px 60px -20px rgba(20,23,31,.4);
  }
  .plan-card.featured .plan-sub{color:rgba(245,243,238,.6);}
  .plan-card.featured .list-check li{color:rgba(245,243,238,.85);}
  .plan-card .badge-pop{
    position:absolute;top:-14px;left:50%;transform:translateX(-50%);
    background:var(--lime);
    color:var(--navy);
    font-family:'JetBrains Mono',monospace;
    font-weight:700;
    font-size:.72rem;
    padding:.35rem .9rem;
    border-radius:999px;
    letter-spacing:.04em;
  }
  .plan-price{
    font-family:'JetBrains Mono',monospace;
    font-weight:700;
    font-size:2.6rem;
    line-height:1;
  }
  .plan-price sup{font-size:1.1rem;top:-1em;}
  .plan-price span.period{
    font-family:'Inter',sans-serif;
    font-size:.95rem;
    font-weight:500;
    color:var(--slate);
  }
  .list-check{list-style:none;padding:0;margin:1.4rem 0;}
  .list-check li{
    display:flex;gap:.6rem;
    padding:.4rem 0;
    color:#374151;
    font-size:.95rem;
  }
  .list-check li i{color:var(--lime);}
  .plan-card.featured .list-check li i{color:var(--lime);}

  /* how it works */
  .steps-wrap{position:relative;}
  .step-item{
    display:flex;
    gap:1.4rem;
    padding:1.6rem 0;
    border-bottom:1px solid var(--line);
  }
  .step-item:last-child{border-bottom:none;}
  .step-num{
    font-family:'JetBrains Mono',monospace;
    font-weight:700;
    font-size:.95rem;
    color:var(--paper);
    background:var(--ink);
    width:42px;height:42px;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .step-item.active .step-num{background:var(--amber);}

  /* testimonials */
  .quote-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:2rem;
  }
  .quote-mark{
    font-family:'Space Grotesk',sans-serif;
    font-size:3rem;
    color:var(--lime);
    line-height:1;
  }
  .avatar-chip{
    width:44px;height:44px;border-radius:50%;
    background:var(--ink);color:var(--lime);
    display:flex;align-items:center;justify-content:center;
    font-family:'Space Grotesk',sans-serif;font-weight:700;
  }
  #testiCarousel .carousel-control-prev,
  #testiCarousel .carousel-control-next{
    width:44px;height:44px;top:auto;bottom:-64px;
    background:var(--ink);border-radius:50%;opacity:1;
  }
  #testiCarousel .carousel-control-prev{left:calc(50% - 56px);}
  #testiCarousel .carousel-control-next{left:calc(50% + 12px);}

  /* faq */
  .faq-item{
    border-bottom:1px solid var(--line);
    padding:1.2rem 0;
  }
  .faq-q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-weight:600;
    font-family:'Space Grotesk',sans-serif;
  }
  .faq-q i{transition:.25s ease;color:var(--amber);}
  .faq-item.open .faq-q i{transform:rotate(45deg);}
  .faq-a{
    max-height:0;
    overflow:hidden;
    color:var(--slate);
    transition:max-height .3s ease;
  }
  .faq-a p{padding-top:.8rem;margin-bottom:0;}

  /* cta / contact */
  .cta-section{
    background:var(--navy);
    color:var(--paper);
    border-radius:28px;
    padding:3.5rem;
    position:relative;
    overflow:hidden;
  }
  .cta-section .form-control{
    background:rgba(245,243,238,.06);
    border:1px solid rgba(245,243,238,.15);
    color:var(--paper);
    border-radius:10px;
    padding:.7rem .9rem;
  }
  .cta-section .form-control::placeholder{color:rgba(245,243,238,.4);}
  .cta-section .form-control:focus{
    background:rgba(245,243,238,.09);
    border-color:var(--lime);
    box-shadow:0 0 0 .2rem rgba(201,242,39,.15);
    color:var(--paper);
  }
  .cta-section label{
    font-family:'JetBrains Mono',monospace;
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:rgba(245,243,238,.55);
    margin-bottom:.3rem;
  }
  #formSuccess{display:none;}

  /* footer */
  footer{
    background:var(--ink);
    color:rgba(245,243,238,.6);
    padding:3.5rem 0 1.5rem;
  }
  footer a{color:rgba(245,243,238,.6);}
  footer a:hover{color:var(--lime);}
  footer h6{
    color:var(--paper);
    font-family:'Space Grotesk',sans-serif;
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:1rem;
  }

  /* scooter marker svg animation */
  .route-dash{
    stroke-dasharray:8 10;
    animation:dashmove 2.4s linear infinite;
  }
  @keyframes dashmove{to{stroke-dashoffset:-36;}}

  [data-animate]{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .6s ease, transform .6s ease;
  }
  [data-animate].in-view{
    opacity:1;
    transform:translateY(0);
  }

  @media (prefers-reduced-motion: reduce){
    *{animation:none !important; transition:none !important;}
  }

  @media(max-width:767px){
    .cta-section{padding:2rem;border-radius:20px;}
    .plan-card.featured{transform:none;}
  }
