/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg-deep:        #050d1c;
  --bg-base:        #0a1628;
  --bg-mid:         #102746;
  --bg-rise:        #14315e;
  --ink:            #ffffff;
  --ink-soft:       rgba(255, 255, 255, 0.82);
  --ink-mute:       rgba(255, 255, 255, 0.62);
  --ink-faint:      rgba(255, 255, 255, 0.42);
  --line:           rgba(255, 255, 255, 0.10);
  --line-soft:      rgba(255, 255, 255, 0.06);
  --accent:         #f5a623;
  --accent-hot:     #ffb735;
  --accent-glow:    rgba(245, 166, 35, 0.45);
  --accent-soft:    rgba(245, 166, 35, 0.12);
  --shadow-lift:    0 30px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft:    0 14px 34px rgba(0, 0, 0, 0.28);
  --radius-lg:      18px;
  --radius-md:      12px;
  --radius-sm:      6px;
  --ease:           cubic-bezier(.22, .61, .36, 1);
  --ease-out:       cubic-bezier(.16, 1, .3, 1);
  --slide-duration: 1500ms;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg-base); }

/* ============================================================
   HERO CONTAINER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 75% 18%, rgba(245, 166, 35, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-base) 35%, var(--bg-mid) 75%, var(--bg-rise) 100%);
}

/* Faded banner image */
.hero__banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(1.05) contrast(1.05);
  animation: bannerDrift 28s var(--ease-out) infinite alternate;
}
.hero__banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(10, 22, 40, 0.55) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.35) 40%, rgba(10, 22, 40, 0.75) 100%);
}

@keyframes bannerDrift {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

/* Decorative orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.hero__orb--amber {
  top: -120px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
}
.hero__orb--blue {
  bottom: -160px; left: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, #2a6fcc 0%, transparent 60%);
  opacity: 0.35;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.hero__topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 26px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow), 0 0 0 4px rgba(245, 166, 35, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}
.brand__name { letter-spacing: 0.06em; }
.brand__sep { color: var(--ink-faint); }
.brand__sub { color: var(--ink-mute); font-weight: 600; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

.topnav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.topnav a {
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s var(--ease);
}
.topnav a:hover { color: var(--ink); }
.topnav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.topnav a:hover::after { transform: scaleX(1); }

.hero__counter {
  position: absolute;
  top: 26px;
  right: 48px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.hero__counter strong {
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  transition: color 0.3s var(--ease);
}
.hero__counter-divider { color: var(--ink-faint); }

/* ============================================================
   SLIDES
   ============================================================ */
.slides {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--slide-duration) var(--ease-out),
              visibility 0s linear var(--slide-duration);
  z-index: 1;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transition: opacity var(--slide-duration) var(--ease-out),
              visibility 0s linear 0s;
}

.slide__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: 110px 48px 120px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

/* Per-slide background accents */
.slide--1::before, .slide--2::before, .slide--3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.slide--1::before { background: radial-gradient(ellipse 50% 40% at 80% 25%, rgba(245, 166, 35, 0.10) 0%, transparent 60%); }
.slide--2::before { background: radial-gradient(ellipse 55% 45% at 70% 70%, rgba(120, 180, 255, 0.08) 0%, transparent 60%); }
.slide--3::before { background: radial-gradient(ellipse 50% 45% at 20% 75%, rgba(230, 110, 60, 0.12) 0%, transparent 60%); }

