/* ========================
   LOADING SCREEN
   ======================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050c1c;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__bg {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: #050c1c;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(27,107,255,0.15), transparent),
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(123,211,255,0.12), transparent),
    linear-gradient(180deg, #050c1c 0%, #071734 50%, #050c1c 100%);
}

.loader__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
}

/* Logo */
.loader__logo img {
  height: 220px;
  width: auto;
  filter: drop-shadow(0 4px 30px rgba(123,211,255,0.4));
  animation: logoFloat 2.5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Brand text */
.loader__text {
  display: flex;
  align-items: baseline;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.loader__brand {
  color: #7bd3ff;
  text-shadow: 0 0 30px rgba(123,211,255,0.5);
}

.loader__suffix {
  color: rgba(234,242,255,0.9);
}

/* Road with van scene */
.loader__scene {
  position: relative;
  width: 280px;
  height: 100px;
  margin-top: 10px;
}

.loader__road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
  border-radius: 4px;
  overflow: hidden;
}

.loader__road::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.5) 0px,
    rgba(255,255,255,0.5) 20px,
    transparent 20px,
    transparent 40px
  );
  transform: translateY(-50%);
  animation: roadScroll 0.6s linear infinite;
}

@keyframes roadScroll {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(-40px); }
}

/* Van on road */
.loader__van-wrap {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 70px;
}

.loader__van {
  position: relative;
  width: 100%;
  height: 100%;
  animation: vanDrive 0.3s ease-in-out infinite;
}

.loader__van-svg {
  width: 120px;
  height: 70px;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
}


@keyframes vanDrive {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Progress bar */
.loader__progress {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 10px;
}

.loader__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7bd3ff, #1b6bff);
  border-radius: 3px;
  animation: loadProgress 1.2s ease-out forwards;
}

@keyframes loadProgress {
  0% { width: 0%; }
  30% { width: 40%; }
  60% { width: 75%; }
  100% { width: 100%; }
}

