/* ===== Zero One — Rich Homepage Design ===== */

:root {
  --font-display: 'Syne', 'Inter', sans-serif;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --emerald: #0d4f3c;
  --emerald-glow: rgba(13, 79, 60, 0.4);
  --surface: #fafafa;
  --surface-elevated: #ffffff;
}

.hero-carousel {
  height: 580px;
  background: #050505;
  overflow: hidden;
}

body[data-page="home"] .hero-carousel {
  height: calc(580px + var(--zg-bar-h));
}

body[data-page="home"] .hero-slide-content {
  padding-top: calc(var(--zg-bar-h) + var(--zg-header-h) - 8px);
}

.hero-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(13,79,60,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,169,98,.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-slide-bg::after {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.2) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.75) 100%
  ) !important;
}

.hero-slide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.75rem) !important;
  font-weight: 800;
  letter-spacing: -0.02em !important;
  line-height: 1.08;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.5));
}

.hero-slide-content p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.9;
  padding: 0 8px;
}

.hero-slide-badge {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #fff);
  z-index: 10;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(201,169,98,.6);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: var(--emerald);
  top: 10%;
  left: 10%;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  bottom: 20%;
  right: 15%;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(.95); }
}

/* ── Category photo slider ── */
.category-slider-section {
  background: #fff;
  padding: 44px 0 40px;
  position: relative;
  z-index: 10;
}

.category-slider-viewport {
  position: relative;
  overflow: hidden;
}

.category-slider-viewport::before,
.category-slider-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.category-slider-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #fff 20%, transparent);
}

.category-slider-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #fff 20%, transparent);
}

.category-slider-track {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 44px);
  padding: 4px max(24px, calc((100% - 720px) / 2)) 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-slider-track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .category-slider-track {
    justify-content: center;
  }
}

.category-slide {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 120px;
  text-decoration: none;
  scroll-snap-align: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-slide:hover {
  transform: translateY(-4px);
}

.category-slide-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  padding: 3px;
  background: #f3f4f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.category-slide:hover .category-slide-circle {
  background: linear-gradient(135deg, var(--zg-1), var(--zg-2));
  box-shadow: 0 10px 28px -8px rgba(124, 58, 237, 0.4);
}

.category-slide-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #fafafa;
  border: 3px solid #fff;
}

.category-slide-label {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 100%;
  transition: color 0.25s ease;
}

.category-slide:hover .category-slide-label {
  color: #7c3aed;
  font-weight: 600;
}

.category-slide:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.45);
  outline-offset: 6px;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .category-slider-section {
    padding: 32px 0 28px;
  }

  .category-slider-track {
    gap: 20px;
    padding-inline: 20px;
    justify-content: flex-start;
  }

  .category-slide {
    width: 96px;
    gap: 10px;
  }

  .category-slide-circle {
    width: 88px;
    height: 88px;
  }

  .category-slide-label {
    font-size: 12px;
  }

  .category-slider-viewport::before,
  .category-slider-viewport::after {
    width: 28px;
  }
}

/* ── Section rich headers ── */
.section-zero-header {
  margin-bottom: 36px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), transparent);
}

.section-zero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.section-zero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}

.section-zero-link:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  gap: 10px;
}

/* ── Marquee strip ── */
.brand-marquee {
  background: var(--black);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand-marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.brand-marquee-track span {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-marquee-track span.highlight {
  color: var(--gold-light);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Spotlight banner ── */
.spotlight-banner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin: 0 24px;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
}

.spotlight-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d4f3c 50%, #1a1a1a 100%);
}

.spotlight-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  mix-blend-mode: luminosity;
}

.spotlight-banner-content {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  color: var(--white);
  max-width: 560px;
}

.spotlight-banner-content .tag {
  display: inline-block;
  background: rgba(201,169,98,.2);
  border: 1px solid rgba(201,169,98,.4);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.spotlight-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.spotlight-banner-content p {
  opacity: .8;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.spotlight-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8944f 100%);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all .35s;
  box-shadow: 0 4px 20px rgba(201,169,98,.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,98,.5);
}

.btn-ghost-white {
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  transition: all .35s;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.spotlight-product {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: floatSoft 5s ease-in-out infinite;
}

.spotlight-product img {
  max-height: 280px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.5));
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--black);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,98,.4), transparent);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: all .4s;
}

