:root{
  --bg:#04060b;
  --text:#ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);

  --blue:#2aa8ff;
  --blue2:#1f56ff;
  --ice:#dff4ff;
  --white:#ffffff;

  --shadow: 0 26px 85px rgba(0,0,0,.68);
  --shadow2: 0 10px 28px rgba(0,0,0,.45);

  --radius: 22px;
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 12% 12%, rgba(42,168,255,.25), transparent 58%),
    radial-gradient(900px 650px at 88% 10%, rgba(31,86,255,.22), transparent 60%),
    linear-gradient(180deg, #04060b, #050812 40%, #03040a);
  overflow-x:hidden;
  -webkit-tap-highlight-color: transparent;
}

/* carbon fibre overlay */
body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background:
    linear-gradient(45deg, rgba(255,255,255,.06) 25%, transparent 25% 50%, rgba(255,255,255,.06) 50% 75%, transparent 75%) 0 0 / 22px 22px,
    radial-gradient(800px 420px at 50% 10%, rgba(42,168,255,.12), transparent 65%);
  opacity:.10;
  z-index:-4;
  mix-blend-mode: overlay;
}

/* checkered strip */
.race-strip{
  position:fixed; inset:0 0 auto 0;
  height:10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.20) 0 12.5%, transparent 12.5% 25%, rgba(255,255,255,.20) 25% 37.5%, transparent 37.5% 50%,
                              rgba(255,255,255,.20) 50% 62.5%, transparent 62.5% 75%, rgba(255,255,255,.20) 75% 87.5%, transparent 87.5% 100%);
  opacity:.32;
  z-index:60;
  pointer-events:none;
  background-size: 240px 10px;
  animation: checkerShine 2.6s linear infinite;
}
@keyframes checkerShine{
  0%{ filter: brightness(1); background-position: 0 0; }
  50%{ filter: brightness(1.25); }
  100%{ filter: brightness(1); background-position: 240px 0; }
}

/* speed lines */
.speed-lines{
  position:fixed; inset:0;
  pointer-events:none;
  z-index:-3;
  opacity:.18;
  background:
    repeating-linear-gradient(115deg,
      rgba(255,255,255,.20) 0 1px,
      transparent 1px 18px);
  mask-image: radial-gradient(780px 520px at 55% 20%, rgba(0,0,0,1), transparent 70%);
  animation: speedShift 3.2s linear infinite;
}
@keyframes speedShift{
  0%{ background-position: 0 0; }
  100%{ background-position: 240px 0; }
}

/* orbs */
.fx-orb{
  position:fixed;
  width:520px; height:520px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(42,168,255,.14), rgba(31,86,255,.10), transparent 65%);
  opacity:.55;
  pointer-events:none;
  z-index:-5;
  animation: floaty 14s ease-in-out infinite;
}
.fx-orb.one{left:-180px; top:-170px;}
.fx-orb.two{right:-240px; top:120px; width:640px; height:640px; opacity:.42; animation-duration:18s}
.fx-orb.three{left:20%; bottom:-340px; width:760px; height:760px; opacity:.35; animation-duration:22s}
@keyframes floaty{0%,100%{transform:translate3d(0,0,0) scale(1)}50%{transform:translate3d(0,20px,0) scale(1.03)}}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(4,6,11,.62);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.nav{display:flex; align-items:center; justify-content:space-between; min-height:76px; gap:14px}

.brand{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.35px; text-transform:uppercase}
.brand-mark{
  display:grid; place-items:center;
  width:42px; height:42px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(223,244,255,.22), rgba(42,168,255,.24), rgba(31,86,255,.24));
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 34px rgba(0,0,0,.55), 0 0 28px rgba(42,168,255,.22);
  overflow:hidden;
}
.brand-logo{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.95;
}
.brand-name{font-size:14px; letter-spacing:1.2px}

