:root {
    --lime: #c8d400;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #1a1a1a;
    --mid: #2a2a2a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5%;
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,212,0,0.12);
  }
  nav img.nav-logo { 
    height: 40px;
  }
  nav ul { list-style: none; display: flex; gap: 28px; }
  nav ul a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--lime); }
  .nav-cta {
    background: var(--lime); color: var(--black);
    padding: 10px 24px; border-radius: 100px;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em;
    text-decoration: none; text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,212,0,0.35); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-orb {
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200,212,0,0.18) 0%, transparent 70%);
    right: -150px; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .hero-bg-text {
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32vw; font-weight: 900; color: rgba(255,255,255,0.025);
    line-height: 1; bottom: -2vw; left: -1vw; pointer-events: none;
    letter-spacing: -0.04em; user-select: none;
  }
  .hero-left { position: relative; z-index: 2; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,212,0,0.12); border: 1px solid rgba(200,212,0,0.3);
    color: var(--lime); padding: 6px 16px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-eyebrow::before {
    content: ''; width: 6px; height: 6px; background: var(--lime);
    border-radius: 50%; animation: pulse 1.5s ease infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 900; line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  h1 em { font-style: italic; color: var(--lime); }
  .hero-desc {
    margin-top: 28px; max-width: 480px;
    color: rgba(255,255,255,0.62); font-size: 1.05rem; line-height: 1.7;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  /* ── DOWNLOAD BUTTONS ── */
  .hero-actions {
    display: flex; gap: 14px; align-items: center; margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-store {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--white); color: var(--black);
    padding: 12px 22px; border-radius: 14px;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid rgba(255,255,255,0.15);
  }
  .btn-store:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,255,255,0.15); }
  .btn-store.gplay { background: var(--black); color: var(--white); border: 2px solid rgba(200,212,0,0.4); }
  .btn-store.gplay:hover { box-shadow: 0 12px 32px rgba(200,212,0,0.2); border-color: var(--lime); }
  .btn-store-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .btn-store-text { text-align: left; line-height: 1.2; }
  .btn-store-sub { font-size: 0.65rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.06em; display: block; }
  .btn-store-name { font-weight: 700; font-size: 0.95rem; display: block; }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 52px;
    animation: fadeUp 0.8s 0.4s ease both;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.6rem; font-weight: 900; color: var(--lime); line-height: 1;
  }
  .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.04em; }

  .hero-right {
    display: flex; justify-content: center; align-items: center;
    position: relative; z-index: 2;
    animation: fadeIn 1s 0.3s ease both;
  }
  .hero-icon-wrap {
    position: relative;
    width: 380px; height: 380px;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-icon-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1px solid rgba(200,212,0,0.2);
    animation: spin 20s linear infinite;
  }
  .hero-icon-ring::before {
    content: ''; position: absolute;
    top: -4px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; background: var(--lime); border-radius: 50%;
  }
  .hero-icon-ring2::before {
    content: ''; position: absolute;
    top: -4px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; background: var(--lime); border-radius: 50%;
  }
  /* Scooter dots on ring */
  /* .hero-icon-ring::after {
    content: '🛵'; position: absolute;
    bottom: -10px; right: 20px; font-size: 1.1rem;
  }
  .hero-icon-ring2::after {
    content: '🛵'; position: absolute;
    bottom: -10px; right: 20px; font-size: 1.1rem;
  } */
  .hero-icon-ring2 {
    position: absolute; inset: 30px; border-radius: 50%;
    border: 1px solid rgba(200,212,0,0.1);
    animation: spin 14s linear infinite reverse;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .hero-logo-img {
    width: 550px;
    filter: drop-shadow(0 0 60px rgba(200,212,0,0.3));
    animation: float 5s ease-in-out infinite;
  }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  /* ── MARQUEE ── */
  .marquee-band {
    background: var(--lime); color: var(--black);
    padding: 14px 0; overflow: hidden;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1rem; letter-spacing: 0.08em;
    text-transform: uppercase; white-space: nowrap;
  }
  .marquee-inner { display: inline-flex; animation: marquee 18s linear infinite; }
  .marquee-inner span { padding: 0 32px; }
  .marquee-inner .sep { opacity: 0.4; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SHARED SECTION STYLES ── */
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--lime);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900;
    text-transform: uppercase; line-height: 0.95;
    letter-spacing: -0.02em; margin-bottom: 64px;
  }

  /* ── FEATURES ── */
  #features {
    padding: 120px 5%;
    background: var(--gray);
    position: relative;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
  }
  .feature-card {
    background: var(--black); padding: 44px 36px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .feature-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--lime); transform: scaleX(0);
    transform-origin: left; transition: transform 0.4s ease;
  }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-card:hover { background: #111; }
  .feature-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem; font-weight: 900; color: rgba(200,212,0,0.08);
    line-height: 1; position: absolute; top: 16px; right: 24px;
  }
  .feature-icon {
    width: 52px; height: 52px; background: rgba(200,212,0,0.1);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 1.5rem;
  }
  .feature-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem; font-weight: 900; text-transform: uppercase;
    letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.1;
  }
  .feature-title span { color: var(--lime); }
  .feature-desc { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.65; }

  /* ── HOW IT WORKS ── */
  #how { padding: 120px 5%; }
  .steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .steps-list { display: flex; flex-direction: column; gap: 0; }
  .step {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative; cursor: default;
    transition: padding-left 0.3s;
  }
  .step:hover { padding-left: 8px; }
  .step:last-child { border-bottom: none; }
  .step-num {
    flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid rgba(200,212,0,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1.1rem; color: var(--lime);
    transition: background 0.3s, border-color 0.3s;
  }
  .step:hover .step-num { background: var(--lime); color: var(--black); border-color: var(--lime); }
  .step-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.02em; margin-bottom: 6px;
  }
  .step-content p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; }
  .steps-visual {
    position: relative;
    background: var(--gray);
    border-radius: 24px; padding: 60px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .steps-visual::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(200,212,0,0.15) 0%, transparent 70%);
  }
  .steps-visual img { width: 400px; position: relative; z-index: 1; border-radius: 20px; 
    animation: float 3s ease-in-out infinite;
  }
  .tagline-visual {
    position: absolute; bottom: 32px; left: 0; right: 0;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem; font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.2);
  }

  /* ── ABOUT ── */
  #about {
    padding: 120px 5%;
    background: var(--gray);
    position: relative;
    overflow: hidden;
  }
  #about::before {
    content: 'VGO';
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22vw; font-weight: 900;
    color: rgba(200,212,0,0.04);
    position: absolute; right: -2vw; top: 50%;
    transform: translateY(-50%); line-height: 1;
    pointer-events: none; user-select: none; letter-spacing: -0.04em;
  }
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-left .section-title { margin-bottom: 28px; }
  .about-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem; font-style: italic; font-weight: 700;
    color: var(--lime); margin-bottom: 24px;
  }
  .about-body {
    color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.8;
  }
  .about-body p + p { margin-top: 16px; }
  .about-scooter-art {
    display: flex; flex-direction: column; gap: 2px;
  }
  .scooter-stat-card {
    background: var(--black); padding: 32px 36px;
    display: flex; align-items: center; gap: 20px;
    transition: transform 0.3s;
  }
  .scooter-stat-card:hover { transform: translateX(8px); }
  .sc-icon {
    font-size: 2rem; width: 56px; height: 56px;
    background: rgba(200,212,0,0.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sc-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem; font-weight: 900; color: var(--lime); line-height: 1;
  }
  .sc-text p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 4px; }

  /* ── CONTACT ── */
  #contact {
    padding: 120px 5%;
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .contact-intro .section-title { margin-bottom: 20px; }
  .contact-intro p {
    color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.75;
    max-width: 440px;
  }
  .contact-cards { display: flex; flex-direction: column; gap: 2px; }
  .contact-card {
    background: var(--gray); padding: 36px;
    display: flex; gap: 20px; align-items: flex-start;
    transition: background 0.3s; cursor: default;
    position: relative; overflow: hidden;
  }
  .contact-card::after {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--lime); transform: scaleY(0);
    transform-origin: bottom; transition: transform 0.35s ease;
  }
  .contact-card:hover::after { transform: scaleY(1); }
  .contact-card:hover { background: #1e1e1e; }
  .cc-icon {
    width: 48px; height: 48px; background: rgba(200,212,0,0.1);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  }
  .cc-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 8px;
  }
  .cc-body p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; }
  .cc-body a { color: var(--lime); text-decoration: none; transition: opacity 0.2s; }
  .cc-body a:hover { opacity: 0.75; }
  .cc-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(200,212,0,0.12); border: 1px solid rgba(200,212,0,0.25);
    color: var(--lime); padding: 4px 12px; border-radius: 100px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; margin-top: 10px;
  }
  .cc-badge::before { content: ''; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; animation: pulse 1.5s ease infinite; }

  /* ── CTA BAND ── */
  #cta {
    background: var(--lime);
    padding: 100px 5%;
    position: relative; overflow: hidden;
  }
  #cta::before {
    content: 'GO';
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40vw; font-weight: 900; color: rgba(0,0,0,0.06);
    position: absolute; right: -5vw; top: 50%;
    transform: translateY(-50%); line-height: 1;
    pointer-events: none; user-select: none;
  }
  .cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap; position: relative; z-index: 1;
  }
  .cta-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 900;
    text-transform: uppercase; color: var(--black);
    line-height: 0.95; letter-spacing: -0.02em;
  }
  .cta-text p { color: rgba(0,0,0,0.55); margin-top: 16px; font-size: 1rem; max-width: 400px; }
  .cta-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
  .btn-store-dark {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--black); color: var(--white);
    padding: 18px 24px; border-radius: 14px;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    width: 250px;
  }
  .btn-store-dark:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
  .btn-store-dark .btn-store-icon { width: 28px; height: 28px; }
  .btn-store-dark .btn-store-sub { font-size: 0.7rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
  .btn-store-dark .btn-store-name { font-weight: 700; font-size: 1rem; display: block; }

  /* ── FOOTER ── */
  footer {
    background: #060606;
    padding: 60px 5% 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 40px; margin-bottom: 48px;
  }
  footer img.footer-logo { height: 44px; }
  .footer-desc { color: rgba(255,255,255,0.4); font-size: 0.88rem; max-width: 280px; margin-top: 16px; line-height: 1.65; }
  .footer-links h4 {
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 16px;
  }
  .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
  .footer-links ul a:hover { color: var(--lime); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
     padding-top: 28px; /*border-top: 1px solid rgba(255,255,255,0.06); */
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.82rem; }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 900px) {
    #hero { grid-template-columns: 1fr; padding-top: 100px; }
    .hero-right { display: none; }
    .steps-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
    .steps-visual { display: none; }
    nav ul { display: none; }
  }