/* Slide enter animations (when becoming active) */
.slide__content > *,
.slide__visual {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s var(--ease-out), transform 0.9s var(--ease-out);
}
.slide.is-active .slide__content > *,
.slide.is-active .slide__visual {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.slide.is-active .slide__content > *:nth-child(1) { transition-delay: 0.15s; }
.slide.is-active .slide__content > *:nth-child(2) { transition-delay: 0.25s; }
.slide.is-active .slide__content > *:nth-child(3) { transition-delay: 0.35s; }
.slide.is-active .slide__content > *:nth-child(4) { transition-delay: 0.45s; }
.slide.is-active .slide__content > *:nth-child(5) { transition-delay: 0.55s; }
.slide.is-active .slide__visual { transition-delay: 0.30s; transform: translate3d(0, 0, 0); }

.slide__content { max-width: 640px; position: relative; z-index: 1; }

/* ============================================================
   COPY ELEMENTS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 9px 16px 9px 14px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(245, 166, 35, 0.06);
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.headline {
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: 26px;
  color: var(--ink);
}
.headline__accent {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
@media (max-width: 560px) { .headline__accent { white-space: normal; } }

.subhead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 580px;
}

/* ============================================================
   CTAs
   ============================================================ */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.cta--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: var(--bg-base);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(245, 166, 35, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.cta--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.cta--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.cta__icon { transition: transform 0.25s var(--ease); }
.cta:hover .cta__icon { transform: translateX(4px); }

/* ============================================================
   SLIDE 1 — TRUST STRIP
   ============================================================ */
.trust-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-item__icon {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item__head {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 3px;
}
.trust-item__sub {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* ============================================================
   SLIDE 2 — PRICE PROMISES
   ============================================================ */
.price-promises {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.price-promises li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.price-promises li svg {
  width: 20px; height: 20px;
  padding: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   SLIDE 3 — TIMELINE
   ============================================================ */
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.timeline::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  opacity: 0.45;
}
.timeline__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 16px;
}
.timeline__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg-base), 0 0 12px var(--accent-glow);
  z-index: 1;
}
.timeline__time {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.timeline__text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-top: 26px;
}

/* ============================================================
   SLIDE VISUAL
   ============================================================ */
.slide__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.slide__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 12s var(--ease-out);
}
.slide.is-active .slide__visual img {
  transform: scale(1.06);
}
.slide__visual--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.85) 100%);
  pointer-events: none;
}

.visual__badge {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  z-index: 2;
  box-shadow: var(--shadow-soft);
}
.visual__badge svg { width: 14px; height: 14px; color: var(--accent); }
.visual__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: pulse 1.8s ease-in-out infinite;
}

.visual__caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  padding: 12px 16px;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  z-index: 2;
}

/* ============================================================
   VIDEO FRAME (Slide 2)
   ============================================================ */
.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}
.video-frame__iframe,
.video-frame__video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
  object-fit: contain;
}
.video-frame__iframe[hidden],
.video-frame__video[hidden] { display: none; }
.video-frame__poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(ellipse at center, rgba(245, 166, 35, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0a1628 0%, #14315e 100%);
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.4s var(--ease);
}
.video-frame__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/banner.webp') center/cover no-repeat;
  opacity: 0.35;
  z-index: -1;
}
.video-frame.is-playing .video-frame__poster {
  opacity: 0;
  pointer-events: none;
}
.video-frame__play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px var(--accent-glow), 0 0 0 12px rgba(245, 166, 35, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: pulseRing 2.4s ease-in-out infinite;
}
.video-frame__play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-frame__poster:hover .video-frame__play {
  transform: scale(1.08);
  box-shadow: 0 16px 38px var(--accent-glow), 0 0 0 16px rgba(245, 166, 35, 0.22);
}
.video-frame__label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
}

@keyframes pulseRing {
  0%, 100% { box-shadow: 0 12px 32px var(--accent-glow), 0 0 0 12px rgba(245, 166, 35, 0.18); }
  50%      { box-shadow: 0 12px 32px var(--accent-glow), 0 0 0 22px rgba(245, 166, 35, 0); }
}

/* ============================================================
   SLIDER NAV (dots + arrows)
   ============================================================ */