.site-nav{display:flex; align-items:center; gap:14px}
.site-nav a{
  padding:10px 10px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
  position:relative;
}
.site-nav a::after{
  content:"";
  position:absolute; left:12px; right:12px; bottom:6px;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(42,168,255,.85), transparent);
  opacity:0;
  transform: translateY(4px);
  transition: .18s ease;
}
.site-nav a:hover::after{opacity:.7; transform: translateY(0)}
.site-nav a.active{
  color:var(--text);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.site-nav a.btn{color:#06111f}

.nav-toggle{
  display:none;
  width:46px; height:42px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  cursor:pointer;
}
.nav-toggle span{
  display:block; height:2px; width:18px;
  background:rgba(255,255,255,.82);
  margin:4px auto;
  border-radius:2px;
}

/* hero */
.hero{padding:0}
.hero-bg{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.80), rgba(0,0,0,.92)),
    url('assets/logo.jpg') center/cover no-repeat;
  animation: heroExplode .95s ease both;
}
@keyframes heroExplode{
  0%{ filter: brightness(.8); transform: scale(1.02); }
  100%{ filter: brightness(1); transform: scale(1); }
}

/* heat-wave shimmer */
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(800px 420px at 50% 85%, rgba(42,168,255,.14), transparent 70%),
    radial-gradient(600px 320px at 65% 70%, rgba(255,255,255,.06), transparent 70%);
  opacity:.55;
  mix-blend-mode: screen;
  filter: blur(0.4px);
  animation: heatWave 5.5s ease-in-out infinite;
  z-index:1;
}
@keyframes heatWave{
  0%,100%{ transform: translateY(0) skewX(0deg); }
  50%{ transform: translateY(-10px) skewX(-2deg); }
}

.hero-center{
  position:relative;
  z-index:2;
  padding:120px 0 72px;
  text-align:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
  font-size:12px;
  letter-spacing:.35px;
}
.kicker::before{
  content:"";
  width:10px; height:10px; border-radius:3px;
  background: linear-gradient(135deg, var(--ice), var(--blue), var(--blue2));
  box-shadow: 0 0 18px rgba(42,168,255,.35);
}

.hero-title{
  font-size: clamp(30px, 6vw, 56px);
  line-height:1.03;
  margin:14px 0 12px;
  letter-spacing:-.4px;
  text-transform:uppercase;
  animation: neonPulse 2.8s ease-in-out infinite;
}
@keyframes neonPulse{
  0%,100%{ text-shadow: 0 0 22px rgba(42,168,255,.25); }
  50%{ text-shadow: 0 0 44px rgba(42,168,255,.55), 0 0 80px rgba(31,86,255,.20); }
}
.grad{
  background: linear-gradient(90deg, var(--ice), var(--blue), var(--blue2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{font-size: clamp(14px, 2.4vw, 17px); color:var(--muted); max-width:66ch}
.hero-lead{margin: 0 auto 18px}
.contact-bar{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin: 8px auto 12px;
  color: rgba(255,255,255,.88);
  font-weight:650;
}
.contact-bar a{color:#fff; text-decoration:none}
.sep{opacity:.55}
.hero-cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; justify-content:center}

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  background: linear-gradient(90deg, var(--ice), var(--blue), var(--blue2));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 42px rgba(0,0,0,.55), 0 0 34px rgba(42,168,255,.18);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  color:#06111f;
  position:relative;
  overflow:visible;
}
.btn:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 70px rgba(0,0,0,.65), 0 0 44px rgba(42,168,255,.22);
  animation: btnKick .22s ease-in-out;
}
@keyframes btnKick{
  0%{ transform: translateY(-2px) scale(1.01); }
  45%{ transform: translateY(-2px) scale(1.01) translateX(1px); }
  100%{ transform: translateY(-2px) scale(1.01); }
}
.btn:active{transform: translateY(0px) scale(.99)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 40px rgba(0,0,0,.48);
  color:var(--text);
}
.btn-small{padding:9px 12px; border-radius:14px}
.btn-block{width:100%}

/* Blow-off valve puff on hover */
.btn::before{
  content:"";
  position:absolute;
  top:50%;
  left:100%;
  width:14px;
  height:14px;
  border-radius:50%;
  transform: translate(-50%, -50%) scale(0);
  background:
    radial-gradient(circle, rgba(255,255,255,.9), rgba(42,168,255,.8) 40%, rgba(42,168,255,.25) 60%, transparent 70%);
  opacity:0;
  pointer-events:none;
}
.btn::after{
  content:"";
  position:absolute;
  top:50%;
  left:100%;
  width:160px;
  height:120px;
  transform: translate(0, -50%) scale(0.4);
  background:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(42,168,255,.25), transparent 70%);
  filter: blur(12px);
  opacity:0;
  pointer-events:none;
}
.btn:hover::before{ animation: blowOffRing .6s ease-out forwards; }
.btn:hover::after{ animation: blowOffSmoke .85s ease-out forwards; }