/* Tagline */
.loader__tagline {
  font-size: 12px;
  color: rgba(182,199,230,0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Mobile adjustments */
@media (max-width: 540px) {
  .loader__logo img {
    height: 150px;
  }
  
  .loader__scene {
    width: 220px;
    height: 80px;
  }
  
  .loader__van-wrap {
    width: 100px;
    height: 58px;
    bottom: 16px;
  }
  
  .loader__van-svg {
    width: 100px;
    height: 58px;
  }
  
  .loader__text {
    font-size: 18px;
  }
  
  .loader__progress {
    width: 140px;
  }
  
  .loader__road {
    height: 20px;
  }
}

:root{
  --bg0:#050c1c;
  --bg1:#071734;
  --bg2:#0b2b66;
  --ink:#eaf2ff;
  --muted:#b6c7e6;
  --line:rgba(175,210,255,.14);
  --glass:rgba(10,28,58,.58);
  --glass2:rgba(10,28,58,.36);
  --accent:#1b6bff;
  --accent2:#7bd3ff;
  --good:#45e0ff;
  --shadow: 0 18px 70px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; background:#050c1c}
html,body{background:#050c1c}
body.menu-open{
  overflow:hidden;
}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background: radial-gradient(1200px 900px at 15% 10%, rgba(27,107,255,.25), transparent 55%),
              radial-gradient(1000px 700px at 85% 0%, rgba(123,211,255,.18), transparent 50%),
              radial-gradient(900px 700px at 85% 85%, rgba(11,43,102,.8), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1) 30%, #040917);
  overflow-x:hidden;
}

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

/* Fixed header anchor offset */
section[id]{scroll-margin-top: 100px;}
section[id]:target .section__title{
  text-shadow: 0 0 22px rgba(123,211,255,.22);
}

.container{
  width: calc(100% - 32px);
  margin:0 auto;
  padding: 0;
}

.skip-link{
  position:absolute;
  left:-999px; top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  border:1px solid var(--line);
  background:rgba(6,16,36,.9);
  border-radius:12px;
  z-index:9999;
}

/* Background layers */
#particles{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-3;
}
.noise{
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  opacity:.22;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode:soft-light;
}
.cursor-glow{
  display:none;
}

/* ========================
   HEADER - Mobile First
   ======================== */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  background: transparent;
  transition: background .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled{
  backdrop-filter: blur(14px);
  background: rgba(5,12,28,.92);
  border-bottom: 1px solid rgba(175,210,255,.08);
}
.nav{
  width: calc(100% - 32px);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 0;
}
.nav__left{
  display:flex;
  align-items:center;
  gap:16px;
}
.nav__version{
  font-size:11px;
  color:rgba(234,242,255,.4);
  font-weight:500;
  letter-spacing:.02em;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__logo{
  height:55px;
  width:auto;
  object-fit:contain;
}
.brand__text{
  display:flex;
  align-items:baseline;
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
}
.brand__name{
  color:var(--accent2);
}
.brand__suffix{
  color:rgba(234,242,255,.85);
}

.nav__links{
  display:none;
}
.nav__link{
  font-size:13px;
  font-weight:600;
  color:rgba(234,242,255,.65);
  padding:8px 14px;
  position:relative;
  transition: color .2s ease;
  letter-spacing:.08em;
}
.nav__link:hover{
  color:rgba(234,242,255,1);
}
.nav__link.is-active{
  color:var(--accent2);
}
.nav__link.is-active::after{
  content:"";
  position:absolute;
  bottom:2px;
  left:14px;
  right:14px;
  height:2px;
  background:var(--accent2);
  border-radius:2px;
}
.nav__cta{
  display:none;
}

/* ========================
   HAMBURGER TOGGLE
   ======================== */
.nav__toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid rgba(175,210,255,.14);
  border-radius:12px;
  background:rgba(10,28,58,.22);
  cursor:pointer;
  position:relative;
  z-index:60;
  transition: background .2s ease;
}
.nav__toggle:hover{
  background:rgba(175,210,255,.10);
}
.nav__toggle-bar{
  display:block;
  width:20px;
  height:2px;
  background:var(--ink);
  border-radius:2px;
  transition: transform .3s cubic-bezier(.4,.0,.2,1), opacity .2s ease;
}
.nav__toggle.is-active .nav__toggle-bar:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.is-active .nav__toggle-bar:nth-child(2){
  opacity:0;
  transform: scaleX(0);
}
.nav__toggle.is-active .nav__toggle-bar:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================
   MOBILE MENU PANEL
   ======================== */
.mobile-menu{
  position:fixed;
  inset:0;
  z-index:100;
  pointer-events:none;
  visibility:hidden;
}
.mobile-menu.is-open{
  pointer-events:auto;
  visibility:visible;
}
.mobile-menu__backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,9,23,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  opacity:0;
  transition: opacity .35s ease;
}
.mobile-menu.is-open .mobile-menu__backdrop{
  opacity:1;
}
.mobile-menu__panel{
  position:absolute;
  top:0;
  right:0;
  width:min(300px, 85vw);
  height:100%;
  height:100dvh;
  background: linear-gradient(180deg, #071734 0%, #050c1c 100%);
  border-left:1px solid rgba(175,210,255,.15);
  box-shadow: -30px 0 80px rgba(0,0,0,.7);
  display:flex;
  flex-direction:column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,.0,.2,1);
  overflow-y:auto;
}
.mobile-menu.is-open .mobile-menu__panel{
  transform: translateX(0);
}
.mobile-menu__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
  border-bottom:1px solid rgba(175,210,255,.12);
  background:rgba(7,23,52,.5);
}
.mobile-menu__brand{
  display:flex;
  align-items:baseline;
  font-size:14px;
  font-weight:700;
  letter-spacing:.1em;
}
.mobile-menu__brand .brand__name{
  color:var(--accent2);
}
.mobile-menu__brand .brand__suffix{
  color:rgba(234,242,255,.85);
}
.mobile-menu__close{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:1px solid rgba(175,210,255,.14);
  border-radius:10px;
  background:rgba(10,28,58,.30);
  color:var(--ink);
  cursor:pointer;
  transition: background .2s ease, transform .2s ease;
}
.mobile-menu__close:hover{
  background:rgba(175,210,255,.12);
  transform:rotate(90deg);
}
.mobile-menu__nav{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:20px 16px;
  gap:4px;
}
.mobile-menu__link{
  display:flex;
  align-items:center;
  padding:16px 18px;
  font-size:16px;
  font-weight:700;
  color:rgba(234,242,255,.92);
  border-radius:14px;
  transition: background .2s ease, transform .2s ease;
  position:relative;
  overflow:hidden;
}
.mobile-menu__link::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:3px;
  height:0;
  background:linear-gradient(180deg, var(--accent2), var(--accent));
  border-radius:0 3px 3px 0;
  transition: height .2s ease;
}
.mobile-menu__link:hover,
.mobile-menu__link:active{
  background:rgba(175,210,255,.10);
  transform:translateX(4px);
}
.mobile-menu__link:hover::before,
.mobile-menu__link:active::before{
  height:26px;
}
.mobile-menu__link.is-active{
  background:linear-gradient(90deg, rgba(27,107,255,.18), transparent);
}
.mobile-menu__link.is-active::before{
  height:26px;
}
.mobile-menu__cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:20px 16px;
  border-top:1px solid rgba(175,210,255,.12);
  background:rgba(5,12,28,.4);
}
.mobile-menu__cta .btn{
  justify-content:center;
  gap:10px;
}
.mobile-menu__cta .btn svg{
  flex-shrink:0;
}
.mobile-menu__footer{
  padding:16px 20px;
  text-align:center;
  border-top:1px solid rgba(175,210,255,.08);
}
.mobile-menu__copyright{
  font-size:11px;
  color:var(--muted);
}


/* ========================
   BUTTONS - Mobile First
   ======================== */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:38px;
  padding:0 14px;
  border-radius:999px;
  font-weight:700;
  font-size:11px;
  letter-spacing:.02em;
  border:1px solid rgba(175,210,255,.14);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
  will-change:transform;
}
.btn:active{transform: translateY(1px)}
.btn--xl{
  height:44px;
  padding:0 16px;
  font-size:12px;
  width:100%;
}
.btn--primary{
  color:#071734;
  background: linear-gradient(135deg, rgba(123,211,255,1), rgba(27,107,255,1));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 50px rgba(27,107,255,.25);
}
.btn--primary:hover{box-shadow: 0 26px 70px rgba(27,107,255,.35)}
.btn--ghost{
  background:rgba(10,28,58,.22);
}
.btn--ghost:hover{background:rgba(175,210,255,.10)}
.btn__shine{
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  background: radial-gradient(260px 140px at var(--mx,20%) var(--my,30%), rgba(255,255,255,.55), rgba(255,255,255,0) 55%);
  opacity: .0;
  transition: opacity .18s ease;
  mix-blend-mode: soft-light;
  pointer-events:none;
}
.btn--primary:hover .btn__shine{opacity:.45}

