/* ══ RESET & ROOT ══ */
:root {
  --cyan:    #00c8f0;
  --cyan2:   #00a8cc;
  --navy:    #050d1a;
  --navy2:   #070f20;
  --navy3:   #0a1628;
  --blue:    #0d1f3c;
  --white:   #ffffff;
  --gray:    #aab4c0;
  --fd: 'Bebas Neue', sans-serif;
  --fc: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background:
    linear-gradient(180deg, rgba(5,13,26,.85) 0%, rgba(5,13,26,.92) 100%),
    url('images/site-bg.webp') center top / cover no-repeat,
    var(--navy);
  background-attachment: fixed, fixed, fixed;
  color: var(--white);
  font-family: var(--fb);
  overflow-x: hidden;
}
/* Mobile/tablet: drop fixed bg attachment — huge perf cost (repaints on every scroll) */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  body { background-attachment: scroll; }
}

/* iOS-specific: NEVER use background-attachment:fixed (causes repaint storm + lag)
   This catches iPad in landscape mode that may exceed 1024px width. */
@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll !important; }
}

/* ══ NAV ══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: linear-gradient(to bottom, rgba(5,13,26,.92) 0%, transparent 100%);
  transition: background .4s, backdrop-filter .4s;
}
#nav.sc {
  background: rgba(6, 5, 4, 0.32);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,200,240,.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--fc); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75); text-decoration: none;
  position: relative; transition: color .3s;
  cursor: pointer;
}
.nav-link:hover { color: var(--cyan); }
/* dropdown */
.nav-dropdown { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: rgba(5,13,26,.97); border: 1px solid rgba(0,200,240,.15);
  backdrop-filter: blur(12px); min-width: 160px;
  padding: 8px 0; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: opacity .25s, transform .25s;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown-item {
  display: block; font-family: var(--fc); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6); text-decoration: none;
  padding: 9px 18px; transition: color .2s, background .2s;
}
.nav-dropdown-item:hover { color: var(--cyan); background: rgba(0,200,240,.06); }
.nav-dropdown-item.active { color: var(--cyan); }

/* ── HAMBURGER BUTTON (hidden on desktop, shown on mobile) ── */
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 510;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU DRAWER ── */
.m-menu {
  position: fixed;
  inset: 0;
  z-index: 480;
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility 0s linear .45s;
  overflow-y: auto;
}
.m-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .45s ease, visibility 0s linear 0s;
}
.m-menu-inner {
  padding: 88px 28px 32px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.m-menu-section {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease .15s, transform .5s ease .15s;
}
.m-menu.open .m-menu-section { opacity: 1; transform: translateY(0); }
.m-menu.open .m-menu-section:nth-child(2) { transition-delay: .22s; }
.m-menu.open .m-menu-section:nth-child(3) { transition-delay: .3s; }
.m-menu-label {
  font-family: var(--fc);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(67, 199, 240, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
}
.m-menu-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--cyan);
}
.m-menu-link {
  font-family: var(--fc);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color .25s ease, padding-left .25s ease;
  position: relative;
}
.m-menu-link::after {
  content: '›';
  margin-left: auto;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  transition: color .25s ease, transform .25s ease;
}
.m-menu-link:hover, .m-menu-link.active {
  color: var(--cyan);
}
.m-menu-link:hover::after, .m-menu-link.active::after {
  color: var(--cyan);
  transform: translateX(4px);
}
.m-menu-link.active::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex-shrink: 0;
}
.m-menu-link.big {
  font-family: var(--fd);
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.m-menu-link.big::after {
  font-size: 26px;
}
.m-menu-link.big:hover { color: var(--cyan); }
.m-menu-link.big:last-child { border-bottom: none; }

/* Section 2 (FAQ + Contact) - direct list, no label */
.m-menu-section:nth-child(2) {
  margin-top: 4px;
}

.m-menu-socials {
  flex-direction: row;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(67, 199, 240, 0.12);
}
.m-menu-social {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.2px solid rgba(67, 199, 240, .6);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
  text-decoration: none;
}
.m-menu-social:hover {
  background: rgba(67, 199, 240, .18);
  border-color: var(--cyan);
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(67, 199, 240, .4);
}
.m-menu-social svg {
  width: 16px; height: 16px;
  fill: var(--cyan);
}
body.m-menu-locked { overflow: hidden; }

/* ══════════════════════════════════════════
   MOBILE PERFORMANCE: disable expensive effects
   backdrop-filter blur + saturate is GPU-intensive on mobile and
   causes scrolling jank. Replace with solid translucent bg.
══════════════════════════════════════════ */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  #nav.sc,
  .nav-dropdown-menu,
  .m-menu,
  #szm-sound {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  #nav.sc { background: rgba(5, 13, 26, 0.85); }
  .m-menu { background: rgba(5, 13, 26, 0.98); }
}

