/* ============================================================
   AWESOME LAYER — cinematic premium upgrades
   Loads AFTER main.css. Pure additive: no overrides of layout.
   ============================================================ */

/* ── 0. Boot Intro Loader ─────────────────────────────────── */
.boot-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease 0.1s, visibility 0.6s ease 0.1s;
}
.boot-intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.boot-intro-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  background: linear-gradient(110deg, #3a3a3a 20%, #fff 38%, #E52521 50%, #fff 62%, #3a3a3a 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: boot-sheen 1.3s ease-in-out both;
}
.boot-intro-logo span { color: var(--accent); -webkit-text-fill-color: var(--accent); }
@keyframes boot-sheen {
  0%   { background-position: 120% 0; opacity: 0; transform: translateY(14px); }
  30%  { opacity: 1; transform: translateY(0); }
  100% { background-position: -60% 0; opacity: 1; }
}
.boot-intro-bar {
  width: min(280px, 60vw);
  height: 2px;
  background: #1c1c1c;
  overflow: hidden;
  position: relative;
}
.boot-intro-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), #ff9a97);
  animation: boot-rev 1.05s cubic-bezier(0.7, 0, 0.2, 1) 0.15s forwards;
}
@keyframes boot-rev { to { transform: scaleX(1); } }
.boot-intro-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── 1. Custom Cursor (fine pointers only) ────────────────── */
@media (pointer: fine) {
  body.has-cursor-fx { cursor: none; }
  body.has-cursor-fx a, body.has-cursor-fx button,
  body.has-cursor-fx select, body.has-cursor-fx input { cursor: none; }

  .fx-cursor-dot, .fx-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10001;
    border-radius: 50%;
    will-change: transform;
  }
  .fx-cursor-dot {
    width: 6px; height: 6px;
    margin: -3px 0 0 -3px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(229,37,33,0.8);
  }
  .fx-cursor-ring {
    width: 34px; height: 34px;
    margin: -17px 0 0 -17px;
    border: 1.5px solid rgba(229,37,33,0.55);
    transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease,
                border-color 0.25s ease, background 0.25s ease;
  }
  .fx-cursor-ring.is-link {
    width: 56px; height: 56px;
    margin: -28px 0 0 -28px;
    border-color: rgba(255,255,255,0.9);
    background: rgba(229,37,33,0.12);
  }
}

/* ── 2. Scroll progress + velocity meter ──────────────────── */
.fx-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  z-index: 9500;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-dark), var(--accent) 60%, #ff9a97);
  box-shadow: 0 0 14px rgba(229,37,33,0.7);
  pointer-events: none;
}
.fx-speedo {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9400;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(8,8,8,0.82);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s ease;
}
.fx-speedo.on { opacity: 1; transform: translateY(0); }
.fx-speedo.hot { border-color: var(--accent); }
.fx-speedo-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  min-width: 2.2ch;
  text-align: right;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.fx-speedo.hot .fx-speedo-num { color: var(--accent); text-shadow: 0 0 16px rgba(229,37,33,0.6); }
.fx-speedo-unit {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 767px) { .fx-speedo { display: none; } }