/* ========================
   HERO - Mobile First
   ======================== */
.hero{
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0 40px;
}
.hero__video-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: -1;
}
.hero__video-bg video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}
.hero__video-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 12, 28, 0.55) 0%,
    rgba(7, 23, 52, 0.60) 50%,
    rgba(5, 12, 28, 0.82) 100%
  );
}

/* Section Video Background (mobile only) */
.section--video-bg{
  position: relative;
  clip-path: inset(0);
}
.section__video-bg{
  display: none;
}
@media (max-width: 767px){
  .section__video-bg{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    z-index: -1;
  }
  .section__video-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
  }
  .section__video-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(5, 12, 28, 0.75) 0%,
      rgba(7, 23, 52, 0.80) 50%,
      rgba(5, 12, 28, 0.88) 100%
    );
  }
}
.hero__centered{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  padding: 0 8px;
  width: 100%;
  min-height: calc(100vh - 90px);
  min-height: calc(100dvh - 90px);
  justify-content: flex-start;
  padding-top: 10vh;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  border-radius:999px;
  background:rgba(10,28,58,.35);
  border:1px solid rgba(123,211,255,.25);
  color:rgba(234,242,255,.92);
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.pill__icon{
  font-size:14px;
}

.hero__title{
  margin:20px 0 16px;
  line-height:.88;
  letter-spacing:-.03em;
}
.hero__titleTop{
  display:block;
  font-size: clamp(28px, 9vw, 80px);
  font-weight:900;
  color:rgba(234,242,255,.95);
  letter-spacing:-.02em;
  margin-bottom: 4px;
}
.hero__titleBottom{
  display:block;
  font-size: clamp(32px, 10vw, 90px);
  font-weight:950;
  color:transparent;
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  letter-spacing:-.02em;
  font-style:italic;
}
.hero__lead{
  margin:0;
  color:rgba(234,242,255,.78);
  font-size:14px;
  line-height:1.65;
  max-width: 52ch;
  padding: 0 4px;
}
.hero__lead br{display:none}
.hero__cta{
  position:absolute;
  bottom: 40px;
  left: 16px;
  right: 16px;
  display:flex;
  flex-direction:row;
  justify-content:center;
  gap:8px;
}
.hero__cta .btn--xl{
  height:40px;
  padding:0 12px;
  font-size:10px;
  white-space:nowrap;
}
.hero__cta .btn--primary{
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  font-weight:800;
  letter-spacing:.06em;
  box-shadow: 0 12px 40px rgba(27,107,255,.35);
}
.hero__cta .btn--ghost{
  border-color:rgba(175,210,255,.30);
  font-weight:700;
  letter-spacing:.06em;
  background:rgba(10,28,58,.35);
}
.hero__stats{
  margin-top:40px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:32px;
}
.stat{
  padding:0;
  border-radius:0;
  border:none;
  background:transparent;
  text-align:center;
}
.stat__num{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:2px;
  font-weight:900;
  letter-spacing:-.03em;
  font-size:36px;
  color:var(--accent2);
}
.stat__suffix{font-size:24px; color:var(--accent2); margin-bottom:0; font-weight:700}
.stat__label{margin-top:6px; color:rgba(234,242,255,.65); font-size:12px; line-height:1.35; text-transform:capitalize}

.scrollHint{
  display:none;
}
.scrollHint__text{
  font-size:10px; 
  color:rgba(234,242,255,.55); 
  text-transform:uppercase; 
  letter-spacing:.12em;
  font-weight:600;
}
.scrollHint__mouse{
  width:22px; height:36px;
  border:1px solid rgba(175,210,255,.25);
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(10,28,58,.20);
}
.scrollHint__wheel{
  width:2px; height:6px;
  border-radius:99px;
  background:rgba(234,242,255,.55);
  animation: wheel 1.4s ease-in-out infinite;
}
@keyframes wheel{0%{transform:translateY(-5px); opacity:.2}50%{opacity:1}100%{transform:translateY(5px); opacity:.2}}

.hero__visual{
  position:relative;
  border-radius:var(--radius2);
  border:1px solid rgba(175,210,255,.12);
  background: radial-gradient(900px 600px at 20% 15%, rgba(123,211,255,.18), transparent 55%),
              radial-gradient(850px 650px at 80% 70%, rgba(27,107,255,.20), transparent 55%),
              rgba(10,28,58,.20);
  overflow:hidden;
  box-shadow: var(--shadow);
  min-height: 300px;
}
.orb{
  position:absolute;
  border-radius:999px;
  filter: blur(0px);
  opacity:.9;
  mix-blend-mode:screen;
  transform: translateZ(0);
}
.orb--a{
  width:180px;height:180px;
  left:-40px; top:-40px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.5), rgba(255,255,255,0) 55%),
              linear-gradient(135deg, rgba(123,211,255,.95), rgba(27,107,255,.75));
  animation: floatA 10s ease-in-out infinite;
}
.orb--b{
  width:220px;height:220px;
  right:-80px; bottom:-80px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,0) 55%),
              linear-gradient(135deg, rgba(27,107,255,.85), rgba(11,43,102,.85));
  animation: floatB 12s ease-in-out infinite;
}
.orb--c{
  width:140px;height:140px;
  right:20px; top:20px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,0) 60%),
              linear-gradient(135deg, rgba(123,211,255,.78), rgba(27,107,255,.45));
  animation: floatC 9s ease-in-out infinite;
}
@keyframes floatA{0%,100%{transform: translate(0,0) scale(1)}50%{transform: translate(22px,18px) scale(1.06)}}
@keyframes floatB{0%,100%{transform: translate(0,0) scale(1)}50%{transform: translate(-24px,-16px) scale(1.05)}}
@keyframes floatC{0%,100%{transform: translate(0,0) scale(1)}50%{transform: translate(-12px,18px) scale(.98)}}