/* ══ HERO ══ */
#hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 55% 45%;
  overflow: hidden;
  align-items: center;
  background: var(--navy);
}
/* Banner image — fade in on load */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to right,
      rgba(5,13,26,.92) 0%,
      rgba(5,13,26,.65) 35%,
      rgba(5,13,26,.15) 70%,
      rgba(5,13,26,0) 100%),
    url('images/banner-bg.webp') center center / cover no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
}
#hero.hero-anim-in .hero-bg {
  opacity: 1;
}
/* dramatic cyan glow on top of background */
#hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 70% at 75% 55%, rgba(0,150,220,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 50%, rgba(0,80,160,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left {
  position: relative; z-index: 2;
  padding: 130px 4vw 80px 5vw;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .hero-left { padding: 120px 3vw 70px 4vw; }
  .hero-title { font-size: clamp(36px, 4.6vw, 60px); }
  .hero-body  { font-size: 14px; max-width: 460px; }
}
@media (max-width: 960px) {
  .hero-left { padding: 110px 24px 60px 28px; }
  .hero-title { font-size: clamp(34px, 6.4vw, 52px); }
  .hero-tagline,
  .hero-eyebrow { font-size: 12px; }
}
.hero-tagline {
  font-family: var(--fc); font-style: italic; font-weight: 300;
  font-size: 13px; letter-spacing: .1em;
  color: rgba(255,255,255,.5); margin-bottom: 24px;
}
.hero-eyebrow {
  font-family: var(--fc); font-weight: 700; font-size: 14px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .94; letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero-title .quote { color: var(--cyan); }
.hero-title .acc { color: var(--cyan); }
.hero-title .sub { font-size: .65em; display: block; color: rgba(255,255,255,.85); margin-top: 4px; }
.hero-body {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,.6); max-width: 540px; margin-bottom: 14px;
}
.hero-body strong { color: rgba(255,255,255,.8); }
.btn-cyan {
  display: inline-block; margin-top: 24px; align-self: flex-start;
  font-family: var(--fc); font-weight: 700; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  padding: 13px 30px; background: var(--cyan);
  border-radius: 5px;
  position: relative; overflow: hidden; transition: box-shadow .3s;
  border: none; cursor: pointer;
}
.btn-cyan:hover { box-shadow: 0 0 30px rgba(0,200,240,.5); }
.btn-cyan::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15); transform: translateX(-101%); transition: transform .3s;
}
.btn-cyan:hover::before { transform: translateX(0); }

.hero-right {
  position: relative;
}

/* ══ TICKER ══ */
.ticker {
  overflow: hidden; padding: 12px 0;
  background: #43C7F0;
  position: relative;
}
.tk-track {
  display: flex;
  width: max-content;
  animation: tkL 40s linear infinite;
  will-change: transform;
}
.tk-track.rev { animation: tkR 32s linear infinite; }
.tk-item {
  font-family: var(--fc); font-weight: 700; font-size: 12px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--navy); white-space: nowrap;
  display: flex; align-items: center; gap: 22px; padding: 0 22px;
}
.tk-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(5,13,26,.5); flex-shrink: 0; }
@keyframes tkL {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tkR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ══ SECTION UTILITIES ══ */
.sec-label {
  font-family: var(--fc); font-size: 10px; font-weight: 600;
  letter-spacing: .36em; text-transform: uppercase; color: var(--cyan);
  display: flex; align-items: center; gap: 12px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 25px;
  height: 1px;
  background: var(--cyan);
}
/* When the label is centered, add a matching line on the right side */
.sec-label[style*="center"]::after {
  content: '';
  display: block;
  width: 25px;
  height: 1px;
  background: var(--cyan);
}
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s cubic-bezier(.25,.46,.45,.94), transform .85s cubic-bezier(.25,.46,.45,.94);
}
.reveal.vis { opacity: 1; transform: none; }
.reveal-l { transform: translateX(-60px); }
.reveal-l.vis { transform: translateX(0); }
.reveal-r { transform: translateX(60px); }
.reveal-r.vis { transform: translateX(0); }
.reveal-zoom { transform: scale(.92); }
.reveal-zoom.vis { transform: scale(1); }
.d1{transition-delay:.12s} .d2{transition-delay:.24s}
.d3{transition-delay:.36s} .d4{transition-delay:.48s}