/* ── 3. Kinetic Marquee ───────────────────────────────────── */
.fx-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-stripe);
  padding: 18px 0;
  position: relative;
}
.fx-marquee--accent {
  background: var(--accent);
  border-color: var(--accent-dark);
}
.fx-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: fx-marquee-scroll 28s linear infinite;
  will-change: transform;
}
.fx-marquee:hover .fx-marquee-track { animation-play-state: paused; }
@keyframes fx-marquee-scroll { to { transform: translateX(-50%); } }
.fx-marquee-seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.fx-marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
  line-height: 1;
}
.fx-marquee-item--outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--text-muted);
}
.fx-marquee--accent .fx-marquee-item { color: #fff; }
.fx-marquee--accent .fx-marquee-item--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.65);
}
.fx-marquee-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.fx-marquee--accent .fx-marquee-dot { background: #fff; }

/* ── 4. Hero cinematic upgrades ───────────────────────────── */
/* Slow ken-burns on the hero image */
@media (prefers-reduced-motion: no-preference) {
  .hero-media img, .hero-media video {
    animation: fx-kenburns 22s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes fx-kenburns {
    from { scale: 1; }
    to   { scale: 1.09; }
  }
}
/* Red scan light sweeping across the hero */
.fx-hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.fx-hero-scan::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -30%;
  width: 18%;
  height: 140%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(229,37,33,0.10) 45%, rgba(255,255,255,0.05) 50%, rgba(229,37,33,0.10) 55%, transparent);
  animation: fx-scan-pass 7.5s cubic-bezier(0.6, 0, 0.3, 1) infinite;
}
@keyframes fx-scan-pass {
  0%, 62%  { left: -30%; }
  86%, 100% { left: 130%; }
}
/* Giant outlined drifting word behind hero content */
.fx-hero-ghost {
  position: absolute;
  bottom: 16%;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 15rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.10);
  user-select: none;
}
.fx-hero-ghost > span {
  display: inline-block;
  animation: fx-ghost-drift 40s linear infinite;
}
@keyframes fx-ghost-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Hero headline: line-mask reveal (no DOM splitting) */
@media (prefers-reduced-motion: no-preference) {
  .hero-headline {
    clip-path: inset(0 0 100% 0);
    animation: fx-line-reveal 0.9s cubic-bezier(0.3, 0.9, 0.3, 1) 0.25s forwards;
  }
  .hero-subline {
    opacity: 0;
    transform: translateY(18px);
    animation: fx-rise 0.7s cubic-bezier(0.3, 0.9, 0.3, 1) 0.8s forwards;
  }
  @keyframes fx-line-reveal { to { clip-path: inset(0 0 -12% 0); } }
  @keyframes fx-rise { to { opacity: 1; transform: translateY(0); } }
}

/* ── 5. Vehicle card 3D tilt + glare ─────────────────────── */
.vehicle-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.vehicle-card.fx-tilting {
  transition: box-shadow var(--transition);
}
.fx-glare {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%),
              rgba(255,255,255,0.10), rgba(229,37,33,0.05) 40%, transparent 65%);
  transition: opacity 0.3s ease;
}
.vehicle-card:hover .fx-glare { opacity: 1; }

/* Card thumb: headlight flare line on hover */
.vehicle-card-thumb { position: relative; overflow: hidden; }
.vehicle-card-thumb::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  transition: left 0.6s cubic-bezier(0.5, 0, 0.3, 1);
  pointer-events: none;
  z-index: 4;
}
.vehicle-card:hover .vehicle-card-thumb::after { left: 140%; }

/* ── 6. Section heading wipe reveal ───────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .display-section[data-animate] {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.9s cubic-bezier(0.6, 0, 0.2, 1);
  }
  .display-section[data-animate].animate-in {
    clip-path: inset(0 -5% 0 0);
    /* neutralize main.css transform-based .animate-in */
    opacity: 1;
    transform: none;
  }
}

/* ── 7. Big ghost words behind sections ───────────────────── */
.fx-section-ghost {
  position: relative;
}
.fx-section-ghost::before {
  content: attr(data-ghost);
  position: absolute;
  top: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 12rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.055);
  pointer-events: none;
  user-select: none;
}
.fx-section-ghost > .container { position: relative; z-index: 1; }

/* ── 8. Magnetic buttons — JS sets transform; smooth return ─ */
.btn.fx-magnet { transition-property: background, border-color, color, box-shadow, transform; }
.btn.fx-magnet.fx-magnet-idle { transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.3, 1.2), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition); }

/* ── 9. Stat number glow pulse once counted ───────────────── */
.fx-counted {
  animation: fx-stat-pop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1);
}
@keyframes fx-stat-pop {
  0%   { transform: scale(0.94); filter: brightness(1.6); }
  100% { transform: scale(1); filter: brightness(1); }
}

/* ── 10. Reduced motion: kill everything decorative ───────── */
@media (prefers-reduced-motion: reduce) {
  .fx-marquee-track, .fx-hero-ghost > span, .fx-hero-scan::after { animation: none; }
  .boot-intro { display: none; }
}


/* ============================================================
   AWESOME LAYER v2 — even harder
   ============================================================ */

/* ── 11. Cinematic letterbox bars on hero (open on load) ──── */
@media (prefers-reduced-motion: no-preference) {
  .hero { position: relative; }
  .hero::before, .hero::after {
    content: '';
    position: absolute;
    left: 0; width: 100%;
    height: 11%;
    background: #050505;
    z-index: 6;
    pointer-events: none;
    animation: fx-letterbox-open 1.4s cubic-bezier(0.7, 0, 0.2, 1) 0.9s forwards;
  }
  .hero::before { top: 0; transform-origin: top; }
  .hero::after  { bottom: 0; transform-origin: bottom; }
  @keyframes fx-letterbox-open { to { transform: scaleY(0); } }
}