.glass{
  position:absolute;
  left:12px; right:12px; bottom:12px;
  border-radius:18px;
  border:1px solid rgba(175,210,255,.14);
  background: linear-gradient(180deg, rgba(6,16,36,.58), rgba(6,16,36,.30));
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  padding:12px;
}
.glass__topline{display:flex; gap:8px; flex-wrap:wrap}
.tag{
  padding:6px 8px;
  border-radius:999px;
  border:1px solid rgba(175,210,255,.14);
  background:rgba(10,28,58,.22);
  font-size:10px;
  color:rgba(234,242,255,.88);
}
.tag--alt{
  background: linear-gradient(180deg, rgba(27,107,255,.22), rgba(123,211,255,.10));
}
.route{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.route__node{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  color:rgba(234,242,255,.9);
}
.route__dot{
  width:8px;height:8px;border-radius:99px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 0 0 4px rgba(27,107,255,.14);
}
.route__line{
  height:2px;
  flex:1;
  background:linear-gradient(90deg, rgba(123,211,255,.35), rgba(27,107,255,.8), rgba(123,211,255,.35));
  opacity:.7;
  position:relative;
  overflow:hidden;
  border-radius:99px;
}
.route__line::after{
  content:"";
  position:absolute;
  top:0; left:-30%;
  width:30%;
  height:100%;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.75), rgba(255,255,255,0));
  animation: sweep 2.2s ease-in-out infinite;
}
@keyframes sweep{0%{transform:translateX(0)}100%{transform:translateX(420%)}}
.vehicle{
  margin-top:10px;
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(175,210,255,.12);
  background:rgba(10,28,58,.20);
}
.vehicle__title{font-weight:900; letter-spacing:-.02em; font-size:14px}
.vehicle__sub{margin-top:3px; font-size:11px; color:var(--muted)}
.vehicle__bar{
  margin-top:8px;
  display:flex;
  gap:4px;
}
.vehicle__bar span{
  flex:1;
  height:5px;
  border-radius:99px;
  background:rgba(175,210,255,.12);
  overflow:hidden;
}
.vehicle__bar span::after{
  content:"";
  display:block;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(123,211,255,1), rgba(27,107,255,1));
  transform: translateX(-105%);
  animation: fill 3s ease-in-out infinite;
}
.vehicle__bar span:nth-child(2)::after{animation-delay:.15s}
.vehicle__bar span:nth-child(3)::after{animation-delay:.3s}
.vehicle__bar span:nth-child(4)::after{animation-delay:.45s}
.vehicle__bar span:nth-child(5)::after{animation-delay:.6s}
@keyframes fill{0%{transform:translateX(-105%)}45%{transform:translateX(0)}100%{transform:translateX(0)}}

/* scrollHint is now visible on mobile */

/* ========================
   SECTIONS - Mobile First
   ======================== */
.section{padding: 48px 0}
.section--tight{padding: 40px 0}
.section__head{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  margin-bottom:16px;
}
.section__title{
  margin:0;
  font-size:22px;
  letter-spacing:-.03em;
}
.section__kicker{
  margin:0;
  color:var(--muted);
  font-size:12px;
}

.grid2{display:grid; grid-template-columns: 1fr; gap:12px;}
.stack{display:grid; gap:12px}
.cards3{display:grid; grid-template-columns: 1fr; gap:12px;}
.flow{display:grid; gap:12px;}
.cards2{display:grid; grid-template-columns: 1fr; gap:12px;}

.card{
  border-radius:var(--radius2);
  border:1px solid rgba(175,210,255,.12);
  background: linear-gradient(180deg, rgba(10,28,58,.30), rgba(10,28,58,.14));
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  padding:16px;
}
.card--big{padding:18px}
.card p{margin:0; color:rgba(234,242,255,.84); line-height:1.65; font-size:13px}
.card p + p{margin-top:10px}
.card__title{margin:0 0 8px; font-size:15px; letter-spacing:-.02em}
.muted{color:var(--muted)}
.tiny{font-size:11px; margin:8px 0 0}

.icon{
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(175,210,255,.14);
  background:rgba(10,28,58,.22);
  display:grid;
  place-items:center;
  color: rgba(123,211,255,.95);
  margin-bottom:10px;
}
.icon svg{width:20px;height:20px}