@keyframes blowOffRing{
  0%{ opacity:1; transform: translate(-50%, -50%) scale(0); }
  30%{ opacity:.9; transform: translate(-50%, -50%) scale(6); }
  100%{ opacity:0; transform: translate(-50%, -50%) scale(9); }
}
@keyframes blowOffSmoke{
  0%{ opacity:.7; transform: translate(0, -50%) scale(0.4); }
  40%{ opacity:.6; transform: translate(30px, -65%) scale(0.8); }
  100%{ opacity:0; transform: translate(80px, -80%) scale(1.2); }
}

/* chips */
.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; justify-content:center}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-size:12px;
  letter-spacing:.25px;
}
.chip strong{color:var(--white)}

/* divider */
.divider-race{
  height:2px;
  margin:14px auto 0;
  max-width: 860px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), rgba(42,168,255,.85), rgba(255,255,255,.25), transparent);
  opacity:.8;
}

/* stats */
.stats{display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-top:18px}
.stat{
  padding:14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.stat::after{
  content:"";
  position:absolute; inset:auto -20% 0 -20%;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(42,168,255,.8), transparent);
  opacity:.65;
}
.stat-num{font-size:18px; font-weight:950; text-transform:uppercase}
.stat-label{font-size:12.5px; color:var(--muted); margin-top:2px}

/* sections */
.section{padding:48px 0}
.section.alt{
  background:
    radial-gradient(700px 350px at 20% 20%, rgba(42,168,255,.16), transparent 60%),
    radial-gradient(600px 350px at 80% 10%, rgba(31,86,255,.14), transparent 60%),
    rgba(255,255,255,.012);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{margin-bottom:18px}
h1,h2,h3{margin:0 0 10px; word-break: break-word;}
h2{font-size:32px; letter-spacing:-.25px}
.muted{color:var(--muted)}
.small{font-size:12.5px}

/* grid */
.grid{display:grid; gap:14px}
.grid.two{grid-template-columns: repeat(2,1fr)}
.grid.three{grid-template-columns: repeat(3,1fr)}

/* cards */
.card{
  position:relative;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 240px at 20% 10%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(520px 240px at 80% 10%, rgba(42,168,255,.16), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 10px);
  opacity:.38;
  pointer-events:none;
}
.card > *{position:relative}
.card:hover{
  border-color: rgba(42,168,255,.30);
  box-shadow: 0 34px 105px rgba(0,0,0,.70), 0 0 52px rgba(42,168,255,.18);
}

.checklist{margin:12px 0 0; padding:0; list-style:none}
.checklist li{
  padding-left:26px; margin:8px 0;
  position:relative; color:var(--muted)
}
.checklist li::before{
  content:"▶";
  position:absolute; left:0; top:0;
  color: var(--blue);
  font-weight:950;
  text-shadow: 0 0 20px rgba(42,168,255,.40);
}

/* media card */
.media-card{padding:0}
.media-img{
  width:100%;
  height:100%;
  min-height: 320px;
  object-fit:cover;
  display:block;
  transition: transform .45s ease;
}
.media-card:hover .media-img{ transform: scale(1.07); }

/* banner */
.banner-bg{
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.88)),
    url('assets/performance.jpg') center/cover no-repeat;
  padding: 96px 0;
  text-align:center;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.banner-inner{max-width: 900px}