.stat-item:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(201,169,98,.2);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix {
  font-size: 1.25rem;
  color: var(--gold);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ── Trust cards ── */
.trust-carousel {
  background: linear-gradient(180deg, #f8f7fc 0%, #fff 100%);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.trust-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(124, 58, 237, 0.06), transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(236, 72, 153, 0.06), transparent 45%);
  pointer-events: none;
}

.trust-carousel-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.trust-carousel-item {
  background: #fff;
  border-radius: 22px;
  padding: 28px 22px 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 32px -12px rgba(15, 10, 30, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), rgba(236, 72, 153, 0.04));
}

.trust-carousel-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.15);
}

.trust-carousel-item:hover::before {
  opacity: 1;
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.25);
}

.trust-icon-svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.trust-carousel-item--deals .trust-icon {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.trust-carousel-item--returns .trust-icon {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.trust-carousel-item--dispatch .trust-icon {
  background: linear-gradient(135deg, #f97316, #fbbf24);
}

.trust-carousel-item--cod .trust-icon {
  background: linear-gradient(135deg, #0d4f3c, #22c55e);
}

.trust-copy {
  position: relative;
  z-index: 1;
}

.trust-carousel-item h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: #0f172a;
}

.trust-carousel-item p {
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}

/* ── Audio bento (lifestyle grid + promo) ── */
.audio-bento-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.audio-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.audio-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Bento category cards ── */
.audio-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px -8px rgba(15, 10, 30, 0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s ease;
}

.audio-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(124, 58, 237, 0.22);
}

.audio-bento-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  position: relative;
  z-index: 2;
}

.audio-bento-card-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1f2937;
  line-height: 1.3;
}

.audio-bento-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #0f172a;
  color: #fff;
  transition: transform 0.35s ease, background 0.35s ease;
}

.audio-bento-card:hover .audio-bento-card-arrow {
  transform: translateX(3px);
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.audio-bento-card-stage {
  position: relative;
  flex: 1;
  min-height: 170px;
  margin: 0 12px 12px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.audio-bento-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.audio-bento-card:hover .audio-bento-card-glow {
  opacity: 1;
}

.audio-bento-card-img {
  position: relative;
  z-index: 1;
  width: 88%;
  max-height: 155px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.audio-bento-card:hover .audio-bento-card-img {
  transform: translateY(-6px) scale(1.04);
}

/* Theme tints */
.audio-bento-card--gaming .audio-bento-card-glow {
  background:
    radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.35), transparent 55%),
    linear-gradient(165deg, #1e1035 0%, #4c1d95 45%, #312e81 100%);
}

.audio-bento-card--productivity .audio-bento-card-glow {
  background:
    radial-gradient(circle at 70% 15%, rgba(99, 102, 241, 0.25), transparent 50%),
    linear-gradient(165deg, #eef2ff 0%, #e0e7ff 50%, #c7d2fe 100%);
}

.audio-bento-card--music .audio-bento-card-glow {
  background:
    radial-gradient(circle at 50% 10%, rgba(249, 115, 22, 0.2), transparent 55%),
    linear-gradient(165deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
}

.audio-bento-card--fitness .audio-bento-card-glow {
  background:
    radial-gradient(circle at 40% 15%, rgba(6, 182, 212, 0.25), transparent 55%),
    linear-gradient(165deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
}

/* ── Promo banner ── */
.audio-bento-promo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
  isolation: isolate;
}

.audio-bento-promo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 30%, #ec4899 65%, #f97316 100%);
  background-size: 200% 200%;
  animation: audioPromoShift 14s ease infinite;
}

@keyframes audioPromoShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.audio-bento-promo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15), transparent 40%);
}

.audio-bento-promo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: audioOrbFloat 10s ease-in-out infinite;
}

.audio-bento-promo-orb--1 {
  width: 280px;
  height: 280px;
  top: -60px;
  right: 10%;
  background: rgba(253, 224, 71, 0.35);
}

.audio-bento-promo-orb--2 {
  width: 220px;
  height: 220px;
  bottom: -40px;
  left: 30%;
  background: rgba(6, 182, 212, 0.35);
  animation-delay: -5s;
}

@keyframes audioOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -16px) scale(1.08); }
}

.audio-bento-promo-content {
  position: relative;
  z-index: 2;
  max-width: 260px;
}

.audio-bento-promo-mark {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.35);
}