/* Marquee */
.marquee{
  margin-top:16px;
  border-radius:999px;
  border:1px solid rgba(175,210,255,.12);
  background:rgba(10,28,58,.18);
  overflow:hidden;
  padding:8px 0;
}
.marquee__track{
  display:flex;
  gap:12px;
  white-space:nowrap;
  will-change:transform;
  animation: marquee 18s linear infinite;
  color:rgba(234,242,255,.75);
  font-weight:700;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.marquee__track span:nth-child(2n){color:rgba(123,211,255,.9)}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* Vehicle Showcase - Full Width Carousel */
.vehicle-showcase{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.vehicle-carousel{
  position:relative;
  border-radius:var(--radius2);
  overflow:hidden;
  background: rgba(6,16,36,.45);
  border:1px solid rgba(175,210,255,.12);
  box-shadow: var(--shadow);
}

.vehicle-carousel__track{
  display:flex;
  transition: transform .5s cubic-bezier(.4,.0,.2,1);
}

.vehicle-carousel__slide{
  min-width:100%;
  aspect-ratio: 16/10;
  position:relative;
  overflow:hidden;
}

.vehicle-carousel__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .6s ease;
}

.vehicle-carousel__slide:hover img{
  transform: scale(1.03);
}

/* Navigation Arrows */
.vehicle-carousel__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(175,210,255,.25);
  background:rgba(5,12,28,.75);
  backdrop-filter:blur(10px);
  color:var(--ink);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all .25s ease;
  z-index:10;
  opacity:.85;
}

.vehicle-carousel__arrow:hover{
  background:rgba(27,107,255,.5);
  border-color:var(--accent2);
  transform:translateY(-50%) scale(1.08);
  opacity:1;
}

.vehicle-carousel__arrow--prev{
  left:12px;
}

.vehicle-carousel__arrow--next{
  right:12px;
}

/* Dots Indicator */
.vehicle-carousel__dots{
  position:absolute;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:10;
}

.vehicle-carousel__dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.5);
  background:transparent;
  cursor:pointer;
  padding:0;
  transition: all .25s ease;
}

.vehicle-carousel__dot:hover{
  border-color:var(--accent2);
  background:rgba(123,211,255,.3);
}

.vehicle-carousel__dot--active{
  background:var(--accent2);
  border-color:var(--accent2);
  transform:scale(1.2);
  box-shadow: 0 0 12px rgba(123,211,255,.5);
}

/* Vehicle Info Card */
.vehicle-info{
  border-radius:var(--radius2);
  border:1px solid rgba(175,210,255,.12);
  background: linear-gradient(180deg, rgba(10,28,58,.32), rgba(10,28,58,.10));
  box-shadow: var(--shadow);
  padding:20px;
}

.vehicle-info__header{
  margin-bottom:14px;
}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(175,210,255,.14);
  background:rgba(10,28,58,.22);
  color:rgba(234,242,255,.88);
  font-weight:900;
  letter-spacing:.05em;
  font-size:11px;
}

.badge--large{
  padding:10px 16px;
  font-size:13px;
  background: linear-gradient(135deg, rgba(27,107,255,.25), rgba(123,211,255,.15));
  border-color:rgba(123,211,255,.30);
}

.vehicle-info__title{
  margin:14px 0 0;
  font-size:20px;
  letter-spacing:-.03em;
}

.vehicle-info__text{
  margin:0;
  color:rgba(234,242,255,.84);
  line-height:1.7;
  font-size:14px;
}

.vehicle-info__features{
  margin-top:18px;
  display:grid;
  gap:12px;
}

.vehicle-feature{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(175,210,255,.12);
  background:rgba(10,28,58,.22);
  color:rgba(234,242,255,.9);
  font-size:14px;
  font-weight:500;
  transition: transform .2s ease, background .2s ease;
}

.vehicle-feature:hover{
  transform:translateX(4px);
  background:rgba(175,210,255,.08);
}

.vehicle-feature__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:50%;
  background: linear-gradient(135deg, rgba(123,211,255,.25), rgba(27,107,255,.20));
  color:var(--accent2);
  flex-shrink:0;
}

/* Mobile carousel adjustments */
@media (max-width: 539px){
  .vehicle-carousel__arrow{
    width:40px;
    height:40px;
  }
  .vehicle-carousel__arrow svg{
    width:18px;
    height:18px;
  }
  .vehicle-carousel__arrow--prev{left:8px}
  .vehicle-carousel__arrow--next{right:8px}
  .vehicle-carousel__dots{bottom:12px; gap:8px}
  .vehicle-carousel__dot{width:10px; height:10px}
}

