/* ─── HERO ──────────────────────────────────────────────── */

/* Outer scroll container — tall so the sticky hero animates on scroll */
.hero-outer {
  height: 300vh;
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Canvas sits above the static image, below the overlay */
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
}

/* Hide static image on desktop once the video is available */
@media (min-width: 769px) {
  #hero-media-static {
    display: none;
  }
}

/* On mobile: no scroll scrubbing — static poster hero, normal height */
@media (max-width: 768px) {
  .hero-outer { height: auto; }
  .hero        { position: relative; }
  #hero-video  { display: none; }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* The iconic split: black top half, image bottom */
.hero-split {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: var(--black);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(5rem, 14vw, 16rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-title span { color: var(--gold); }

.hero-title-img {
  width: clamp(280px, 55vw, 800px);
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  max-width: 400px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── Hero app-store badges: MOBILE ONLY — on desktop the badges live in
      the footer instead (see .footer-store-badges in main.css). ── */
.hero-store-badges {
  display: none; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero-store-badges { display: flex; }
}

/* Scroll-animated copy: two slides share one bottom-anchored area so the
   buttons below never move while the text slides up / crossfades. */
.hero-copy {
  position: relative;
  width: 100%;
  max-width: 920px;
  height: clamp(240px, 32vh, 320px);
  margin-bottom: 40px;
}
.hero-slide {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-slide .hero-title-img { margin-bottom: 16px; }
.hero-slide .hero-subtitle  { margin-bottom: 0; }
#hero-slide-2 { opacity: 0; }
.hero-slide-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  margin: 0 0 18px;
}
.hero-slide-title span { color: var(--gold); }

.hero-meta {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
}
.hero-meta-line {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── SECTION: MOVE DIFFERENTLY ─────────────────────────── */
.move-section {
  background: var(--black);
  overflow: hidden;
}
.move-header {
  padding: 100px 40px 60px;
  text-align: center;
}
.move-title { font-size: clamp(3rem, 7vw, 8rem); }
.move-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.move-photo {
  width: 100%;
  height: 65vh;
  overflow: hidden;
}
.move-photo img,
.move-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.move-photo:hover img,
.move-photo:hover video { transform: scale(1.02); }

.move-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.move-stat {
  padding: 60px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.move-stat:last-child { border-right: none; }
.move-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 100;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.move-stat-label { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }

/* ─── SECTION: EVERY DETAIL ─────────────────────────────── */
/* ─── SECTION: EVERY DETAIL — SCROLL ANIMATION ──────────── */

/* Outer tall container for sticky scroll */
.detail-outer {
  height: 360vh;
  position: relative;
}

.detail-section {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--black-2);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.detail-inner {
  width: 100%;
  padding: calc(var(--nav-height) + 24px) 0 32px;
}

/* Header */
.detail-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 40px;
}
.detail-heading {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1;
  margin: 12px 0 0;
}
.detail-sub {
  color: var(--gray-light);
  margin-top: 10px;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

/* ── Stage block: full-width wrapper for timeline + cards ── */
.detail-stage-block {
  width: 100%;
  position: relative;
}

/* ── Timeline row ─────────────────────────────────────────── */
.detail-timeline-row {
  position: relative;
  padding: 12px 0 20px;
}

/* Horizontal track — spans between first and last dot centers */
.detail-timeline-bar {
  position: absolute;
  top: 16px; /* 12px padding-top + 4px (half of 8px dot-core) */
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(201,169,110,0.18);
}

/* Gold fill — width driven by scroll progress */
.detail-tl-fill {
  position: absolute;
  left: 0; top: 0;
  height: 1px;
  width: 0%;
  background: var(--gold);
  box-shadow: 0 0 12px 2px rgba(201,169,110,0.7), 0 0 40px rgba(201,169,110,0.3);
  transition: width 0.08s linear;
}

/* Dots row — space-around keeps centers at 12.5/37.5/62.5/87.5%,
   matching a repeat(4, 1fr) grid's column centers exactly */
.detail-tl-dots {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

.detail-tl-dot {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
}

.detail-tl-dot-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,169,110,0.25);
  border: 1px solid rgba(201,169,110,0.3);
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
  position: relative;
  z-index: 1;
}

.detail-tl-dot-pulse {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.35) 0%, transparent 70%);
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0;
}

.detail-tl-dot span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.35);
  white-space: nowrap;
  margin-top: 10px;
  transition: color 0.4s;
}

/* Active dot */
.detail-tl-dot.is-active .detail-tl-dot-core {
  background: var(--gold);
  border-color: var(--gold-light);
  transform: scale(1.5);
  box-shadow:
    0 0 0 4px rgba(201,169,110,0.15),
    0 0 16px rgba(201,169,110,0.9),
    0 0 40px rgba(201,169,110,0.5),
    0 0 80px rgba(201,169,110,0.2);
}
.detail-tl-dot.is-active .detail-tl-dot-pulse {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: dotPulse 1.8s ease-in-out infinite;
}
.detail-tl-dot.is-active span { color: var(--gold); }

/* Visited dot */
.detail-tl-dot.is-visited .detail-tl-dot-core {
  background: rgba(201,169,110,0.5);
  border-color: rgba(201,169,110,0.5);
}
.detail-tl-dot.is-visited span { color: rgba(201,169,110,0.6); }

@keyframes dotPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

/* ── Cards ──────────────────────────────────────────────── */
.detail-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.detail-card {
  background: var(--black-2);
  overflow: hidden;
  position: relative;
  opacity: 0.22;
  filter: grayscale(0.6) brightness(0.7);
  transition:
    opacity 0.7s cubic-bezier(0.4,0,0.2,1),
    filter  0.7s cubic-bezier(0.4,0,0.2,1),
    box-shadow 0.7s cubic-bezier(0.4,0,0.2,1),
    transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* Visited (already passed) */
.detail-card.is-visited {
  opacity: 0.5;
  filter: grayscale(0.2) brightness(0.85);
}

/* Active stage */
.detail-card.is-active {
  opacity: 1;
  filter: grayscale(0) brightness(1.05);
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.55),
    0 0 30px rgba(201,169,110,0.25),
    0 0 80px rgba(201,169,110,0.12),
    inset 0 0 40px rgba(201,169,110,0.04);
}

/* Image */
.detail-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.detail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.detail-card.is-active .detail-card-img img { transform: scale(1.04); }

/* Gold glow overlay on image (top fade) */
.detail-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.detail-card.is-active .detail-card-glow { opacity: 1; }

/* Light sweep on activation */
.detail-card-sweep {
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,240,200,0.14) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  z-index: 2;
}
.detail-card.is-active .detail-card-sweep {
  animation: cardSweep 0.85s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes cardSweep {
  from { transform: translateX(-120%); }
  to   { transform: translateX(280%); }
}

/* Card text body */
.detail-card-body {
  padding: 20px 24px 24px;
  position: relative;
  z-index: 3;
}
.detail-card-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(201,169,110,0.5);
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color 0.5s, text-shadow 0.5s;
}
.detail-card.is-active .detail-card-number {
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(201,169,110,0.9), 0 0 40px rgba(201,169,110,0.4);
}
.detail-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.5s, text-shadow 0.5s;
}
.detail-card.is-active .detail-card-title {
  color: var(--white);
  text-shadow: 0 0 30px rgba(201,169,110,0.3);
}
.detail-card.is-visited .detail-card-title { color: rgba(255,255,255,0.7); }

