/* ==================== Base ==================== */
:root {
  --accent: #C6F359;
  --accent-blue: #496EFD;
  --accent-orange: #FF5A36;
  --ink: #0a0a0a;
}

/* scroll-behavior intentionally omitted: ScrollSmoother owns scroll easing */

body {
  margin: 0;
  background: #ffffff;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }

::selection { background: var(--accent); color: #000; }

@keyframes voxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@keyframes voxSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

/* ==================== Nav ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 5vw, 80px);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 20px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
}

.nav.scrolled .nav-logo-img {
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.6vw, 46px);
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.nav-lang {
  position: relative;
}

.nav-lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: #0a0a0a;
  background: #ffffff;
  border: none;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.nav-lang-trigger:hover { opacity: 0.85; }
.nav-lang-trigger svg { transition: transform 0.2s ease; }
.nav-lang.is-open .nav-lang-trigger svg { transform: rotate(180deg); }

.nav-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 96px;
  background: #ffffff;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-lang.is-open .nav-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-lang-option {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: #0a0a0a;
  background: transparent;
  border: none;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.nav-lang-option:hover { background: #f2f2f2; }
.nav-lang-option[aria-selected="true"] { background: var(--accent); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.scrolled .nav-burger span { background: #0a0a0a; }
.nav.menu-open .nav-burger span { background: #0a0a0a; }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-logo { order: 1; }
  .nav-burger { display: flex; order: 2; }

  .nav-inner { flex-wrap: wrap; }

  .nav-links,
  .nav-lang {
    display: none;
    flex: 1 0 100%;
    width: 100%;
  }
  .nav-links { order: 3; }
  .nav-lang { order: 4; }

  .nav.menu-open {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }
  .nav.menu-open .nav-logo-img {
    filter: invert(1);
  }
  .nav.menu-open .nav-links,
  .nav.menu-open .nav-lang {
    display: flex;
  }
  .nav.menu-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 16px;
  }
  .nav.menu-open .nav-link {
    width: 100%;
    padding: 14px 0;
    color: #0a0a0a;
    border-top: 1px solid rgba(10,10,10,0.1);
  }
  .nav.menu-open .nav-lang {
    justify-content: flex-start;
    padding: 16px 0 24px;
  }
  .nav.menu-open .nav-lang-trigger {
    display: none;
  }
  .nav.menu-open .nav-lang-menu {
    position: static;
    display: flex;
    width: 100%;
    min-width: 0;
    gap: 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
  }
  .nav.menu-open .nav-lang-option {
    flex: 1;
    text-align: center;
    border: 1px solid rgba(10,10,10,0.15);
  }
}

/* ==================== Hero ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 28%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0) 62%);
}

.hero-inner {
  position: absolute;
  inset: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
}

@media (max-width: 700px) {
  .hero-inner {
    align-items: flex-end;
    padding-bottom: 56px;
  }
}


.hero-title {
  margin: 0 0 4px;
  font-size: clamp(80px, 5.6vw, 140px);
  line-height: 1.12;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(58px, 5vw, 140px);
  color: #ffffff;
  margin: 2px 0 20px;
}

.hero-desc {
  margin: 0 0 34px;
  max-width: 700px;
  font-size: clamp(20px, 1.4vw, 50px);
  line-height: 1.6;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: #0a0a0a;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 1px;
  padding: 2.4vh 5.6vh;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.hero-cta:hover {
  transform: scale(1.05);
  background: var(--accent);
  color: #0a0a0a;
}

/* ==================== Experience ==================== */
.experience-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 150px clamp(24px, 5vw, 80px) 130px;
}

.experience-title {
  margin: 0 0 90px;
  text-align: center;
  font-size: clamp(34px, 5.4vw, 72px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #0a0a0a;
}

.experience-cards {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.exp-card {
  position: relative;
  flex: 1 1 340px;
  max-width: 450px;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 44px 40px;
}

.exp-card--dark {
  background: #0a0a0a;
  padding: 40px;
}
.exp-card--dark .exp-card-media {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  margin-bottom: 28px;
}
.exp-card--dark .exp-card-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 12px 12px;
}
.exp-card--dark .exp-card-title { color: #ffffff; }
.exp-card--dark .exp-card-desc { color: #a8a8a8; }

.exp-card--accent {
  background: var(--accent);
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}
.exp-card--accent .exp-card-media { width: 96px; height: auto; color: #0a0a0a; }
.exp-card--accent .exp-card-title,
.exp-card--accent .exp-card-desc { color: #0a0a0a; }

.exp-card--blue {
  background: #bfe0ff;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.exp-card--blue .exp-card-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exp-card--blue .exp-card-media {
  margin-top: auto;
  align-self: center;
  width: 100%;
  height: auto;
}
.exp-card--blue .exp-card-title { color: #162e44; }
.exp-card--blue .exp-card-desc { color: #3b5c7a; }

.exp-card-title {
  margin: 0;
  font-size: clamp(30px, 1.8vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}
.exp-card-desc {
  margin: 0;
  font-size: clamp(14px, 1.4w, 18px);
  line-height: 1.6;
}

/* ==================== Sports ==================== */
.sports-section {
  position: relative;
  width: 100%;
  background: #fafafa;
  padding: 130px clamp(24px, 5vw, 80px);
}

.sports-title {
  margin: 0 0 90px;
  text-align: center;
  font-size: clamp(34px, 5.4vw, 72px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #0a0a0a;
}

.sports-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 120px;
}

.sport-card-slot {
  margin-right: -38px;
  transition: transform 0.3s ease;
}
.sport-card-slot--1 { transform: rotate(-13deg) translateY(90px); z-index: 1; }
.sport-card-slot--2 { transform: rotate(-6deg) translateY(30px); z-index: 2; }
.sport-card-slot--3 { transform: rotate(0deg) translateY(0); z-index: 3; }
.sport-card-slot--4 { transform: rotate(6deg) translateY(30px); z-index: 2; }
.sport-card-slot--5 { transform: rotate(13deg) translateY(90px); z-index: 1; margin-right: 0; }

.sport-card-slot--1:hover { transform: rotate(-13deg) translateY(58px); }
.sport-card-slot--2:hover { transform: rotate(-6deg) translateY(-2px); }
.sport-card-slot--3:hover { transform: rotate(0deg) translateY(-32px); }
.sport-card-slot--4:hover { transform: rotate(6deg) translateY(-2px); }
.sport-card-slot--5:hover { transform: rotate(13deg) translateY(58px); }

.sport-card {
  width: 300px;
  height: 350px;
  border-radius: 32px;
  overflow: hidden;

}
.sport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sports-stats {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: nowrap;
  text-align: center;
}

.stat-number {
  font-size: clamp(60px, 6vw, 90px);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1;
}
.stat-label {
  font-size: clamp(16px, 1.4vw, 30px);
  width: 60%;
  color: #5a5a5a;
  margin: 10px auto 0;
  text-align: center;
}

@media (max-width: 900px) {
  .sports-cards {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 calc(-1 * clamp(24px, 5vw, 80px)) 70px;
    padding: 10px 48px 20px clamp(24px, 5vw, 80px);
    scrollbar-width: none;
  }
  .sports-cards::-webkit-scrollbar { display: none; }

  .sport-card-slot {
    margin-right: 0 !important;
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
  .sport-card-slot--1, .sport-card-slot--3, .sport-card-slot--5,
  .sport-card-slot--1:hover, .sport-card-slot--3:hover, .sport-card-slot--5:hover {
    transform: rotate(-4deg) !important;
  }
  .sport-card-slot--2, .sport-card-slot--4,
  .sport-card-slot--2:hover, .sport-card-slot--4:hover {
    transform: rotate(4deg) !important;
  }

  .sport-card {
    width: min(58vw, 260px);
    height: min(68vw, 300px);
  }

  .sports-stats { gap: 48px; }
}

/* ==================== Gear ==================== */
.gear-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f7f8fa;
  padding: 150px clamp(24px, 5vw, 80px) 140px;
}

.gear-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gear-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.gear-intro {
  text-align: center;
  margin-bottom: 80px;
}

.gear-title {
  margin: 0 0 20px;
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #0a0a0a;
}

.gear-eyebrow {
  margin: 0 auto;
  max-width: 720px;
  font-size: 17px;
  font-weight: 500;
  color: #6a6a6a;
}

.gear-features {
  position: relative;
}

.gear-image-col {
  width: 100%;
  display: flex;
  justify-content: center;
}
.gear-glasses-img {

  height: auto;
  display: block;
  margin: 0 auto;
}

.gear-cards-grid {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: min(44%, 560px);
  display: flex;
  gap: 22px;
  z-index: 2;
}

.gear-cards-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}


.gear-card {
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(20,30,50,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.6vw;
  text-align: left;
}
.gear-card--tall { min-height: 200px; }
.gear-card--short { min-height: 150px; }

.gear-card-icon { 
  width: auto; 
  height: 50px; 
  color: #0a0a0a;
  margin: 0 0 2vw 0;
}
.gear-card-label {
  font-size: clamp(12px, 1vw, 24px);
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .gear-glasses-img { max-width: 100%; }

  .gear-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .gear-cards-grid {
    position: static;
    transform: none;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .gear-card { padding: 20px; }
  .gear-card-icon { height: 40px; margin-bottom: 16px; }
  .gear-card-label { font-size: 14px; }
  .gear-card--tall { min-height: 160px; }
  .gear-card--short { min-height: 120px; }
}

@media (max-width: 480px) {
  .gear-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .gear-cards-col { display: contents; }
  .gear-card--tall,
  .gear-card--short { min-height: 140px; }
}

/* ==================== Team communication ==================== */
.team-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 150px clamp(24px, 5vw, 80px) 130px;
}

.team-row {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.team-title {
  flex: 1 1 420px;
  margin: 0;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #0a0a0a;
  line-height: 1.1;
}

.team-list {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.team-item-title {
  font-size: 17px;
  color: #0a0a0a;
}
.team-item-desc {
  margin: 6px 0 0;
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
}

.team-media {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  height: clamp(280px, 44vw, 620px);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bubble-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.bubble-avatar--1 { background-image: url('assets/avatar-2.webp'); }
.bubble-avatar--2 { background-image: url('assets/avatar-1.webp'); }
.bubble-avatar--3 { background-image: url('assets/avatar-5.webp'); }
.bubble-avatar--4 { background-image: url('assets/avatar-6.webp'); }

.bubble-wave-icon { width: 18px; height: auto; }

.voice-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.voice-bubble--accent {
  left: 30%;
  top: 60%;
  background: var(--accent);
}
.voice-bubble--plain {
  left: 15%;
  top: 75%;
  background: rgba(255,255,255,0.95);
}

.avatar-stack {
  position: absolute;
  left: 4%;
  top: 85%;
  display: flex;
}
.avatar-stack .avatar {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-left: -1vw;
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.avatar--1 { background-image: url('assets/avatar-1.webp'); }
.avatar--2 { background-image: url('assets/avatar-3.webp'); }
.avatar--3 { background-image: url('assets/avatar-4.webp'); }
.avatar--4 { background-image: url('assets/avatar-2.webp'); }
.avatar--5 { background-image: url('assets/avatar-6.webp'); }

.chat-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.chat-bubble--accent {
  left: 52%;
  top: 34%;
  background: var(--accent);
  color: #0a0a0a;
}
.chat-bubble--plain {
  left: 64%;
  top: 55%;
  background: rgba(255,255,255,0.95);
  color: #0a0a0a;
}
.chat-bubble--blue {
  left: 84%;
  top: 76%;
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

@media (max-width: 700px) {
  .avatar-stack .avatar {
    width: 24px;
    height: 24px;
    margin-left: -8px;
  }

  .chat-bubble {
    padding: 6px 14px 6px 6px;
    font-size: 12px;
    gap: 6px;
  }
  .bubble-avatar { width: 20px; height: 20px; }
  .chat-bubble--accent { left: 42%; top: 30%; }
  .chat-bubble--plain { left: 52%; top: 52%; }
  .chat-bubble--blue { left: 62%; top: 74%; }

  .voice-bubble { padding: 8px 14px; font-size: 12px; }
}

/* ==================== Navigation feature ==================== */
.nav-feature-section {
  position: relative;
  width: 100%;
  background: #fafafa;
  padding: 150px clamp(24px, 5vw, 80px) 130px;
  overflow: hidden;
}

.nav-feature-row {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-feature-text {
  flex: 1 1 420px;
  min-width: 320px;
}

.nav-feature-title {
  margin: 0 0 36px;
  font-size: clamp(30px, 4.8vw, 60px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #0a0a0a;
  line-height: 1.15;
}

.nav-feature-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-feature-paragraphs li {
  position: relative;
  margin: 0;
  padding-left: 22px;
  font-size: clamp(14px, 1.4w, 18px);
  color: #5a5a5a;
  line-height: 1.7;
}
.nav-feature-paragraphs li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a0a0a;
}

.nav-visual {
  position: relative;
  flex: 1 1 420px;
  min-width: 320px;
  height: 640px;
}

.nav-image-wrap {
  position: absolute;
  left: 6%;
  top: 0;
  width: 88%;
  height: 82%;
  border-radius: 50px;
  overflow: hidden;
}

.nav-feature-img {
  width: 100%;
  height: 116%;
  object-fit: cover;
}

.map-card-float {
  position: absolute;
  right: -6%;
  top: -6%;
  width: 46%;
  max-width: 12vw;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.map-card-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ride-stats-card {
  position: absolute;
  left: 2%;
  bottom: 0;
  width: 78%;
  max-width: 340px;
  border-radius: 30px;
  background: rgba(25,25,25,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 26px 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.ride-stats-handle {
  width: 60px;
  height: 4px;
  border-radius: 10px;
  background: #3a3a3a;
  margin: 0 auto 18px;
}

.ride-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px 10px;
  margin-bottom: 20px;
}

.ride-stat { text-align: center; }
.ride-stat-value {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.ride-stat-unit {
  font-size: 12px;
  font-weight: 500;
}
.ride-stat-label {
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}

.end-ride-btn {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  background: var(--accent-orange);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 900px) {
  .nav-visual { height: 480px; min-width: 0; }
  .map-card-float { max-width: 130px; }
  .ride-stats-card { max-width: 280px; }
}

@media (max-width: 480px) {
  .nav-visual { height: 400px; }
  .map-card-float { width: 40%; max-width: 110px; }
  .ride-stats-card { width: 84%; max-width: 280px; padding: 18px 16px; }
  .ride-stat-value { font-size: 14px; }
  .ride-stat-label { font-size: 9px; }
}

/* ==================== Scenario carousel ==================== */
.scenario-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 150px 0 130px;
}

.scenario-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.scenario-heading { flex: 1 1 480px; }

.scenario-title {
  margin: 0 0 20px;
  font-size: clamp(34px, 5.4vw, 72px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #0a0a0a;
}

.scenario-desc {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.6;
}

.scenario-controls {
  display: flex;
  gap: 14px;
}

.carousel-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: #efefef;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.carousel-btn:hover { background: #e2e2e2; }

.carousel-btn:disabled {
  background: #efefef;
  color: #c9c9c9;
  cursor: not-allowed;
}
.carousel-btn:disabled:hover { background: #efefef; }

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-left: max(clamp(24px, 5vw, 80px), calc((100vw - 1440px) / 2 + clamp(24px, 5vw, 80px)));
  padding-right: clamp(24px, 5vw, 80px);
  padding-bottom: 20px;
  scroll-padding-left: max(clamp(24px, 5vw, 80px), calc((100vw - 1440px) / 2 + clamp(24px, 5vw, 80px)));
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: min(78vw, 450px);
  height: 560px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 14px;
}

@media (max-width: 700px) {
  .carousel-card { height: auto; }
}

.carousel-card-media {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.carousel-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card-title {
  margin: auto 0 0;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  padding: 0 20px;
}
.carousel-card-desc {
  margin: 0;
  font-size: 14px;
  text-align: left;
  line-height: 1.5;
  padding: 0 20px;

}

.carousel-card--dark {
  background: #0a0a0a;
}
.carousel-card--dark .carousel-card-media { background: rgba(255,255,255,0.06); }
.carousel-card--dark .carousel-card-title { color: #ffffff; }
.carousel-card--dark .carousel-card-desc { color: #b9b9b9; }

.carousel-card--accent {
  background: var(--accent);
}
.carousel-card--accent .carousel-card-media { background: rgba(255,255,255,0.4); }
.carousel-card--accent .carousel-card-title,
.carousel-card--accent .carousel-card-desc { color: #0a0a0a; }

.carousel-card--outline {
  background: #FAFAFA;
}
.carousel-card--outline .carousel-card-media img { object-fit: contain; }
.carousel-card--outline .carousel-card-title { color: #0a0a0a; }
.carousel-card--outline .carousel-card-desc { color: #5a5a5a; }

/* ==================== App download ==================== */
.app-section {
  position: relative;
  width: 100%;
  background: #000000;
  padding: 150px clamp(24px, 5vw, 80px) 130px;
  overflow: hidden;
}

.app-row {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.app-text {
  flex: 1 1 420px;
  min-width: 300px;
}

.app-title {
  margin: 0 0 28px;
  font-size: clamp(34px, 5.4vw, 72px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #ffffff;
}

.app-desc {
  margin: 0 0 40px;
  max-width: 480px;
  font-size: 16px;
  color: #a8a8a8;
  line-height: 1.6;
}

.app-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.download-badge-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.download-badge-button {
  width: 242px;
  transition: transform 0.4s cubic-bezier(.175, .885, .32, 1.275);
}
.download-badge-button:hover {
  transform: scale(1.1);
}
.download-badge-image {
  width: 100%;
  display: block;
}
@media (max-width: 640px) {
  .download-badge-container {
    flex-direction: column;
    gap: 20px;
  }
}

.app-phones {
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
  height: 620px;
}

.app-phone {
  position: absolute;
  border-radius: 26px;
  overflow: hidden;
  border: 12px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.app-phone img { width: 100%; display: block; }

.app-phone--1 {
  left: -10%;
  top: 5%;
  max-width: 300px;
  transform: rotate(-6deg);
}
.app-phone--2 {
  right: 10%;
  top: 0%;
  max-width: 350px;
  transform: rotate(6deg);
}

@media (max-width: 700px) {
  .app-phones { height: 380px; min-width: 0; }
  .app-phone--1 {
    left: 6%;
    top: 12%;
    max-width: 44%;
    transform: rotate(-5deg);
  }
  .app-phone--2 {
    right: 6%;
    top: 2%;
    max-width: 48%;
    transform: rotate(5deg);
  }
}

@media (max-width: 420px) {
  .app-phones { height: 320px; }
}

/* ==================== Footer ==================== */
.site-footer {
  position: relative;
  width: 100%;
  background: #000000;
  padding: 70px clamp(24px, 5vw, 80px) 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 40px;
  padding: 48px 0 56px;
}

.footer-col { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

.footer-logo { display: block; height: 24px; width: auto; margin: 0 0 20px; align-self: flex-start; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  max-width: 320px;
  margin-bottom: 48px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  margin-bottom: 20px;
}

.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav-link {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.footer-nav-link:hover { color: var(--accent); }

.footer-newsletter-text {
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  max-width: 360px;
  margin-bottom: 40px;
}
.footer-subscribe-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 10px 8px 10px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #111;
}
.footer-subscribe-input::placeholder { color: #888; }
.footer-subscribe-btn {
  border: none;
  border-radius: 999px;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-family: inherit;
}
.footer-subscribe-btn:hover { opacity: 0.88; }
.footer-subscribe-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.footer-newsletter-status--success { color: var(--accent); }
.footer-newsletter-status--error { color: #ff6b6b; }

.footer-contact-line { font-size: 15px; margin-bottom: 6px; }
.footer-contact-line a { color: #fff; font-weight: 500; }
.footer-contact-line a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social-btn:hover { background: var(--accent); color: #0a0a0a; }

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-tagline { margin-bottom: 32px; }
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.15);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-link {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 500;
}

/* ==================== Back to top ==================== */
.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 40px);
  z-index: 90;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0a0a0a;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--accent); }

/* ==================== Mobile spacing pass ==================== */
@media (max-width: 700px) {
  .experience-section,
  .team-section,
  .nav-feature-section,
  .scenario-section,
  .app-section {
    padding-top: 90px;
    padding-bottom: 70px;
  }
  .sports-section,
  .gear-section {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .experience-title,
  .sports-title,
  .scenario-title { margin-bottom: 48px; }

  .gear-intro { margin-bottom: 48px; }
  .team-row { margin-bottom: 48px; }
  .scenario-header { margin-bottom: 32px; }

  .hero { min-height: 560px; }

  .back-to-top {
    width: 42px;
    height: 42px;
  }
}