.banner-title{
  font-size: clamp(22px, 5vw, 44px);
  text-shadow: 0 0 28px rgba(42,168,255,.45);
  text-transform:uppercase;
  letter-spacing:.8px;
}
.banner-text{
  margin:16px auto 0;
  font-size:18px;
  color: rgba(255,255,255,.86);
}
.banner-cta{margin-top:22px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap}

/* map */
.map-wrap{
  position:relative;
  padding-top:56.25%;
  border-radius:20px;
  overflow:hidden;
}
.map-wrap iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.map-actions{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* forms */
.form label{display:block; margin:12px 0; font-size:13px; color:var(--muted)}
input, select, textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(42,168,255,.44);
  box-shadow: 0 0 0 6px rgba(42,168,255,.12);
}
.divider{height:1px; background: rgba(255,255,255,.10); margin:16px 0}
.contact-list{display:grid; gap:12px; margin-top:12px}
.contact-item{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.contact-label{font-size:12px; color:var(--muted); margin-bottom:4px}

/* toast */
.toast{
  display:none;
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(42,168,255,.32);
  background: rgba(42,168,255,.12);
}

/* footer */
.site-footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:24px 0;
  background: rgba(0,0,0,.18);
}
.footer-grid{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{color:var(--muted)}
.footer-brand{margin-bottom:8px}

/* pricing */
.price{position:relative}
.price .price-tag{font-size:18px; font-weight:950; margin:10px 0 10px}
.price.featured{
  outline: 1px solid rgba(42,168,255,.38);
  box-shadow: 0 38px 120px rgba(0,0,0,.74), 0 0 60px rgba(42,168,255,.16);
}
.pill{
  position:absolute; top:14px; right:14px;
  font-size:11px; padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(42,168,255,.30);
  background: rgba(42,168,255,.12);
  text-transform:uppercase;
  letter-spacing:.35px;
}

/* page hero */
.page-hero{padding:52px 0 10px}

/* CTA banner */
.cta-banner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  padding:24px;
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(700px 350px at 20% 20%, rgba(42,168,255,.16), transparent 60%),
    radial-gradient(600px 350px at 80% 10%, rgba(31,86,255,.14), transparent 60%),
    rgba(255,255,255,.02);
  box-shadow: var(--shadow);
}

/* Exhaust smoke */
.exhaust-smoke{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index:1;
}
.smoke{
  position:absolute;
  bottom:-140px;
  left: 10%;
  width: 320px;
  height: 220px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(circle at 65% 55%, rgba(42,168,255,.15), transparent 62%),
    radial-gradient(circle at 55% 25%, rgba(255,255,255,.12), transparent 58%);
  filter: blur(16px);
  opacity: 0;
  transform: translate3d(0,0,0) scale(.9);
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: smokeRise 6.8s ease-in-out infinite;
}
.smoke.s1{ left: 8%;  animation-delay: 0s;   animation-duration: 6.5s; }
.smoke.s2{ left: 22%; animation-delay: 1.2s; animation-duration: 7.2s; width: 360px; height: 250px; }
.smoke.s3{ left: 38%; animation-delay: 2.0s; animation-duration: 6.9s; width: 300px; height: 210px; }
.smoke.s4{ left: 58%; animation-delay: 3.0s; animation-duration: 7.6s; width: 420px; height: 280px; }
.smoke.s5{ left: 76%; animation-delay: 4.0s; animation-duration: 6.7s; width: 280px; height: 200px; }

@keyframes smokeRise{
  0%   { opacity:0; transform: translate3d(0, 60px, 0) scale(.78) rotate(0deg); }
  15%  { opacity:.62; }
  55%  { opacity:.40; }
  100% { opacity:0; transform: translate3d(0, -600px, 0) scale(1.35) rotate(14deg); }
}