/* ── Mobile: static fallback ─────────────────────────────── */
@media (max-width: 768px) {
  .detail-outer { height: auto; }
  .detail-section {
    position: relative;
    height: auto;
    padding: 80px 0 60px;
  }
  .detail-inner { padding: 0; }
  .detail-card {
    opacity: 1;
    filter: none;
  }
  .detail-cards-row { grid-template-columns: 1fr 1fr; }
  .detail-timeline-bar { left: 6.25%; right: 6.25%; }
  .detail-tl-dot span { font-size: 0.45rem; }
}
@media (max-width: 480px) {
  .detail-cards-row { grid-template-columns: 1fr; }
  .detail-timeline-row { display: none; }
}

/* ─── SECTION: CHOOSE YOUR CLASS — SPOTLIGHT CAROUSEL ────── */
.classes-section {
  background: var(--black);
  padding-bottom: 100px;
  overflow: hidden;
}
.classes-header { text-align: center; margin-bottom: 64px; }
.classes-header h2 { font-size: clamp(2.5rem, 5vw, 5rem); }

.classes-header p {
  color: var(--gray-light);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ── Three classes, side by side ────────────────────────── */
.cls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.cls-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.012) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1),
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}
.cls-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,110,0.4);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}

/* Featured (First Class) — gold framed */
.cls-tile--featured {
  border-color: rgba(201,169,110,0.55);
  background: linear-gradient(180deg, rgba(201,169,110,0.08) 0%, rgba(255,255,255,0.012) 60%);
}
.cls-tile-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 2px;
}

/* Media */
.cls-tile-media {
  position: relative;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 120%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cls-tile-floor {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.4) 0%, transparent 70%);
  filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cls-tile:hover .cls-tile-floor { opacity: 1; }