.audio-bento-promo h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.audio-bento-promo h2 span {
  background: linear-gradient(90deg, #fde047, #fbbf24, #06b6d4);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: audioPromoShift 8s ease infinite;
}

.audio-bento-promo-sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 240px;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  background: rgba(11, 8, 20, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn-promo:hover {
  background: #0b0814;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.45);
}

/* Floating product showcase */
.audio-bento-promo-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  height: 88%;
  z-index: 1;
  pointer-events: none;
}

.audio-promo-float {
  position: absolute;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow:
    0 24px 48px -12px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  pointer-events: auto;
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s ease;
}

.audio-promo-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 14%;
  background: #f5f5f5;
}

.audio-promo-float--1 {
  width: 46%;
  aspect-ratio: 1;
  top: 8%;
  right: 38%;
  transform: rotate(-8deg);
  z-index: 1;
}

.audio-promo-float--2 {
  width: 52%;
  aspect-ratio: 1;
  top: 28%;
  right: 4%;
  transform: rotate(6deg);
  z-index: 3;
}

.audio-promo-float--3 {
  width: 40%;
  aspect-ratio: 1;
  bottom: 6%;
  right: 28%;
  transform: rotate(-4deg);
  z-index: 2;
}

.audio-promo-float:hover {
  transform: rotate(0deg) scale(1.06) translateY(-8px);
  box-shadow: 0 32px 56px -12px rgba(0, 0, 0, 0.4);
  z-index: 4;
}

.audio-promo-float--1:hover { transform: rotate(0deg) scale(1.06) translateY(-8px); }
.audio-promo-float--2:hover { transform: rotate(0deg) scale(1.06) translateY(-8px); }
.audio-promo-float--3:hover { transform: rotate(0deg) scale(1.06) translateY(-8px); }

.lifestyle-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-height: 230px;
  text-decoration: none;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.12);
}