/* About Hero Images */
.about-hero{
  margin-bottom:16px;
}
.about-hero__images{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  height:180px;
}
.about-hero__img{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(175,210,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.about-hero__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .4s ease;
}
.about-hero__img:hover img{
  transform: scale(1.08);
}
.about-hero__img--1{
  transform: rotate(-1deg);
}
.about-hero__img--2{
  transform: rotate(1deg);
}
.divider{
  height:1px;
  background: linear-gradient(90deg, rgba(175,210,255,0), rgba(175,210,255,.18), rgba(175,210,255,0));
  margin: 0;
}

/* Process / FAQ */
.steps{display:grid; gap:12px;}
.step{
  display:grid;
  grid-template-columns: 40px 1fr;
  gap:10px;
  align-items:flex-start;
}
.step__num{
  width:40px;height:40px;border-radius:12px;
  border:1px solid rgba(175,210,255,.14);
  background:rgba(10,28,58,.22);
  display:grid;place-items:center;
  font-weight:950;
  font-size:13px;
  color: rgba(123,211,255,.95);
}
.step__title{margin:0; font-size:14px; letter-spacing:-.02em}
.step__text{margin:5px 0 0; color:rgba(234,242,255,.84); line-height:1.65; font-size:13px}

.faq{display:grid; gap:8px;}
.faq details{
  border-radius:16px;
  border:1px solid rgba(175,210,255,.12);
  background:rgba(10,28,58,.18);
  padding:12px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  font-size:14px;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";
  float:right;
  color:rgba(123,211,255,.9);
}
.faq details[open] summary::after{content:"–"}
.faq p{margin:10px 0 0; color:rgba(234,242,255,.84); line-height:1.65; font-size:13px}

.ctaBand{
  border-radius:var(--radius2);
  border:1px solid rgba(175,210,255,.14);
  background:
    radial-gradient(700px 400px at 20% 40%, rgba(123,211,255,.18), transparent 55%),
    radial-gradient(700px 400px at 80% 60%, rgba(27,107,255,.22), transparent 55%),
    rgba(10,28,58,.22);
  box-shadow: var(--shadow);
  padding: 18px;
  display:grid;
  gap:10px;
}
.ctaBand__title{margin:0; font-size:18px; letter-spacing:-.03em}
.ctaBand__text{margin:0; color:rgba(234,242,255,.84); line-height:1.65; font-size:13px; max-width:70ch}
.ctaBand__actions{display:flex; gap:8px; flex-wrap:wrap; flex-direction:column}
.wireframe{
  position:absolute;
  inset:0;
}
.wireframe__grid{
  position:absolute;
  inset:-2px;
  background-image: linear-gradient(rgba(175,210,255,.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(175,210,255,.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity:.45;
  mask-image: radial-gradient(circle at 35% 40%, rgba(0,0,0,1), rgba(0,0,0,0) 70%);
}
.wireframe__van{
  position:absolute;
  left:50%;
  top:55%;
  transform: translate(-50%,-50%) scale(0.8);
  width: 220px;
  height: 130px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.6));
}
.van__glow{
  position:absolute;
  inset:-20px;
  border-radius: 30px;
  background: radial-gradient(circle at 40% 35%, rgba(123,211,255,.28), rgba(27,107,255,.16), rgba(0,0,0,0) 65%);
  animation: vanGlow 3.4s ease-in-out infinite;
}
@keyframes vanGlow{0%,100%{transform:scale(1); opacity:.7}50%{transform:scale(1.06); opacity:.95}}
.van__body{
  position:absolute;
  left:22px;
  top:34px;
  width: 150px;
  height: 58px;
  border-radius: 16px;
  border:1px solid rgba(175,210,255,.35);
  background: linear-gradient(180deg, rgba(10,28,58,.12), rgba(10,28,58,.04));
  box-shadow: inset 0 0 0 1px rgba(27,107,255,.18);
}
.van__cab{
  position:absolute;
  left:146px;
  top:44px;
  width: 58px;
  height: 48px;
  border-radius: 14px;
  border:1px solid rgba(175,210,255,.35);
  background: linear-gradient(180deg, rgba(10,28,58,.12), rgba(10,28,58,.04));
  box-shadow: inset 0 0 0 1px rgba(123,211,255,.16);
}
.van__wheel{
  position:absolute;
  bottom: 24px;
  width: 22px; height:22px;
  border-radius:999px;
  border:1px solid rgba(175,210,255,.35);
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.2), rgba(10,28,58,.3));
}
.van__wheel--a{left:52px}
.van__wheel--b{left:160px}
.pulseRing{
  position:absolute;
  left:60%;
  top:40%;
  width:140px;height:140px;
  border-radius:999px;
  border:1px solid rgba(123,211,255,.24);
  background: radial-gradient(circle at 30% 30%, rgba(27,107,255,.12), rgba(0,0,0,0) 60%);
  animation: ring 3.8s ease-in-out infinite;
  opacity:.55;
}
@keyframes ring{0%,100%{transform:scale(.92)}50%{transform:scale(1.06)}}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.contactList{display:grid; gap:8px; margin-top:10px}
.contactItem{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(175,210,255,.12);
  background:rgba(10,28,58,.18);
  transition: transform .18s ease, background .18s ease;
}
.contactItem:hover{transform: translateY(-2px); background:rgba(175,210,255,.08)}
.contactItem__label{font-size:11px; color:var(--muted)}
.contactItem__value{font-size:13px; font-weight:800}
.contactActions{display:flex; gap:8px; margin-top:12px; flex-wrap:wrap; flex-direction:column}

.form .muted{margin:0 0 10px}
.form__row{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-bottom:10px;
}
.field{display:grid; gap:6px}
.field__label{font-size:11px; color:var(--muted)}
.field__input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(175,210,255,.14);
  background:rgba(6,16,36,.48);
  color:rgba(234,242,255,.92);
  padding:10px 12px;
  font-size:14px;
  outline:none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field__input:focus{
  border-color: rgba(123,211,255,.45);
  box-shadow: 0 0 0 5px rgba(27,107,255,.14);
}
.field__textarea{min-height:100px; resize:vertical}