.cls-tile--featured .cls-tile-floor { opacity: 0.7; }
.cls-tile-media[data-gallery] { cursor: pointer; }
.cls-tile-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  max-width: 92%;
  max-height: 96%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.cls-tile-img.is-active { opacity: 1; }
.cls-tile:hover .cls-tile-img.is-active { transform: translateX(-50%) scale(1.05); }

/* Gallery dots */
.cls-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.cls-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cls-dot:hover { background: rgba(255,255,255,0.6); }
.cls-dot.is-active { background: var(--gold); transform: scale(1.3); }

/* Body */
.cls-tile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cls-tile-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.cls-tile-name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  font-weight: 100;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 10px 0 0;
}
.cls-tile-desc {
  color: var(--gray-light);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  line-height: 1.65;
  margin: 14px 0 0;
  min-height: 4.2em;
}

/* Specs */
.cls-specs {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin: 24px 0 26px;
}
.cls-spec { text-align: center; }
.cls-spec-val {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.cls-spec-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 5px;
}
.cls-tile-btn {
  margin-top: auto;
  width: 100%;
}

/* ─── SECTION: WHY EXEC — EDITORIAL ──────────────────────── */
.why-section {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
  padding: 150px 0;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 55%, rgba(201,169,110,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 25%, rgba(201,169,110,0.035) 0%, transparent 50%);
  pointer-events: none;
}

/* Asymmetric two-column editorial grid */
.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.45fr;
  gap: 90px;
  align-items: start;
}

/* ── Left: sticky intro panel ───────────────────────────── */
.why-intro {
  position: sticky;
  top: 130px;
}
.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 100;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 20px 0 0;
}
.why-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,169,110,0.15));
  margin: 34px 0 30px;
}
.why-lead {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 380px;
  letter-spacing: 0.01em;
}
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.35s ease, opacity 0.35s ease;
}
.why-cta span { transition: transform 0.35s ease; }
.why-cta:hover { opacity: 0.85; }
.why-cta:hover span { transform: translateX(6px); }

/* ── Right: feature list ────────────────────────────────── */
.why-list {
  position: relative;
  z-index: 1;
}

/* Each feature item */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 38px 28px 38px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  cursor: default;
  /* Scroll-in start state */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-item.is-visible { opacity: 1; transform: translateY(0); }

/* Hover background sweep */
.why-item-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(201,169,110,0.06) 0%,
    rgba(201,169,110,0.02) 45%,
    rgba(201,169,110,0.0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.why-item:hover .why-item-glow { opacity: 1; }

/* Gold edge accent revealed on hover */
.why-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: var(--gold);
  transform: translateY(-50%);
  transition: height 0.4s ease;
}
.why-item:hover::after { height: 56%; }

/* Item number */
.why-item-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(201,169,110,0.45);
  flex-shrink: 0;
  width: 28px;
  padding-top: 0.55em;
  transition: color 0.35s;
}
.why-item:hover .why-item-num { color: var(--gold); }

/* Text block */
.why-item-body { flex: 1; }

/* Benefit description */
.why-item-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  max-width: 480px;
  transition: color 0.35s;
}
.why-item:hover .why-item-desc { color: rgba(255,255,255,0.7); }

/* Main EXEC feature — large serif */
.why-item-exec {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 100;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
  transition: text-shadow 0.35s ease;
}
.why-item:hover .why-item-exec {
  text-shadow:
    0 0 28px rgba(201,169,110,0.35),
    0 0 80px rgba(201,169,110,0.1);
}

/* "vs." annotation — Montserrat, small, muted */
.why-item-vs {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 18px;
  transition: color 0.35s;
}
.why-item:hover .why-item-vs { color: rgba(201,169,110,0.6); }

/* ── Why EXEC — responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .why-section { padding: 100px 0; }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .why-intro { position: static; top: auto; }
  .why-lead { max-width: 560px; }
}
@media (max-width: 600px) {
  .why-section { padding: 80px 0; }
  .why-item { gap: 22px; padding: 30px 16px 30px 0; }
  .why-item-num { width: 24px; }
}

/* ─── SECTION: PARTNERS ──────────────────────────────────── */
.partners-section {
  background: var(--black);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.partners-label {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.75);
  margin-bottom: 44px;
}
/* Marquee viewport: hides overflow, fades the two edges */
.partners-logos {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partners-scroll 30s linear infinite;
}
.partners-logos:hover .partners-track { animation-play-state: paused; }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* one full group — seamless */
}
.partner-logo {
  flex: 0 0 auto;
  margin: 0 50px;
  opacity: 0.85;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}
.partner-logo:hover { opacity: 1; }
.partner-logo img { height: 30px; display: block; }

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}