.lifestyle-card-header {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.lifestyle-card-header span:first-child {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.lifestyle-card-arrow {
  width: 32px;
  height: 32px;
  background: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.lifestyle-card:hover .lifestyle-card-arrow {
  transform: translateX(3px);
}

.lifestyle-card img {
  max-height: 150px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s ease;
  margin-top: 36px;
}

.lifestyle-card:hover img {
  transform: scale(1.06) translateY(-4px);
}

.lifestyle-card:nth-child(1) { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.lifestyle-card:nth-child(2) { background: linear-gradient(180deg, #fff 0%, #faf5ff 100%); }
.lifestyle-card:nth-child(3) { background: linear-gradient(180deg, #fff 0%, #eff6ff 100%); }
.lifestyle-card:nth-child(4) { background: linear-gradient(180deg, #fff 0%, #fdf4ff 100%); }

/* ── Partnership banner ── */
.partnership-section {
  padding: 24px 0 48px;
  background: #fff;
}

.partnership-banner {
  position: relative;
  background: #0a0a0a;
  border-radius: 4px;
  overflow: hidden;
  padding: 32px 0;
}

.partnership-banner::before,
.partnership-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background: #fff;
  z-index: 3;
}

.partnership-banner::before {
  top: 0;
  clip-path: polygon(0 100%, 2% 40%, 5% 80%, 8% 20%, 12% 70%, 16% 30%, 20% 90%, 24% 10%, 28% 60%, 32% 35%, 36% 85%, 40% 15%, 44% 75%, 48% 25%, 52% 95%, 56% 5%, 60% 65%, 64% 40%, 68% 80%, 72% 20%, 76% 70%, 80% 30%, 84% 90%, 88% 10%, 92% 55%, 96% 35%, 100% 100%);
}

.partnership-banner::after {
  bottom: 0;
  clip-path: polygon(0 0, 3% 60%, 7% 20%, 11% 80%, 15% 30%, 19% 70%, 23% 10%, 27% 90%, 31% 40%, 35% 75%, 39% 15%, 43% 65%, 47% 25%, 51% 85%, 55% 5%, 59% 55%, 63% 35%, 67% 95%, 71% 20%, 75% 70%, 79% 30%, 83% 80%, 87% 10%, 91% 60%, 95% 40%, 100% 0);
}

.partnership-embers {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(249, 115, 22, 0.35) 0%, transparent 8%),
    radial-gradient(circle at 85% 40%, rgba(251, 191, 36, 0.3) 0%, transparent 6%),
    radial-gradient(circle at 50% 80%, rgba(239, 68, 68, 0.2) 0%, transparent 10%),
    radial-gradient(circle at 70% 20%, rgba(249, 115, 22, 0.25) 0%, transparent 5%);
  pointer-events: none;
  z-index: 1;
}

.partnership-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 40px;
  min-height: 220px;
}

.partnership-visual img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.partnership-visual--left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.partnership-visual--left img {
  max-height: 280px;
  margin-bottom: -20px;
}

.partnership-visual--right {
  display: flex;
  justify-content: flex-end;
}

.partnership-center {
  text-align: center;
  color: #fff;
}

.partnership-tag {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.partnership-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.partnership-logo-wordmark {
  display: block;
  width: auto;
  height: clamp(32px, 5vw, 44px);
  max-width: min(240px, 80vw);
}

.partnership-logo-game {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  font-style: italic;
}

.partnership-x {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.6;
}

.partnership-live {
  display: inline-block;
  padding: 10px 32px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, color 0.3s ease;
}

.partnership-live:hover {
  background: #fff;
  color: #0a0a0a;
}

/* ── Vision 2025 layout ── */
.vision-section {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.vision-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  display: block;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 20px 48px -20px rgba(76, 29, 149, 0.35);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.vision-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -18px rgba(124, 58, 237, 0.4);
}

.vision-banner-bg {
  position: absolute;
  inset: 0;
}

.vision-banner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.7s ease;
}

.vision-banner:hover .vision-banner-photo {
  transform: scale(1.06);
}

.vision-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 8, 20, 0.15) 0%, rgba(11, 8, 20, 0.35) 40%, rgba(11, 8, 20, 0.88) 100%),
    linear-gradient(135deg, rgba(76, 29, 149, 0.45) 0%, rgba(236, 72, 153, 0.25) 50%, transparent 100%);
}

.vision-banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: audioOrbFloat 12s ease-in-out infinite;
}

.vision-banner-orb--1 {
  width: 200px;
  height: 200px;
  top: 12%;
  right: 8%;
  background: rgba(236, 72, 153, 0.5);
}

.vision-banner-orb--2 {
  width: 160px;
  height: 160px;
  bottom: 20%;
  left: 10%;
  background: rgba(6, 182, 212, 0.4);
  animation-delay: -6s;
}

.vision-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  color: #fff;
}

.vision-banner-mark {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
}

.vision-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.vision-banner-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.vision-banner-sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 280px;
  margin-bottom: 24px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.vision-banner:hover .btn-read-more {
  background: #fff;
  color: #0b0814;
  border-color: #fff;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Vision category cards */
.vision-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px -8px rgba(15, 10, 30, 0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s ease;
}

.vision-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(124, 58, 237, 0.22);
}

.vision-bento-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  position: relative;
  z-index: 2;
}

.vision-bento-card-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1f2937;
  line-height: 1.3;
}

.vision-bento-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #0f172a;
  color: #fff;
  transition: transform 0.35s ease, background 0.35s ease;
}