/* Hero text slide in from left */
.hero-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease .35s, transform 1s cubic-bezier(.25,.46,.45,.94) .35s;
}
#hero.hero-anim-in .hero-left {
  opacity: 1;
  transform: translateX(0);
}
/* Fallback: if JS doesn't fire within 2s, show text anyway */
@keyframes heroLeftFallback {
  to { opacity: 1; transform: translateX(0); }
}
.hero-left {
  animation: heroLeftFallback 1s 2s forwards;
}

/* ══ MEET THE DRIVERS ══ */
.drivers-sec { background: transparent; padding: 90px 0 30px; }
.drivers-header {
  text-align: center; padding: 0 40px 60px;
}
.drivers-header h2 {
  font-family: var(--fd); font-size: clamp(48px,6vw,90px);
  letter-spacing: .04em;
}
.drivers-header h2 span { color: var(--cyan); }
.drivers-intro {
  font-family: var(--fb);
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hover overlay panel with name + description */
.driver-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 28px 36px 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.driver-card:hover .driver-overlay {
  opacity: 1;
  transform: translateY(0);
}
.driver-badge {
  font-family: var(--fc);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.driver-name {
  font-family: var(--fd);
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}
.driver-desc {
  font-family: var(--fb);
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 460px;
}
.drivers-grid { display: grid; grid-template-columns: 1fr 1fr; }
.driver-card {
  position: relative; overflow: hidden; cursor: pointer;
  height: auto;
  aspect-ratio: 4 / 5;   /* balanced — not too tall */
}
/* Dark gradient at bottom for text readability — only appears on hover */
.driver-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    rgba(5,13,26,.95) 0%,
    rgba(5,13,26,.6) 30%,
    rgba(5,13,26,.1) 60%,
    transparent 100%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.driver-card:hover::before { opacity: 1; }
/* CYAN GLOW — only appears on hover */
.driver-card::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 90% 70% at 50% 80%,
    rgba(0,200,240,.32) 0%,
    rgba(0,150,220,.12) 40%,
    transparent 75%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.driver-card:hover::after { opacity: 1; }
.driver-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #08192e 0%, #0a2545 50%, #061525 100%);
  overflow: hidden;
}
.driver-img {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.driver-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .6s;
}
.driver-card:hover .driver-img img { transform: scale(1.04); }

/* blue line glow strip on sides */
.driver-card::after {
  content: ''; position: absolute; top: 10%; bottom: 10%;
  width: 2px; z-index: 2;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  opacity: .5; transition: opacity .4s;
}
.driver-card:first-child::after { right: 0; }
.driver-card:last-child::after  { left: 0; }
.driver-card:hover::after { opacity: 1; }

.driver-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 0 40px 40px;
}
.driver-num {
  font-family: var(--fd); font-size: 72px; line-height: .85;
  color: var(--cyan); opacity: .25;
  position: absolute; bottom: 36px; right: 32px;
  z-index: 3;
  transition: opacity .4s;
}
.driver-card:hover .driver-num { opacity: .5; }
.driver-name {
  font-family: var(--fd); font-size: clamp(32px,3.5vw,52px);
  letter-spacing: .04em; line-height: .95; margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.driver-country {
  font-family: var(--fc); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 6px;
}
/* placeholder driver portrait */
.driver-portrait-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(160deg, #081a35 0%, #0c2a55 40%, #041020 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 18px; color: var(--cyan);
  letter-spacing: .1em; text-align: center;
}

/* ══════════════════════════════════════════
   SCROLL-ZOOM MOSAIC
   The whole section is PINNED by GSAP during zoom.
   Page scroll = PAUSED while video zooms.
   After zoom complete = pin releases, next content shows.
══════════════════════════════════════════ */
#szm-outer {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}

/* The 7-cell mosaic grid */
#szm-bg {
  position: absolute; inset: 0; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.szm-cell {
  overflow: hidden;
  position: relative;
  background: transparent;
  border-radius: 30px;
}
/* Mosaic slide-in animation: cells start off-screen, slide in when section approaches */
.szm-slide-l {
  transform: translateX(-80px);
  opacity: 0;
  transition: transform 1s cubic-bezier(.25,.46,.45,.94),
              opacity 1s cubic-bezier(.25,.46,.45,.94);
}
.szm-slide-r {
  transform: translateX(80px);
  opacity: 0;
  transition: transform 1s cubic-bezier(.25,.46,.45,.94),
              opacity 1s cubic-bezier(.25,.46,.45,.94);
}
.szm-slide-l.vis,
.szm-slide-r.vis {
  transform: translateX(0);
  opacity: 1;
}
/* Stagger delays for cascading effect */
.szm-tl.szm-slide-l, .szm-tr.szm-slide-r { transition-delay: 0s; }
.szm-ml.szm-slide-l, .szm-mr.szm-slide-r { transition-delay: 0.15s; }
.szm-bl.szm-slide-l, .szm-br.szm-slide-r { transition-delay: 0.3s; }
.szm-cell picture {
  display: block;
  width: 100%;
  height: 100%;
}
.szm-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(100%) brightness(.5) contrast(1.05);
  will-change: opacity;
  transform: translateZ(0);
}
/* iOS-specific: simplify filter chain (WebKit bug causes repaint storm with chained filters) */
@supports (-webkit-touch-callout: none) {
  .szm-cell img {
    filter: grayscale(100%) brightness(.5);
  }
}