/* ─── SECTION: CTA BANNER ────────────────────────────────── */
.cta-banner {
  background: var(--black-2);
  padding: 140px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: min(1500px, 105vw);
  aspect-ratio: 1815 / 500;
  background: url('../exec-brand.png') center / contain no-repeat;
  opacity: 0.035;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(2.5rem, 5vw, 6rem); margin-bottom: 24px; min-height: 2.5em; }
.cta-banner p { color: var(--gray-light); font-size: 1rem; margin-bottom: 48px; letter-spacing: 0.05em; }

/* Typewriter cursor */
.tw-cursor {
  display: inline-block;
  color: var(--gold);
  font-weight: 200;
  animation: twBlink 0.65s step-end infinite;
  margin-left: 3px;
  vertical-align: baseline;
}
@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ─── RESPONSIVE LANDING ─────────────────────────────────── */
@media (max-width: 768px) {
  .move-header { padding: 60px 24px 40px; }
  .move-stats { grid-template-columns: 1fr; }
  .move-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 24px; }
  .move-stat:last-child { border-bottom: none; }
  /* Classes: stack to a single column on tablet & down */
  .cls-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 24px; }
  .cls-tile-desc { min-height: 0; }
  .cls-specs { gap: 32px; }
  .why-list { padding: 0 24px 72px; }
  .why-item { gap: 20px; padding: 32px 0; }
  .why-item-exec { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-banner { padding: 80px 24px; }
  .partner-logo { margin: 0 30px; }
  .partner-logo img { height: 24px; }
  .partners-track { animation-duration: 22s; }
  /* Hero: logo + subtitle lifted to the open area above the car; the buttons
     stay down in the lower area (where they were) via margin-top:auto. */
  .hero-content { justify-content: flex-start; padding-top: calc(var(--nav-height) + 12vh); padding-bottom: 18vh; }
  .hero-copy    { height: auto; margin-bottom: 22px; }
  .hero-slide   { position: relative; bottom: auto; }
  #hero-slide-2 { display: none; }
  /* Stack the CTAs and give them equal width so Book a Ride matches Explore Classes. */
  .hero-actions { flex-direction: column; align-items: stretch; width: min(320px, 100%); margin-top: auto; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(4rem, 20vw, 5rem); }
  .hero-title-img { width: 75vw; }
  .hero-meta { display: none; }
  .hero-scroll { display: none; }
  .cls-tile-media { height: 200px; }
  .cls-specs { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-banner { padding: 60px 20px; }
  .cta-banner h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .why-col-name { font-size: 2.2rem; }
}

/* ─── TAILORED TO YOUR PREFERENCES ──────────────────────── */
.prefs-section { background: var(--black); }
.prefs-header { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.prefs-header h2 { font-size: clamp(1.5rem, 6vw, 3.6rem); margin: 14px 0 18px; }
.prefs-header p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.75; font-weight: 300; }

.prefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pref-card {
  background: var(--black);
  padding: 42px 28px 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.35s ease;
}
.pref-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pref-card:hover { background: var(--card); }
.pref-card:hover::before { transform: scaleX(1); }
.pref-icon {
  width: 38px;
  height: 38px;
  color: var(--gold);
  display: inline-flex;
  transition: transform 0.35s ease;
}
.pref-icon svg { width: 100%; height: 100%; display: block; }
.pref-card:hover .pref-icon { transform: translateY(-3px); }
.pref-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}
.pref-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .prefs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .prefs-grid { grid-template-columns: 1fr; }
  .pref-card { padding: 34px 24px; }
}

/* ─── WHY EXEC — REDESIGN ────────────────────────────────── */
.why-header { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto 72px; }
.why-header h2 { font-size: clamp(2.2rem, 6vw, 4rem); margin: 14px 0 20px; }
.why-header p { color: var(--gray-light); font-size: 1rem; line-height: 1.8; font-weight: 300; }

.why-features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 44px;
}
.why-feature {
  padding-top: 26px;
  border-top: 1px solid var(--border);
  transition: border-color 0.35s ease;
}
.why-feature:hover { border-top-color: var(--gold); }
.why-feature-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 22px;
  transition: transform 0.35s ease;
}
.why-feature-icon svg { width: 100%; height: 100%; display: block; }
.why-feature:hover .why-feature-icon { transform: translateY(-3px); }
.why-feature-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.why-feature-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

.why-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 84px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.why-stat { text-align: center; padding: 0 16px; position: relative; }
.why-stat + .why-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: var(--border);
}
.why-stat-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.why-stat-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .why-features { grid-template-columns: repeat(2, 1fr); gap: 44px 36px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); gap: 40px 0; padding-top: 48px; }
  .why-stat + .why-stat::before { display: none; }
}
@media (max-width: 560px) {
  .why-features { grid-template-columns: 1fr; gap: 36px; }
}