.hero__nav {
  position: absolute;
  bottom: 28px;
  left: 48px; right: 48px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 6px;
}
.dot {
  position: relative;
  width: 38px;
  height: 6px;
  background: rgba(255, 255, 255, 0.22);
  padding: 0;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.45s var(--ease-out), background 0.3s var(--ease);
}
.dot:hover { background: rgba(255, 255, 255, 0.4); }
.dot__progress {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hot) 100%);
  border-radius: 100px;
  box-shadow: 0 0 12px var(--accent-glow);
}
.dot.is-active {
  width: 72px;
  background: rgba(245, 166, 35, 0.18);
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.35), 0 0 18px rgba(245, 166, 35, 0.18);
}
.dot.is-active .dot__progress {
  animation: dotFill var(--autoplay-duration, 6500ms) linear forwards;
}
.dot.is-paused .dot__progress { animation-play-state: paused; }

@keyframes dotFill {
  from { width: 0%; }
  to   { width: 100%; }
}

.hero__arrows { display: flex; gap: 10px; }
.arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.arrow svg { width: 18px; height: 18px; }
.arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-base);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL CUE
   ============================================================ */
.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-mute);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-cue__line {
  width: 1.5px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--ink-soft));
  animation: scrollBob 1.8s ease-in-out infinite;
}
.scroll-cue__label { opacity: 0.7; }

@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.55); opacity: 0.4; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .slide__inner { gap: 44px; padding: 100px 36px 110px; }
  .hero__topbar { padding: 22px 36px; }
  .hero__nav { left: 36px; right: 36px; }
  .topnav { gap: 24px; }
}

@media (max-width: 920px) {
  .topnav { display: none; }
  .slide__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 100px 28px 120px;
    align-items: start;
  }
  .slide__visual {
    aspect-ratio: 16 / 11;
    max-height: 320px;
    order: -1;
  }
  .hero__topbar { padding: 20px 28px; }
  .hero__nav { left: 28px; right: 28px; bottom: 22px; }
  .trust-strip { gap: 16px; }
  .timeline::after { display: none; }
}

@media (max-width: 600px) {
  .headline { font-size: 32px; }
  .subhead { font-size: 16px; margin-bottom: 32px; }
  .eyebrow { font-size: 10.5px; padding: 7px 12px; margin-bottom: 22px; }
  .cta { padding: 15px 22px; font-size: 14px; width: 100%; justify-content: center; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .trust-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 22px;
  }
  .timeline { grid-template-columns: 1fr; gap: 14px; }
  .timeline__item { flex-direction: row; align-items: center; gap: 14px; padding-right: 0; }
  .timeline__item::before { position: static; }
  .timeline__text { margin-top: 0; }
  .price-promises { gap: 14px; }
  .price-promises li { font-size: 13.5px; }
  .video-frame__play { width: 64px; height: 64px; }
  .video-frame__play svg { width: 24px; height: 24px; }
  .arrow { width: 36px; height: 36px; }
  .arrow svg { width: 14px; height: 14px; }
  .dot { width: 28px; height: 5px; }
  .dot.is-active { width: 52px; }
  .slide__inner { padding: 92px 20px 110px; }
  .hero__topbar { padding: 16px 20px; }
  .hero__nav {
    left: 16px; right: 16px; bottom: 18px;
    padding: 8px 10px;
    gap: 12px;
  }
  .hero__dots { gap: 6px; padding: 0 4px; }
  .brand__sub { display: none; }
  .brand__sep { display: none; }
}

/* ============================================================
   ACCESSIBILITY — reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__banner img,
  .brand__dot,
  .visual__badge-dot,
  .video-frame__play,
  .scroll-cue__line {
    animation: none !important;
  }
  .slide,
  .slide__content > *,
  .slide__visual,
  .slide__visual img {
    transition: opacity 0.3s linear !important;
    transform: none !important;
  }
  .dot.is-active .dot__progress { animation: none; width: 100%; }
}

.dot:focus-visible,
.arrow:focus-visible,
.cta:focus-visible,
.topnav a:focus-visible,
.brand:focus-visible,
.video-frame__poster:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 100px;
}