/* 3D turbo */
.turbo-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin: 6px 0 16px;
}
.turbo-3d{
  width: 210px;
  height: 210px;
  position: relative;
  transform-style: preserve-3d;
  border-radius: 28px;
  filter: drop-shadow(0 24px 45px rgba(0,0,0,.65));
  perspective: 900px;
  animation: turboFloat 3.6s ease-in-out infinite;
}
@keyframes turboFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.turbo-body{
  position:absolute; inset:0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.30), rgba(255,255,255,.08) 40%, rgba(0,0,0,.35) 70%),
    radial-gradient(circle at 70% 70%, rgba(42,168,255,.22), transparent 55%),
    conic-gradient(from 30deg, rgba(255,255,255,.08), rgba(255,255,255,.02), rgba(255,255,255,.10), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 45px rgba(0,0,0,.55), 0 0 28px rgba(42,168,255,.18);
  transform: translateZ(10px);
}
.turbo-ring{
  position:absolute;
  inset: 18px;
  border-radius: 50%;
  border: 2px solid rgba(42,168,255,.55);
  box-shadow: 0 0 30px rgba(42,168,255,.22), inset 0 0 20px rgba(42,168,255,.18);
  transform: translateZ(18px);
}
.turbo-center{
  position:absolute;
  inset: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.28), rgba(0,0,0,.35) 60%),
    radial-gradient(circle at 60% 70%, rgba(42,168,255,.22), transparent 55%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 18px rgba(0,0,0,.65);
  transform: translateZ(28px);
}
.turbo-blades{
  position:absolute;
  inset: 34px;
  border-radius: 50%;
  transform-style: preserve-3d;
  transform: translateZ(22px);
  animation: turboSpin .9s linear infinite;
}
@keyframes turboSpin{
  0%{ transform: translateZ(22px) rotateZ(0deg) rotateX(18deg); }
  100%{ transform: translateZ(22px) rotateZ(360deg) rotateX(18deg); }
}
.turbo-blades span{
  position:absolute;
  left:50%;
  top:50%;
  width: 70px;
  height: 18px;
  transform-origin: 0% 50%;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.62), rgba(255,255,255,.10), rgba(42,168,255,.22));
  box-shadow: 0 0 16px rgba(42,168,255,.10);
  opacity:.95;
}
.turbo-blades span:nth-child(1){ transform: translate(-5px,-9px) rotate(0deg) skewX(-22deg); }
.turbo-blades span:nth-child(2){ transform: translate(-5px,-9px) rotate(60deg) skewX(-22deg); }
.turbo-blades span:nth-child(3){ transform: translate(-5px,-9px) rotate(120deg) skewX(-22deg); }
.turbo-blades span:nth-child(4){ transform: translate(-5px,-9px) rotate(180deg) skewX(-22deg); }
.turbo-blades span:nth-child(5){ transform: translate(-5px,-9px) rotate(240deg) skewX(-22deg); }
.turbo-blades span:nth-child(6){ transform: translate(-5px,-9px) rotate(300deg) skewX(-22deg); }
.turbo-3d:hover .turbo-blades{ animation-duration: .5s; }

/* turbo aura + sparks */
.turbo-3d::before{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius:50%;
  background: conic-gradient(from 0deg,
    transparent,
    rgba(42,168,255,.38),
    rgba(255,255,255,.16),
    rgba(31,86,255,.34),
    transparent);
  filter: blur(10px);
  opacity:.62;
  animation: turboAura 1.05s linear infinite;
  pointer-events:none;
}
@keyframes turboAura{
  0%{ transform: rotate(0deg) scale(1); }
  50%{ transform: rotate(180deg) scale(1.03); }
  100%{ transform: rotate(360deg) scale(1); }
}
.turbo-3d::after{
  content:"";
  position:absolute;
  inset:-30px;
  border-radius:50%;
  background:
    radial-gradient(circle at 15% 50%, rgba(42,168,255,.40) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 35%, rgba(255,255,255,.28) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 90%, rgba(42,168,255,.32) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 20%, rgba(255,255,255,.22) 0 2px, transparent 3px);
  opacity:.65;
  animation: sparksOrbit .95s linear infinite;
  pointer-events:none;
}
@keyframes sparksOrbit{
  0%{ transform: rotate(0deg); opacity:.35; }
  50%{ transform: rotate(180deg); opacity:.75; }
  100%{ transform: rotate(360deg); opacity:.35; }
}