.vision-bento-card:hover .vision-bento-card-arrow {
  transform: translateX(3px);
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.vision-bento-card-stage {
  position: relative;
  flex: 1;
  min-height: 170px;
  margin: 0 12px 12px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.vision-bento-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.vision-bento-card:hover .vision-bento-card-glow {
  opacity: 1;
}

.vision-bento-card-img {
  position: relative;
  z-index: 1;
  width: 88%;
  max-height: 155px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.vision-bento-card:hover .vision-bento-card-img {
  transform: translateY(-6px) scale(1.04);
}

.vision-bento-card--fashion .vision-bento-card-glow {
  background:
    radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.28), transparent 55%),
    linear-gradient(165deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
}

.vision-bento-card--adventure .vision-bento-card-glow {
  background:
    radial-gradient(circle at 70% 15%, rgba(249, 115, 22, 0.25), transparent 50%),
    linear-gradient(165deg, #fff7ed 0%, #ffedd5 50%, #fdba74 100%);
}

.vision-bento-card--lifestyle .vision-bento-card-glow {
  background:
    radial-gradient(circle at 50% 10%, rgba(124, 58, 237, 0.22), transparent 55%),
    linear-gradient(165deg, #f5f3ff 0%, #ede9fe 50%, #ddd6fe 100%);
}

.vision-bento-card--productivity .vision-bento-card-glow {
  background:
    radial-gradient(circle at 40% 15%, rgba(6, 182, 212, 0.22), transparent 55%),
    linear-gradient(165deg, #ecfeff 0%, #cffafe 50%, #a5f3fc 100%);
}

/* ── Collabs scroll ── */
.collabs-section {
  padding: 56px 0 64px;
  background: #fff;
  overflow: hidden;
}

.collabs-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #0b0814;
}

.collabs-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 24px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.collabs-scroll::-webkit-scrollbar {
  display: none;
}

.collab-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4.2;
  background: #111;
}

.collab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collab-card:hover img {
  transform: scale(1.06);
}

.collab-card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  color: #fff;
  z-index: 2;
}

.collab-product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.collab-product-sub {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.4;
}

.collab-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.collab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.collab-btn--solid {
  background: #fff;
  color: #0a0a0a;
}

.collab-btn--solid:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
}

.collab-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.collab-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.collab-card--dark .collab-product-name {
  color: #fff;
}

/* ── Newsletter CTA ── */
.newsletter-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0a1628 0%, #0d4f3c 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,98,.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-mark {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 14px;
  box-shadow: 0 10px 28px -10px rgba(201, 169, 98, 0.45);
}

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-inner p {
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 14px;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus {
  outline: none;
  border-color: rgba(201,169,98,.5);
  background: rgba(255,255,255,.12);
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 64px 0;
  background: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
  transition: all .4s;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: rgba(13,79,60,.08);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #1a7a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray-500);
}

/* ── Best sellers section bg ── */
.section-best-sellers {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  padding-top: 72px;
}

.section-offers {
  background: var(--surface);
  position: relative;
}

.section-offers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.08), transparent);
}

/* ── Featured launch premium ── */
.featured-launch-card {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.featured-launch-image {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d4a3e 50%, #1a1a1a 100%) !important;
  position: relative;
}

.featured-launch-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,169,98,.12) 0%, transparent 50%);
}

/* ── Promise section rich ── */
.promise-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  position: relative;
}

.promise-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-carousel-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .spotlight-product { display: none; }
  .spotlight-banner-content { max-width: 100%; }
  .audio-bento { grid-template-columns: 1fr; }
  .audio-bento-promo { min-height: 400px; }
  .audio-bento-promo-visual { width: 48%; }
  .audio-promo-float--1 { width: 42%; right: 34%; }
  .audio-promo-float--2 { width: 48%; }
  .audio-promo-float--3 { width: 36%; right: 22%; }
  .vision-layout { grid-template-columns: 1fr; }
  .vision-banner { min-height: 400px; }
  .vision-banner-content { min-height: 400px; }
  .partnership-inner { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .partnership-visual--left,
  .partnership-visual--right { justify-content: center; }
  .partnership-visual--left img { margin-bottom: 0; max-height: 180px; }
  .partnership-visual--right img { max-height: 160px; }
}

@media (max-width: 640px) {
  .hero-carousel { height: 480px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .spotlight-banner { margin: 0 16px; border-radius: 24px; }
  .spotlight-banner-content { padding: 32px 28px; }
  .audio-bento-grid,
  .vision-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .audio-bento-card,
  .vision-bento-card { min-height: 210px; }
  .audio-bento-card-stage,
  .vision-bento-card-stage { min-height: 140px; margin: 0 10px 10px; }
  .audio-bento-card-img,
  .vision-bento-card-img { max-height: 120px; }
  .vision-banner { min-height: 360px; }
  .vision-banner-content { min-height: 360px; padding: 32px 24px; }
  .vision-banner-sub { max-width: 100%; }
  .audio-bento-promo { min-height: 420px; padding: 32px 24px; }
  .audio-bento-promo-content { max-width: 100%; }
  .audio-bento-promo-sub { max-width: 100%; }
  .audio-bento-promo-visual {
    position: relative;
    width: 100%;
    height: 220px;
    top: auto;
    transform: none;
    margin-top: 28px;
  }
  .audio-promo-float--1 { width: 38%; top: 0; right: 50%; }
  .audio-promo-float--2 { width: 44%; top: 10%; right: 4%; }
  .audio-promo-float--3 { width: 34%; bottom: 0; right: 38%; }
  .collab-card { flex: 0 0 220px; }
  .partnership-logos { gap: 10px; }
}