/* Top row: 2 cells, each spans 2 cols */
.szm-tl { grid-column: 1 / 3; grid-row: 1; }
.szm-tr { grid-column: 3 / 5; grid-row: 1; }

/* Middle row: narrow | EMPTY CENTER | narrow */
.szm-ml { grid-column: 1;     grid-row: 2; }
.szm-mc { grid-column: 2 / 4; grid-row: 2; background: transparent; }
.szm-mr { grid-column: 4;     grid-row: 2; }

/* Bottom row: 2 cells, each spans 2 cols */
.szm-bl { grid-column: 1 / 3; grid-row: 3; }
.szm-br { grid-column: 3 / 5; grid-row: 3; }

/* Video card wrapper centers it via flex */
#szm-vw-wrap {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
#szm-vw {
  /* Slightly smaller than middle-center cell so gaps show between video and adjacent images */
  width: calc(50% - 16px);
  height: calc(33.33% - 16px);
  background: transparent;
  border-radius: 30px;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, border-radius;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  /* Force GPU compositor layer — backface-visibility hidden does this WITHOUT
     conflicting with GSAP's inline transform writes */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
/* Mobile: lighter shadow */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  #szm-vw {
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
  }
}
#szm-vw video,
#szm-vw iframe {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border: none;
}

/* Overlay text */
#szm-overlay {
  position: absolute;
  left: 6%; top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  opacity: 0; pointer-events: none;
  will-change: opacity;
}
.szm-ov-sm {
  font-family: var(--fc); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 3vw, 44px);
  color: rgba(255,255,255,.9);
  letter-spacing: .04em; display: block; line-height: 1.1;
}
.szm-ov-lg {
  font-family: var(--fd);
  font-size: clamp(46px, 7vw, 116px);
  color: var(--cyan); letter-spacing: .03em;
  display: block; line-height: .88;
  text-shadow: 0 0 50px rgba(0,200,240,.5);
}

/* ── Sound toggle button ──
   Fixed position bottom-right.
   Appears ONLY when video is fully zoomed (progress > 0.9).
   Click toggles video mute. */
#szm-sound {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(6, 5, 4, 0.5);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(0, 200, 240, 0.35);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1),
              background .25s, border-color .25s, box-shadow .25s;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
#szm-sound.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
#szm-sound:hover {
  background: rgba(0, 200, 240, 0.18);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 200, 240, 0.4);
}
#szm-sound svg {
  width: 22px; height: 22px;
  fill: var(--cyan);
  transition: fill .25s;
}
#szm-sound:hover svg { fill: var(--white); }
/* Show muted icon by default, show unmuted icon when .on */
#szm-sound .ic-on  { display: none; }
#szm-sound .ic-off { display: block; }
#szm-sound.on .ic-on  { display: block; }
#szm-sound.on .ic-off { display: none; }