/* fire pulse behind turbo card */
.card.fire-pulse::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-80px;
  width:260px;
  height:260px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,180,60,.30), rgba(255,60,60,.18), transparent 60%);
  filter: blur(10px);
  opacity:.55;
  animation: firePulse 1.25s ease-in-out infinite;
  pointer-events:none;
}
@keyframes firePulse{
  0%,100%{ transform: scale(1); opacity:.35; }
  50%{ transform: scale(1.08); opacity:.70; }
}

/* scroll reveals */
.reveal{
  opacity:0;
  transform: translateY(26px) scale(.97);
  filter: blur(10px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.reveal.delay-1{ transition-delay:.08s; }
.reveal.delay-2{ transition-delay:.16s; }
.reveal.delay-3{ transition-delay:.24s; }
.reveal.delay-4{ transition-delay:.32s; }

/* specs grid */
.spec-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.spec{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.spec strong{display:block; font-size:13px; letter-spacing:.2px; text-transform:uppercase}
.spec span{display:block; margin-top:4px; color: rgba(255,255,255,.72); font-size:12.5px}

/* boost gauge */
.boost-panel{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.boost-gauge{
  flex: 1 1 380px;
  border-radius:22px;
  padding:16px;
}
.boost-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.boost-label{ font-weight:950; letter-spacing:1px; text-transform:uppercase; }
.boost-psi{ font-weight:1000; letter-spacing:2px; text-transform:uppercase; }
.boost-bar{
  margin-top:12px;
  height:14px;
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
}
.boost-fill{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--ice), var(--blue), var(--blue2));
  box-shadow: 0 0 32px rgba(42,168,255,.20);
  transition: width .25s ease;
}

/* marquee + gallery + lightbox */
.marquee-wrap{ overflow:hidden; }
.marquee{ overflow:hidden; border-radius:18px; }
.marquee-track{
  display:flex;
  gap:12px;
  width:max-content;
  animation: marqueeMove 18s linear infinite;
}
.marquee-track img{
  width:220px;
  height:120px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  filter: saturate(1.1) contrast(1.05);
  transform: translateZ(0);
}
@keyframes marqueeMove{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap:14px;
}
.gallery-item{
  grid-column: span 4;
  position:relative;
  padding:0;
  border:0;
  border-radius:22px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 90px rgba(0,0,0,.65);
  cursor:pointer;
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gallery-item.wide{ grid-column: span 8; }
.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  filter: saturate(1.1) contrast(1.08);
  transition: transform .35s ease, filter .35s ease;
}
.gallery-item::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 70% 30%, rgba(42,168,255,.30), transparent 55%);
  opacity:.9;
  pointer-events:none;
}
.gallery-item:hover{
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(42,168,255,.32);
  box-shadow: 0 38px 130px rgba(0,0,0,.75), 0 0 60px rgba(42,168,255,.16);
}
.gallery-item:hover img{
  transform: scale(1.07);
  filter: saturate(1.2) contrast(1.12);
}
.badge{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#071425;
  background: linear-gradient(90deg, var(--ice), var(--blue), var(--blue2));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 28px rgba(0,0,0,.55), 0 0 26px rgba(42,168,255,.18);
}

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:18px;
}
.lightbox.open{ display:flex; }
.lightbox img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 40px 160px rgba(0,0,0,.85), 0 0 70px rgba(42,168,255,.18);
}
.lightbox-close{
  position:fixed;
  top:18px;
  right:18px;
  width:52px;
  height:52px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size:18px;
  cursor:pointer;
}