/* ── 12. Chromatic aberration flicker on hero headline ────── */
@media (prefers-reduced-motion: no-preference) {
  .hero-headline {
    animation: fx-line-reveal 0.9s cubic-bezier(0.3, 0.9, 0.3, 1) 0.25s forwards,
               fx-chroma 9s steps(1) 2.5s infinite;
  }
  @keyframes fx-chroma {
    0%, 92.0%, 93.4%, 100% { text-shadow: none; }
    92.4% { text-shadow: -3px 0 rgba(229,37,33,0.85), 3px 0 rgba(64,220,255,0.65); }
    92.8% { text-shadow: 4px 0 rgba(229,37,33,0.85), -4px 0 rgba(64,220,255,0.65); }
    93.2% { text-shadow: -2px 0 rgba(229,37,33,0.7), 2px 0 rgba(64,220,255,0.5); }
  }
}

/* ── 13. Cursor spotlight (dark sections come alive) ──────── */
.fx-spotlight {
  position: fixed;
  inset: 0;
  z-index: 8999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: radial-gradient(560px circle at var(--sx, 50%) var(--sy, 40%),
              rgba(229,37,33,0.055), rgba(255,255,255,0.02) 35%, transparent 62%);
  mix-blend-mode: screen;
}
.fx-spotlight.on { opacity: 1; }
@media (pointer: coarse) { .fx-spotlight { display: none; } }

/* ── 14. Card thumb duotone → full color on hover ─────────── */
.vehicle-card-thumb img {
  filter: saturate(0.72) contrast(1.05);
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vehicle-card:hover .vehicle-card-thumb img {
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.05);
}