/* Scroll hint */
#szm-hint {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: hintBob 2s ease-in-out infinite;
  will-change: opacity;
}
#szm-hint span {
  font-family: var(--fc); font-size: 9px; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.hint-arr {
  width: 16px; height: 16px;
  border-right: 1.5px solid var(--cyan);
  border-bottom: 1.5px solid var(--cyan);
  transform: rotate(45deg);
}
@keyframes hintBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ══ COMING IN HOT ══ */
.hot-sec {
  background: transparent; padding: 100px 64px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.hot-title {
  font-family: var(--fd); font-size: clamp(52px,6.5vw,104px);
  line-height: .88; margin: 14px 0 24px; letter-spacing: .02em;
}
.hot-title span { color: var(--cyan); display: block; }
.body-text {
  font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.55);
  margin-bottom: 16px; max-width: 560px;
}
.hot-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: transparent;
}
.hot-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 12px;
}

/* ══ SEASON LAUNCH ══ */
.launch-sec {
  background: transparent; padding: 100px 64px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}
.launch-img {
  position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3;
  background: transparent;
}
.launch-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.launch-title {
  font-family: var(--fd); font-size: clamp(46px,6vw,92px);
  line-height: .9; margin: 14px 0 22px;
}
.launch-title span { color: var(--cyan); display: block; }

/* ══ VIP APPEARANCE — COVERFLOW CAROUSEL ══
   Cards are absolutely positioned and overlap each other.
   Active card sits ON TOP (highest z-index), full color.
   Adjacent cards behind, offset to sides, grayscale.
══════════════════════════════════════════ */
.vip-sec { background: transparent; padding: 50px 0 0; overflow: hidden; }
.vip-header { text-align: center; margin-bottom: 28px; }
.vip-header h2 {
  font-family: var(--fd); font-size: clamp(42px,5vw,72px);
  letter-spacing: .06em;
}
.vip-subtitle {
  font-family: var(--fb);
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 12px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.carousel-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
.carousel {
  position: relative;
  height: 560px;
  width: 100%;
  /* No more scroll — pure transform-based positioning */
}
.c-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 480px;
  height: 560px;
  margin-left: -240px;
  overflow: visible;
  cursor: pointer;
  background: transparent;
  transition:
    transform .7s cubic-bezier(.25,.46,.45,.94),
    opacity .7s cubic-bezier(.25,.46,.45,.94),
    filter .7s;
}
.c-card.on {
  z-index: 20;
}
.c-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter .7s ease;
}
.c-card:not(.on) img {
  filter: grayscale(100%) brightness(.55) contrast(1.05);
}
.c-card.on img {
  filter: grayscale(0%) brightness(1);
}
/* Hide all card labels (no text overlay) */
.c-card-label, .c-card-placeholder { display: none !important; }

/* Arrows — use arrow-icon.webp image */
.car-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 30; width: 50px; height: 50px;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .3s, filter .3s;
  padding: 0;
}
.car-arr img {
  width: 100%; height: 100%;
  display: block;
  transition: filter .3s;
}
.car-arr:hover {
  transform: translateY(-50%) scale(1.12);
  filter: drop-shadow(0 0 14px rgba(0,200,240,.7));
}
.car-prev { left: 10px; }
.car-next { right: 10px; }
/* Left arrow: rotate the right-pointing icon 180° */
.car-prev img { transform: rotate(180deg); }

/* Progress bar — single continuous bar with cyan fill */
.car-progress {
  position: relative;
  width: 260px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  margin: 12px auto 0;
  overflow: hidden;
}
.car-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
  width: 12.5%;     /* initial: 1/8 */
  transition: width .55s cubic-bezier(.25,.46,.45,.94);
  box-shadow: 0 0 12px rgba(0,200,240,.6);
}

/* ══ FAQ ══ */
.faq-sec {
  background: transparent;
  padding: 60px 24px 60px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-title {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: .04em;
  text-align: center;
  margin-bottom: 36px;
  color: var(--white);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(67,199,240,.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s;
  contain: layout style;   /* isolate layout — prevents parent reflow */
}
.faq-item.open {
  border-color: rgba(67,199,240,.4);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--fc);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--white);
  transition: color .3s;
}
.faq-q:hover { color: var(--cyan); }
.faq-icon {
  font-family: var(--fc);
  font-size: 22px;
  font-weight: 300;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform .35s ease, background .25s ease, color .25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  will-change: max-height;
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.faq-a p {
  font-family: var(--fb);
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  padding: 0 22px 18px;
  max-width: 720px;
}

/* ══ FOOTER PRE-BLOCK (logo + tagline sit ABOVE the cyan footer) ══ */
.footer-pre {
  text-align: center;
  padding: 40px 40px 24px;
  background: transparent;
}
.footer-supported {
  font-family: var(--fc);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}
.footer-logo-img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ══ FOOTER ══ */
.footer {
  background: var(--navy2);
  border-top: 1px solid rgba(67, 199, 240, .35);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 60px 40px 28px;
  text-align: center;
  position: relative;
  contain: layout style;
  box-shadow:
    0 -2px 30px rgba(67, 199, 240, 0.36),
    0 -12px 60px rgba(67, 199, 240, 0.18),
    0 -24px 100px rgba(67, 199, 240, 0.1);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(67, 199, 240, .8) 50%,
    transparent 100%);
  border-radius: 1px;
  filter: blur(0.5px);
}