/* page transition overlay */
.page-transition{
  position:fixed;
  inset:0;
  z-index:1000;
  pointer-events:none;
  opacity:0;
  transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease;
  background: radial-gradient(900px 600px at 50% 20%, rgba(42,168,255,.18), transparent 60%),
              rgba(0,0,0,.88);
  display:flex;
  align-items:center;
  justify-content:center;
}
.page-transition.on{ opacity:1; transform: translateY(0); }
.pt-scan{
  position:absolute;
  inset:0;
  background: repeating-linear-gradient(120deg, rgba(255,255,255,.10) 0 1px, transparent 1px 18px);
  opacity:.12;
  animation: ptMove .35s linear infinite;
}
@keyframes ptMove{
  0%{ background-position: 0 0; }
  100%{ background-position: 180px 0; }
}
.pt-text{
  position:relative;
  font-weight:1000;
  letter-spacing:4px;
  text-transform:uppercase;
  padding:16px 20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  box-shadow: 0 40px 160px rgba(0,0,0,.85), 0 0 70px rgba(42,168,255,.20);
  text-shadow: 0 0 30px rgba(42,168,255,.55);
}

/* launch intro */
.launch-intro{
  position:fixed;
  inset:0;
  z-index:1100;
  display:none;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.92);
}
.launch-intro.show{ display:flex; }
.launch-intro.hide{ opacity:0; transition: opacity .45s ease; }
.launch-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 50% 20%, rgba(42,168,255,.25), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.10) 0 1px, transparent 1px 18px);
  opacity:.22;
  animation: launchBg 1.2s linear infinite;
}
@keyframes launchBg{
  0%{ background-position: 0 0; }
  100%{ background-position: 220px 0; }
}
.launch-content{
  position:relative;
  text-align:center;
  padding:22px 20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  box-shadow: 0 50px 180px rgba(0,0,0,.88), 0 0 80px rgba(42,168,255,.20);
  width:min(520px, 92vw);
}
.launch-logo{
  font-size:28px;
  font-weight:1000;
  letter-spacing:5px;
  text-transform:uppercase;
  text-shadow: 0 0 40px rgba(42,168,255,.55);
}
.launch-sub{
  margin-top:8px;
  color: rgba(255,255,255,.80);
  font-weight:650;
}
.launch-bar{
  margin:16px auto 10px;
  height:10px;
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.launch-bar span{
  display:block;
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--ice), var(--blue), var(--blue2));
  box-shadow: 0 0 35px rgba(42,168,255,.25);
  animation: boostLoad 1.2s ease forwards;
}
@keyframes boostLoad{
  0%{ width:0%; }
  100%{ width:100%; }
}
.launch-hint{
  margin-top:6px;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  opacity:.85;
}

/* responsive */
@media (max-width: 920px){
  .hero-center{padding:96px 0 54px}
  .stats{grid-template-columns:1fr}
  .grid.three{grid-template-columns:1fr}
  .grid.two{grid-template-columns:1fr}
  .nav-toggle{display:inline-block}
  .site-nav{
    position:absolute;
    right:18px;
    top:76px;
    display:none;
    flex-direction:column;
    min-width: 240px;
    padding:10px;
    background: rgba(8,10,16,.92);
    border:1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open{display:flex}
  .site-header .nav{position:relative}

  .site-nav a{ width:100%; text-align:left; }
  .site-nav a.btn{ width:100%; justify-content:center; }

  .marquee-track img{ width:170px; height:110px; }
  .gallery-item{ grid-column: span 12; }
  .gallery-item.wide{ grid-column: span 12; }
  .gallery-item img{ height:220px; }

  .spec-grid{grid-template-columns: 1fr;}
  .launch-logo{ font-size:20px; }
  .pt-text{ font-size:14px; letter-spacing:3px; }
}

@media (min-width: 920px){
  .turbo-3d{ width: 260px; height: 260px; }
  .turbo-center{ inset: 96px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .fx-orb, .speed-lines, .race-strip, .hero-title, .launch-bg, .pt-scan, .hero-bg, .smoke, .turbo-3d, .turbo-blades, .marquee-track { animation:none !important; }
  .reveal{ transition:none !important; opacity:1; transform:none; filter:none; }
  .btn, .card{transition:none}
}