/* ── 15. Odometer price roll ──────────────────────────────── */
.fx-odo { display: inline-flex; overflow: hidden; line-height: 1; }
.fx-odo-digit {
  display: inline-block;
  animation: fx-odo-roll 0.9s cubic-bezier(0.2, 0.9, 0.3, 1) both;
  animation-delay: var(--odo-d, 0s);
}
@keyframes fx-odo-roll {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── 16. Scroll-velocity grid skew ────────────────────────── */
.vehicles-grid { will-change: transform; }

/* ── 17. Rev-counter boot intro upgrade ───────────────────── */
.boot-intro-tacho {
  position: relative;
  width: 148px; height: 82px;
  overflow: hidden;
}
.boot-intro-tacho::before {
  content: '';
  position: absolute;
  inset: 0 0 -82px 0;
  border-radius: 50%;
  border: 2px solid #222;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotate(45deg);
}
.boot-intro-needle {
  position: absolute;
  left: 50%; bottom: 2px;
  width: 3px; height: 66px;
  margin-left: -1.5px;
  background: linear-gradient(to top, var(--accent), #ff9a97);
  border-radius: 2px;
  transform-origin: 50% 100%;
  transform: rotate(-84deg);
  box-shadow: 0 0 10px rgba(229,37,33,0.8);
  animation: fx-needle 1.25s cubic-bezier(0.6, 0, 0.3, 1.15) 0.1s forwards;
}
@keyframes fx-needle {
  0%   { transform: rotate(-84deg); }
  70%  { transform: rotate(84deg); }
  85%  { transform: rotate(72deg); }
  100% { transform: rotate(80deg); }
}
.boot-intro-rpm {
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

/* ── 18. Section entrance slash wipe ──────────────────────── */
.fx-slash {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  display: none;
}

/* ── 19. Hero content mouse-parallax targets ──────────────── */
.hero-media, .fx-hero-ghost, .hero-content { will-change: transform; }


/* ============================================================
   AWESOME LAYER v3 — cinematic structure
   ============================================================ */

/* ── 20. Page transition — cinematic gear shift ──────────── */
.fx-wipe {
  position: fixed;
  inset: -10vh -14vw;
  z-index: 10002;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}
.fx-wipe.out, .fx-wipe.in { visibility: visible; }

/* Diagonal panels */
.fx-wipe-panels {
  position: absolute;
  inset: 0;
  display: flex;
  transform: skewX(-14deg);
}
.fx-wipe-panels span {
  flex: 1;
  background: #060606;
  transform: translateY(102%);
  box-shadow: 0 -12px 60px rgba(0,0,0,0.8);
}
.fx-wipe-panels span:nth-child(2) { background: linear-gradient(180deg, var(--accent-light), var(--accent-dark)); }
.fx-wipe-panels span:nth-child(4) { background: #0d0d0d; }

.fx-wipe.out .fx-wipe-panels span {
  animation: fx-panel-up 0.52s cubic-bezier(0.85, 0, 0.12, 1) forwards;
}
.fx-wipe.out .fx-wipe-panels span:nth-child(1) { animation-delay: 0s; }
.fx-wipe.out .fx-wipe-panels span:nth-child(2) { animation-delay: 0.055s; }
.fx-wipe.out .fx-wipe-panels span:nth-child(3) { animation-delay: 0.11s; }
.fx-wipe.out .fx-wipe-panels span:nth-child(4) { animation-delay: 0.165s; }
.fx-wipe.out .fx-wipe-panels span:nth-child(5) { animation-delay: 0.22s; }
@keyframes fx-panel-up { to { transform: translateY(0); } }

.fx-wipe.in .fx-wipe-panels span {
  transform: translateY(0);
  animation: fx-panel-gone 0.6s cubic-bezier(0.85, 0, 0.12, 1) forwards;
}
.fx-wipe.in .fx-wipe-panels span:nth-child(1) { animation-delay: 0.42s; }
.fx-wipe.in .fx-wipe-panels span:nth-child(2) { animation-delay: 0.475s; }
.fx-wipe.in .fx-wipe-panels span:nth-child(3) { animation-delay: 0.53s; }
.fx-wipe.in .fx-wipe-panels span:nth-child(4) { animation-delay: 0.585s; }
.fx-wipe.in .fx-wipe-panels span:nth-child(5) { animation-delay: 0.64s; }
@keyframes fx-panel-gone { to { transform: translateY(-104%); } }

/* Speed-line streaks flying horizontally while covered */
.fx-wipe-streaks {
  position: absolute;
  inset: 10vh 14vw;
  overflow: hidden;
}
.fx-wipe-streaks i {
  position: absolute;
  left: -40%;
  width: 34%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.75), var(--accent), transparent);
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(229,37,33,0.9));
}
.fx-wipe-streaks i:nth-child(1) { top: 22%; }
.fx-wipe-streaks i:nth-child(2) { top: 38%; width: 22%; }
.fx-wipe-streaks i:nth-child(3) { top: 52%; width: 46%; }
.fx-wipe-streaks i:nth-child(4) { top: 66%; width: 26%; }
.fx-wipe-streaks i:nth-child(5) { top: 80%; width: 38%; }
.fx-wipe.out .fx-wipe-streaks i, .fx-wipe.in .fx-wipe-streaks i {
  animation: fx-streak 0.55s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}
.fx-wipe.out .fx-wipe-streaks i:nth-child(1) { animation-delay: 0.34s; }
.fx-wipe.out .fx-wipe-streaks i:nth-child(2) { animation-delay: 0.41s; }
.fx-wipe.out .fx-wipe-streaks i:nth-child(3) { animation-delay: 0.37s; }
.fx-wipe.out .fx-wipe-streaks i:nth-child(4) { animation-delay: 0.45s; }
.fx-wipe.out .fx-wipe-streaks i:nth-child(5) { animation-delay: 0.39s; }
.fx-wipe.in .fx-wipe-streaks i:nth-child(1) { animation-delay: 0s; }
.fx-wipe.in .fx-wipe-streaks i:nth-child(2) { animation-delay: 0.07s; }
.fx-wipe.in .fx-wipe-streaks i:nth-child(3) { animation-delay: 0.03s; }
.fx-wipe.in .fx-wipe-streaks i:nth-child(4) { animation-delay: 0.11s; }
.fx-wipe.in .fx-wipe-streaks i:nth-child(5) { animation-delay: 0.05s; }
@keyframes fx-streak {
  0%   { left: -40%; opacity: 0; }
  12%  { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

/* Logo flash while covered */
.fx-wipe-logo {
  position: absolute;
  inset: 10vh 14vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(110deg, #444 25%, #fff 42%, var(--accent) 50%, #fff 58%, #444 75%);
  background-size: 240% 100%;
  background-position: 130% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
}
.fx-wipe.out .fx-wipe-logo {
  animation: fx-wipe-logo-sheen 0.5s ease-out 0.4s forwards;
}
.fx-wipe.in .fx-wipe-logo {
  animation: fx-wipe-logo-exit 0.45s ease-in forwards;
}
@keyframes fx-wipe-logo-sheen {
  0%   { opacity: 0; background-position: 130% 0; transform: scale(0.92); letter-spacing: 0.1em; }
  30%  { opacity: 1; }
  100% { opacity: 1; background-position: -40% 0; transform: scale(1); letter-spacing: 0.16em; }
}
@keyframes fx-wipe-logo-exit {
  0%   { opacity: 1; background-position: -40% 0; transform: scale(1); }
  100% { opacity: 0; background-position: -140% 0; transform: scale(1.1); filter: blur(4px); }
}

/* Exit zoom on page content while leaving */
@media (prefers-reduced-motion: no-preference) {
  body.fx-leaving main, body.fx-leaving section, body.fx-leaving .hero,
  body.fx-leaving header, body.fx-leaving footer {
    transition: filter 0.55s ease;
    filter: brightness(0.55) saturate(0.6);
  }
}

/* ── 21. Scroll cue in hero ───────────────────────────────── */
.fx-scroll-cue {
  position: absolute;
  left: 28px;
  bottom: 140px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: opacity 0.5s ease;
}
.fx-scroll-cue.gone { opacity: 0; }
.fx-scroll-cue-label {
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.fx-scroll-cue-line {
  width: 1px;
  height: 64px;
  background: var(--border-mid);
  position: relative;
  overflow: hidden;
}
.fx-scroll-cue-line::after {
  content: '';
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--accent);
  animation: fx-cue-drop 1.8s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}
@keyframes fx-cue-drop { to { top: 110%; } }
@media (max-width: 900px) { .fx-scroll-cue { display: none; } }

/* ── 22. Cinematic featured-car scroll story ──────────────── */
.fx-feature { position: relative; height: 320vh; background: #050505; }
.fx-feature-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.fx-feature-media {
  position: absolute;
  inset: 0;
}
.fx-feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.7);
  will-change: transform;
}
.fx-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.85) 0%, transparent 30%, transparent 55%, rgba(5,5,5,0.92) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.6), transparent 45%);
}
.fx-feature-kicker {
  position: absolute;
  top: 9vh;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.fx-feature-kicker .section-eyebrow { font-size: 11px; }
.fx-feature-kicker h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 8px 48px rgba(0,0,0,0.8);
}
.fx-feature-kicker h2 em { font-style: normal; color: var(--accent); }
.fx-feature-chapters {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6vw 11vh;
}
.fx-feature-chapter {
  position: absolute;
  bottom: 11vh;
  left: 6vw;
  right: 6vw;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.3, 0.9, 0.3, 1);
  pointer-events: none;
}
.fx-feature-chapter.live { opacity: 1; transform: translateY(0); }
.fx-feature-num {
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 12vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: transparent;
  background: var(--metallic);
  -webkit-background-clip: text;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.fx-feature-caption {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
}
.fx-feature-progress {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fx-feature-progress i {
  width: 2px; height: 34px;
  background: var(--border-mid);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.fx-feature-progress i.live {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(229,37,33,0.8);
}
.fx-feature-cta {
  position: absolute;
  bottom: 11vh;
  right: 6vw;
  z-index: 3;
}
@media (max-width: 900px) {
  .fx-feature { height: 260vh; }
  .fx-feature-cta { display: none; }
}

/* ── 23. Ignition CTA ─────────────────────────────────────── */
.fx-ignition {
  position: relative;
}
.fx-ignition::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1.5px solid rgba(229,37,33,0.55);
  animation: fx-ignition-pulse 2.1s ease-out infinite;
  pointer-events: none;
}
@keyframes fx-ignition-pulse {
  0%   { opacity: 1; inset: -4px; }
  70%  { opacity: 0; inset: -14px; }
  100% { opacity: 0; inset: -14px; }
}

@media (prefers-reduced-motion: reduce) {
  .fx-wipe, .fx-scroll-cue-line::after, .fx-ignition::before { animation: none !important; display: none; }
  .fx-feature { height: auto; }
  .fx-feature-chapter { position: static; opacity: 1; transform: none; margin-bottom: 24px; }
}