/* Headline: BEGIN WITH A WIN */
.footer-headline {
  font-family: var(--fd);
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: .04em;
  margin-bottom: 14px;
  color: var(--white);
  line-height: 1;
}
.footer-headline span { color: var(--cyan); }

/* Tagline below headline */
.footer-tagline-text {
  font-family: var(--fb);
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}

/* Stacked buttons */
.footer-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto 40px;
  max-width: 360px;
}
.footer-btns > a {
  width: 100%;
  text-align: center;
}

/* Thin divider line above socials */
.footer-divider {
  width: 100%;
  max-width: 100%;
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 0 auto 28px;
}

/* Social row */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
}
.footer-social {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.2px solid rgba(67, 199, 240, .65);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s;
  text-decoration: none;
}
.footer-social:hover {
  background: rgba(67, 199, 240, .15);
  border-color: var(--cyan);
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(67, 199, 240, .4);
}
.footer-social svg {
  width: 14px; height: 14px;
  fill: var(--cyan);
  transition: fill .3s;
}
.footer-social:hover svg { fill: var(--white); }

/* Bottom copyright text */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--fc);
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  padding-top: 10px;
}
.footer-bottom a {
  color: var(--cyan);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--white); }
.btn-cyan-solid {
  display: inline-block; font-family: var(--fc); font-weight: 700;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  padding: 13px 32px; background: var(--cyan);
  border-radius: 10px;
  transition: box-shadow .3s;
}
.btn-cyan-solid:hover { box-shadow: 0 0 24px rgba(0,200,240,.5); }
.btn-outline-cyan {
  display: inline-block; font-family: var(--fc); font-weight: 600;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); text-decoration: none;
  padding: 12px 30px; border: 1px solid rgba(0,200,240,.4);
  border-radius: 10px;
  position: relative; overflow: hidden; transition: border-color .3s;
}
.btn-outline-cyan::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,200,240,.08); transform: translateX(-101%); transition: transform .3s;
}
.btn-outline-cyan:hover::before { transform: translateX(0); }
.btn-outline-cyan:hover { border-color: var(--cyan); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  #nav { padding: 14px 18px; }
  .nav-logo-img { height: 28px; }
  .nav-links { gap: 18px; }
  .nav-link { font-size: 11px; letter-spacing: .12em; }

  /* Hero: stack vertically, image becomes top banner */
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: 38vh auto;
    min-height: 0;
    height: auto;
  }
  .hero-right { display: none; }
  .hero-bg {
    grid-row: 1;
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    /* On mobile show the bottom of the banner (where the car is) */
    background:
      linear-gradient(to bottom,
        transparent 0%,
        rgba(5,13,26,.4) 70%,
        var(--navy) 100%),
      url('images/banner-bg.webp') center center / cover no-repeat;
    transform: none;
    opacity: 0;
    transition: opacity 1.4s ease;
  }
  #hero.hero-anim-in .hero-bg {
    transform: none;
    opacity: 1;
  }
  .hero-left {
    grid-row: 2;
    padding: 32px 24px 60px;
    transform: translateY(40px) !important;
  }
  #hero.hero-anim-in .hero-left {
    transform: translateY(0) !important;
  }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }
  .hero-body  { font-size: 14.5px; max-width: 100%; }

  /* Ticker — smaller on mobile */
  .ticker { padding: 7px 0; }
  .tk-item { font-size: 10px; letter-spacing: .2em; gap: 14px; padding: 0 14px; }
  .tk-dot { width: 3px; height: 3px; }

  /* Sections — stack to single column */
  .drivers-grid { grid-template-columns: 1fr; gap: 12px; }
  .driver-card  { aspect-ratio: 4/5; }
  .drivers-header { padding: 0 20px 18px; }
  .drivers-sec { padding: 30px 0 12px; }
  /* Mobile: driver text always visible (no hover) */
  .driver-card::before { opacity: 1 !important; }
  .driver-overlay { opacity: 1 !important; transform: translateY(0) !important; }

  .hot-sec, .launch-sec {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 22px;
  }
  /* On mobile, Season Launch text appears BEFORE image */
  .launch-sec > .launch-img { order: 2; }
  .launch-sec > div:not(.launch-img) { order: 1; }
  .hot-title  { font-size: clamp(40px, 9vw, 64px); }
  .launch-title { font-size: clamp(36px, 8.5vw, 58px); }

  /* ══════════════════════════════════════════
     MOBILE MOSAIC — God55 layout
     
     ┌─────────────┬─────────────┐  ← Row 1: 2 wide images (22% height)
     │   img-1     │   img-2     │
     ├──────┬──────┴──────┬──────┤
     │      │             │      │  ← Row 2: img-3 | VIDEO | img-4 (340px height)
     │ img-3│   VIDEO     │ img-4│     Side images narrow, video wider
     │      │             │      │
     ├──────┴──────┬──────┴──────┤
     │   img-5     │   img-6     │  ← Row 3: 2 wide images (22% height)
     └─────────────┴─────────────┘
  ══════════════════════════════════════════ */
  #szm-bg { 
    gap: 8px; 
    padding: 8px;
    grid-template-columns: 1.3fr 1.2fr 1.2fr 1.3fr;   /* wider sides, narrower center for video */
    grid-template-rows: 1fr 340px 1fr;                /* short | tall middle | short */
  }
  .szm-cell { border-radius: 14px; }
  
  /* Top row: 2 cells, each takes 2 cols (split section in half) */
  .szm-tl { grid-column: 1 / 3; grid-row: 1; }
  .szm-tr { grid-column: 3 / 5; grid-row: 1; }
  
  /* Middle row: wider left side image | empty center (2 cols for video) | wider right side image */
  .szm-ml { grid-column: 1;     grid-row: 2; }   /* img-3: wider left */
  .szm-mc { grid-column: 2 / 4; grid-row: 2; }   /* empty center where video sits */
  .szm-mr { grid-column: 4;     grid-row: 2; }   /* img-4: wider right */
  
  /* Bottom row: 2 cells, each takes 2 cols */
  .szm-bl { grid-column: 1 / 3; grid-row: 3; }
  .szm-br { grid-column: 3 / 5; grid-row: 3; }
  
  /* Video card sits OVER the middle 2 columns, matching 340px height of side images.
     With cols 1.3:1.2:1.2:1.3 (total 5.0fr): middle 2 cols = 2.4/5.0 = 48%. */
  #szm-vw { 
    width: calc(48% - 12px); 
    height: 340px;
  }

  /* Carousel — compact mobile, no extra spacing anywhere */
  .vip-sec { padding: 0; }
  .vip-header { margin-bottom: 0; padding-bottom: 0; }
  .vip-header h2 { font-size: clamp(32px, 7vw, 44px); margin: 0; }
  .vip-subtitle { 
    margin-top: 4px; 
    margin-bottom: 0; 
    font-size: 12.5px;
    padding: 0 24px;
  }
  .carousel { height: 320px; margin-top: 0; }
  .c-card { width: 250px; height: 320px; margin-left: -125px; }
  .c-card img { object-fit: cover; }
  .carousel-wrap { padding: 0 10px; margin-top: 4px; }
  .car-arr { width: 44px; height: 44px; }
  .car-arr img { width: 100%; height: 100%; object-fit: contain; }
  .car-prev { left: 6px; }
  .car-next { right: 6px; }
  /* Progress bar — more breathing room from cards */
  .car-progress { margin: 16px auto 0; }

  /* Footer adjustments */
  .footer {
    padding: 50px 22px 28px;
    /* Softer, more diffused multi-layer glow (similar to desktop but tuned for mobile).
       Three layers create a natural gradient falloff instead of a hard line. */
    box-shadow:
      0 -1px 12px rgba(67, 199, 240, 0.28),
      0 -8px 36px rgba(67, 199, 240, 0.14),
      0 -20px 70px rgba(67, 199, 240, 0.07);
  }
  .footer-pre { padding: 56px 36px 22px; }
  .footer-logo-img { max-width: 200px; }
  .footer-headline { font-size: clamp(28px, 8vw, 44px); }
  .footer-btns { gap: 10px; }

  /* Hide drivers intro on smaller screens to save space */
  .drivers-intro { font-size: 13px; }
  .vip-subtitle { font-size: 13px; padding: 0 22px; }

  /* FAQ — mobile-native styling */
  .faq-sec { padding: 24px 16px 32px; }
  .faq-title {
    font-size: clamp(24px, 6.5vw, 30px);
    margin-bottom: 16px;
    text-align: left;
    padding-left: 4px;
    letter-spacing: .02em;
  }
  .faq-list { gap: 8px; }
  .faq-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(67,199,240,.12);
    border-radius: 10px;
  }
  .faq-item.open {
    background: rgba(67,199,240,.06);
    border-color: rgba(67,199,240,.32);
  }
  .faq-q {
    padding: 16px 16px;
    font-size: 13px;
    letter-spacing: .02em;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
  }
  .faq-q span:first-child { padding-right: 8px; }
  .faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(67,199,240,.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
  }
  .faq-item.open .faq-icon {
    background: var(--cyan);
    color: var(--navy);
  }
  .faq-a p { padding: 0 16px 16px; font-size: 13px; line-height: 1.7; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 560px)