/* Footer */
.footer{
  margin-top: 40px;
  border-top:1px solid rgba(175,210,255,.12);
  background: linear-gradient(180deg, rgba(5,12,28,.40), rgba(4,9,23,.95));
  position: relative;
}
.footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
}
.footer__main{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0 32px;
}
.footer__brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__logo-link{
  display: block;
  transition: transform .3s ease, opacity .3s ease;
}
.footer__logo-link:hover{
  transform: scale(1.05);
  opacity: 0.9;
}
.footer__logo{
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(123,211,255,.2));
}
.footer__info{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__name{
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .1em;
  font-size: 18px;
}
.footer__name .brand__name{
  color: var(--accent2);
}
.footer__name .brand__suffix{
  color: rgba(234,242,255,.9);
}
.footer__tagline{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.footer__columns{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}
.footer__col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__heading{
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent2);
}
.footer__nav{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a{
  font-size: 14px;
  color: rgba(234,242,255,.75);
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.footer__nav a:hover{
  color: white;
  transform: translateX(4px);
}
.footer__contact{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(234,242,255,.75);
  transition: color .2s ease;
}
.footer__contact a svg{
  color: var(--accent2);
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity .2s ease;
}
.footer__contact a:hover{
  color: white;
}
.footer__contact a:hover svg{
  opacity: 1;
}
.footer__bottom{
  border-top: 1px solid rgba(175,210,255,.10);
  padding: 16px 0;
  background: rgba(4,9,23,.5);
}
.footer__bottom-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer__copyright{
  font-size: 12px;
  color: var(--muted);
}
.footer__credit{
  font-size: 12px;
  color: rgba(182,199,230,.6);
}
.footer__credit a{
  color: var(--accent2);
  font-weight: 600;
  transition: opacity .2s ease;
}
.footer__credit a:hover{
  opacity: 0.8;
}

/* Reveal + tilt */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}
.tilt{
  transform-style:preserve-3d;
  will-change:transform;
}

/* ============================
   TABLET / MEDIUM SCREENS
   ============================ */
@media (min-width: 540px){
  .container{
    width: calc(100% - 40px);
  }

  .hero{
    padding: 100px 0 50px;
  }
  
  .hero__video-overlay{
    background: linear-gradient(
      180deg,
      rgba(5, 12, 28, 0.65) 0%,
      rgba(7, 23, 52, 0.70) 50%,
      rgba(5, 12, 28, 0.88) 100%
    );
  }
  
  .hero__centered{
    padding: 0;
  }

  .hero__title{
    margin:24px 0 18px;
  }
  
  .hero__titleTop{
    font-size: clamp(36px, 8vw, 80px);
  }
  
  .hero__titleBottom{
    font-size: clamp(42px, 9vw, 90px);
  }

  .hero__lead{
    font-size:15px;
    padding: 0;
  }
  
  .hero__lead br{display:block}

  .hero__cta{
    gap:12px;
    bottom: 90px;
  }
  .hero__cta .btn--xl{
    height:48px;
    padding:0 18px;
    font-size:13px;
  }
  
  .scrollHint{
    bottom: 28px;
  }

  .btn--xl{
    width:auto;
  }
  
  .scrollHint__mouse{
    width:26px; height:42px;
  }
  
  .scrollHint__wheel{
    width:3px; height:8px;
  }

  .ctaBand__actions{
    flex-direction:row;
  }

  .contactActions{
    flex-direction:row;
  }

  .contactItem{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    gap:12px;
  }

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

/* ============================
   TABLET / LANDSCAPE
   ============================ */
@media (min-width: 768px){
  .container{
    width: min(var(--max), calc(100% - 48px));
  }

  .hero__video-bg{
    position: absolute;
    height: 100%;
  }

  section[id]{scroll-margin-top: 110px;}

  .nav{
    width: min(var(--max), calc(100% - 48px));
    padding:14px 0;
    gap:14px;
  }


  /* Hide hamburger, show desktop nav */
  .nav__toggle{
    display:none;
  }
  .mobile-menu{
    display:none;
  }
  .nav__links{
    display:flex;
    gap:4px;
    align-items:center;
  }
  .nav__link{
    font-size:13px;
    padding:8px 16px;
  }
  
  .nav__left{
    gap:20px;
  }
  .brand__logo{
    height:65px;
  }
  .brand__text{
    font-size:15px;
  }

  .btn{
    height:40px;
    font-size:12px;
  }
  .btn--xl{
    height:48px;
    padding:0 18px;
    font-size:13px;
  }

  .hero{
    padding: 110px 0 60px;
  }
  .hero__title{
    margin:28px 0 20px;
  }
  .hero__titleTop{font-size: clamp(44px, 7vw, 70px)}
  .hero__titleBottom{font-size: clamp(50px, 8vw, 80px)}
  .hero__lead{font-size:16px; line-height:1.7}
  
  .stat__num{font-size:42px}
  .stat__suffix{font-size:28px}

  .section{padding: 72px 0}
  .section--tight{padding: 56px 0}
  .section__head{
    flex-direction:row;
    align-items:flex-end;
    justify-content:space-between;
  }
  .section__title{font-size:26px}
  .section__kicker{font-size:13px}

  .cards2{grid-template-columns: 1fr 1fr}
  .cards3{grid-template-columns: repeat(3, 1fr)}

  .card{padding:18px}
  .card--big{padding:22px}
  .card p{font-size:14px}
  .card__title{font-size:16px}

  .icon{width:44px; height:44px; border-radius:14px}
  .icon svg{width:24px;height:24px}

  .vehicle-carousel__slide{
    aspect-ratio: 16/9;
  }
  
  .vehicle-carousel__arrow{
    width:52px;
    height:52px;
  }
  
  .vehicle-carousel__arrow--prev{left:16px}
  .vehicle-carousel__arrow--next{right:16px}
  
  .vehicle-info{padding:24px}
  .vehicle-info__title{font-size:24px}
  .vehicle-info__features{gap:14px}
  .vehicle-feature{font-size:15px; padding:16px 18px}
  
  .about-hero__images{height:220px; gap:16px}

  .step{grid-template-columns: 44px 1fr; gap:12px}
  .step__num{width:44px;height:44px;border-radius:14px;font-size:14px}
  .step__title{font-size:16px}
  .step__text{font-size:14px}

  .faq summary{font-size:15px}
  .faq p{font-size:14px}

  .ctaBand{padding:22px}
  .ctaBand__title{font-size:22px}
  .ctaBand__text{font-size:14px}

  .footer__main{
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 48px 0 40px;
  }
  .footer__brand{
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .footer__logo{
    height: 90px;
  }
  .footer__info{
    align-items: flex-start;
  }
  .footer__name{
    justify-content: flex-start;
    font-size: 20px;
  }
  .footer__tagline{
    font-size: 14px;
  }
  .footer__columns{
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    text-align: left;
  }
  .footer__nav a{
    font-size: 14px;
  }
  .footer__contact a{
    justify-content: flex-start;
    font-size: 14px;
  }
  .footer__bottom-inner{
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================
   DESKTOP / LARGE SCREENS
   ============================ */
@media (min-width: 980px){
  .cursor-glow{
    display:block;
    position:fixed;
    width:380px; height:380px;
    margin:-190px 0 0 -190px;
    border-radius:999px;
    pointer-events:none;
    z-index:-1;
    background:radial-gradient(circle at 30% 30%, rgba(123,211,255,.16), transparent 60%),
               radial-gradient(circle at 70% 60%, rgba(27,107,255,.18), transparent 55%);
    filter: blur(12px);
    opacity:.9;
    transform: translate3d(-9999px,-9999px,0);
  }

  .nav{
    flex-wrap:nowrap;
    justify-content:space-between;
  }
  .nav__left{
    gap:28px;
  }
  .brand__logo{
    height:75px;
  }
  .brand__text{
    font-size:16px;
  }
  .nav__link{
    font-size:14px;
    padding:8px 18px;
  }

  .hero__centered{
    padding-top: 18vh;
  }
  .hero__titleTop{font-size: clamp(52px, 6vw, 80px)}
  .hero__titleBottom{font-size: clamp(60px, 7vw, 95px)}
  .hero__lead{font-size:17px}
  
  .hero__stats{gap:60px}
  .stat__num{font-size:52px}
  .stat__suffix{font-size:34px}

  .section{padding: 90px 0}
  .section--tight{padding: 72px 0}
  .section__title{font-size:28px}

  .grid2{grid-template-columns: 1fr 1fr}

  .vehicle-showcase{
    display:grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap:24px;
    align-items:stretch;
  }
  
  .vehicle-carousel{
    height:100%;
  }
  
  .vehicle-carousel__slide{
    aspect-ratio: 4/3;
    height:100%;
  }
  
  .vehicle-carousel__arrow{
    width:56px;
    height:56px;
  }
  
  .vehicle-carousel__arrow--prev{left:20px}
  .vehicle-carousel__arrow--next{right:20px}
  
  .vehicle-carousel__dots{bottom:20px; gap:12px}
  .vehicle-carousel__dot{width:14px; height:14px}
  
  .vehicle-info{
    padding:28px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  
  .vehicle-info__title{font-size:26px}
  .vehicle-info__text{font-size:15px}
  .vehicle-feature{font-size:15px}
  
  .about-hero__images{height:280px; gap:20px}
  .about-hero__img{border-radius:var(--radius2)}

  .contactGrid{
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .footer__main{
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    padding: 56px 0 48px;
  }
  .footer__brand{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__logo{
    height: 100px;
  }
  .footer__name{
    font-size: 22px;
  }
  .footer__columns{
    display: contents;
  }
  .footer__col{
    gap: 16px;
  }
  .footer__heading{
    font-size: 13px;
  }
  .footer__nav{
    gap: 12px;
  }
  .footer__nav a{
    font-size: 15px;
  }
  .footer__contact{
    gap: 14px;
  }
  .footer__contact a{
    font-size: 14px;
  }
  .footer__bottom{
    padding: 20px 0;
  }
  .footer__copyright{
    font-size: 13px;
  }
  .footer__legal{
    font-size: 12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .marquee__track, .scrollHint__wheel, .van__glow, .pulseRing, .vehicle__bar span::after{animation:none !important}
  .reveal{transition:none}
  .cursor-glow{display:none}
}