══════════════════════════════════════════ */
@media (max-width: 560px) {
  /* Nav: hide desktop menu (hamburger hidden too for now) */
  .nav-links { display: none; }
  .nav-toggle { display: none; }
  #nav { padding: 12px 16px; }

  /* Hero — banner image with overlay text style matching mobile design */
  #hero {
    grid-template-rows: 44vh auto;
  }
  .hero-bg {
    background:
      linear-gradient(to bottom,
        rgba(5,13,26,.3) 0%,
        rgba(5,13,26,.55) 60%,
        var(--navy) 100%),
      url('images/banner-bg.webp') center center / cover no-repeat;
  }
  .hero-left { padding: 28px 20px 48px; }
  .hero-tagline { font-size: 11px; margin-bottom: 16px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-title { font-size: clamp(30px, 8.5vw, 44px); margin-bottom: 18px; }
  .hero-body { font-size: 13.5px; line-height: 1.7; }
  .btn-cyan { padding: 12px 24px; font-size: 11px; }

  /* Mosaic — small mobile, same God55 layout, tighter spacing */
  #szm-bg { 
    grid-template-columns: 1.3fr 1.2fr 1.2fr 1.3fr;
    grid-template-rows: 1fr 340px 1fr;
    gap: 6px; 
    padding: 6px;
  }
  #szm-vw { width: calc(48% - 9px); height: 340px; }
  .szm-cell { border-radius: 10px; }

  /* Drivers — full-width cards */
  .driver-card { aspect-ratio: 3/4; }
  .driver-overlay { padding: 20px 22px 24px; }
  .driver-name { font-size: clamp(22px, 7vw, 32px); }
  .driver-desc { font-size: 12.5px; }

  /* Hot + Launch sections */
  .hot-sec, .launch-sec { padding: 28px 18px; gap: 18px; }
  .hot-title  { font-size: clamp(32px, 9.5vw, 48px); }
  .launch-title { font-size: clamp(30px, 9vw, 44px); }
  .body-text { font-size: 13.5px; max-width: 100%; }

  /* Carousel — compact on small phones */
  .carousel { height: 280px; }
  .c-card { width: 210px; height: 280px; margin-left: -105px; }
  .c-card img { object-fit: cover; }
  .carousel-wrap { padding: 0 6px; margin-top: 4px; }
  .car-progress { margin: 14px auto 0; }
  .vip-header h2 { font-size: clamp(28px, 7.5vw, 36px); }
  .vip-subtitle { font-size: 12px; padding: 0 20px; }
  .car-progress { margin-top: 20px; }

  /* Footer */
  .footer-pre { padding: 24px 20px 12px; }
  .footer-logo-img { max-width: 180px; }
  .footer-supported { font-size: 10px; letter-spacing: .22em; }
  .footer-headline { font-size: clamp(26px, 7.5vw, 38px); }
  .footer-tagline-text { font-size: 13px; }
  .footer-btns > a { font-size: 12px; padding: 14px 22px; letter-spacing: .14em; }
  .footer-bottom { font-size: 9px; padding: 12px 8px 0; }
  .footer-bottom span { line-height: 1.6; }

  /* Section labels and intros */
  .sec-label { font-size: 9px; letter-spacing: .28em; }
  .drivers-header h2 { font-size: clamp(34px, 8.5vw, 52px); }
}