/* ============================================
   3 Monkees — Interactive Landing Page
   Spec: PDF Brief · Orbtes-inspired · Nata Sans
   ============================================ */

:root {
  --font: 'Nata Sans', sans-serif;
  --bg: #fafafa;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --accent: #e85d04;
  --accent-dark: #d45203;
  --border: #e5e7eb;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(232, 93, 4, 0.15);
  --topbar-h: 38px;
  --header-h: 116px;
  --header-offset: calc(var(--header-h) + 12px);
  --above-hero: calc(var(--topbar-h) + var(--header-h) + 28px);
  --container: 1200px;
  --shell-max: 1400px;
  --shell-padding: 32px;
  --mobile-nav-h: 84px;
  --hero-radius: 40px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  margin: 0 auto;
  overflow-x: clip;
  padding: 0 32px;
}

/* ---- Scroll reveal (overflow-safe) ---- */
.fade-up,
.fade-up-stagger {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
}

.fade-up-stagger {
  transform: translate3d(0, 12px, 0);
}

.fade-up.visible,
.fade-up-stagger.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-up-stagger {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Loader ---- */
body.is-loading { overflow: hidden; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.loader-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 80%);
}

.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.loader-orb--1 {
  top: -10%;
  right: 10%;
  width: 360px;
  height: 360px;
  background: rgba(232, 93, 4, 0.18);
  animation: loaderOrbDrift1 8s ease-in-out infinite;
}

.loader-orb--2 {
  bottom: -5%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: rgba(14, 165, 233, 0.14);
  animation: loaderOrbDrift2 9s ease-in-out infinite;
}

@keyframes loaderOrbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-24px, 18px); }
}

@keyframes loaderOrbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -16px); }
}

.loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: min(320px, calc(100vw - 48px));
  padding: 36px 28px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.page-loader.is-done .loader-inner {
  animation: loaderCardOut 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderCardOut {
  to { opacity: 0; transform: scale(0.97) translateY(-8px); }
}

.loader-ring-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.loader-ring--1 {
  border-top-color: var(--accent);
  border-right-color: rgba(232, 93, 4, 0.25);
  animation: loaderSpin 1.1s linear infinite;
}

.loader-ring--2 {
  inset: 8px;
  border-bottom-color: #0ea5e9;
  border-left-color: rgba(14, 165, 233, 0.2);
  animation: loaderSpin 1.6s linear infinite reverse;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.loader-logo-img {
  height: 36px;
  width: auto;
  animation: loaderLogoFloat 2.4s ease-in-out infinite;
}

@keyframes loaderLogoFloat {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-3px); opacity: 0.92; }
}

.loader-meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loader-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  min-height: 1.2em;
  transition: opacity 0.25s ease;
}

.loader-track {
  position: relative;
  height: 5px;
  border-radius: 100px;
  background: #e2e8f0;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0ea5e9, var(--accent));
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: loaderShimmer 1.4s ease-in-out infinite;
}

@keyframes loaderShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loader-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loader-pct {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.loader-dots {
  display: inline-flex;
  gap: 5px;
}

.loader-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: loaderDotBounce 1.2s ease-in-out infinite;
}

.loader-dots i:nth-child(2) { animation-delay: 0.15s; }
.loader-dots i:nth-child(3) { animation-delay: 0.3s; }

@keyframes loaderDotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.logo-img {
  height: 100px;
  min-height: 100px;
  width: auto;
}

/* ---- Top Bar + Sticky Header ---- */
.top-bar {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  margin: 0px 32px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.top-bar-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}

.top-bar a:hover { color: #fff; }

.top-bar-sep { opacity: 0.35; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px var(--shell-padding) 0;
  transition: var(--transition);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header.scrolled .header-inner {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.header-logo {
  justify-self: start;
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.nav-link {
  padding: 8px 25px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover { background: #f3f4f6; color: var(--text); }

.nav-link.active {
  color: var(--text);
  background: #f3f4f6;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  justify-self: end;
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}

.header-icon-btn:hover {
  background: #f3f4f6;
}

.btn-buy {
  display: inline-flex;
  padding: 11px 35px;
  background: #0a0a0a;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  margin-left: 4px;
}

.btn-buy:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

/* ---- Mobile Bottom Nav ---- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 16px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.mobile-bottom-nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 58px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(16px);
  overflow: visible;
}

.mobile-nav-item,
.mobile-nav-buy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 0;
  color: #6b7280;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.mobile-nav-icon svg {
  width: 22px;
  height: 22px;
}

.mobile-nav-label {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mobile-nav-item.active {
  color: var(--accent);
}

.mobile-nav-item.active .mobile-nav-icon svg {
  stroke: var(--accent);
}

.mobile-nav-item.is-pressed,
.mobile-nav-item:active {
  transform: scale(0.96);
}

.mobile-nav-buy {
  position: relative;
  color: var(--accent);
}

.mobile-nav-buy::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  visibility: hidden;
}

.mobile-nav-buy-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f97316 0%, var(--accent) 55%, #c2410c 100%);
  color: #fff;
  border: 4px solid #fff;
  box-shadow: 0 10px 28px rgba(232, 93, 4, 0.42), 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translate(-50%, calc(-50% - 18px));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-nav-buy-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-buy:hover .mobile-nav-buy-btn {
  transform: translate(-50%, calc(-50% - 20px)) scale(1.03);
  box-shadow: 0 14px 32px rgba(232, 93, 4, 0.48), 0 6px 16px rgba(0, 0, 0, 0.14);
}

.mobile-nav-buy:active .mobile-nav-buy-btn {
  transform: translate(-50%, calc(-50% - 16px)) scale(0.97);
}

.mobile-nav-label--buy {
  margin-top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---- Hero Banner (Contained / Orisa-style) ---- */
.hero {
  padding: 16px var(--shell-padding) 40px;
  background: var(--bg);
}

.hero-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: calc(100vh - var(--above-hero) - 40px);
  min-height: 580px;
  max-height: 820px;
  border-radius: var(--hero-radius);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active { opacity: 1; visibility: visible; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-slide.active img { transform: scale(1); }

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(232, 93, 4, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 55%);
}

.hero-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 48px 0;
  color: #fff;
  pointer-events: none;
}

.hero-ui a,
.hero-ui button { pointer-events: auto; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
  width: 100%;
}

.hero-copy { max-width: 560px; }

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}

.hero-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-title.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.hero-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-top: 8px;
}

.hero-cards {
  display: flex;
  gap: 12px;
}

.hero-card {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 340px;
}

.hero-tag {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.hero-tag:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.hero-brand {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
  margin: auto 0 0;
  padding: 24px 0 8px;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
}

.hero-brand sup {
  font-size: 0.25em;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
  vertical-align: super;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 -48px;
  width: auto;
}

.hero-feature {
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
  text-align: center;
}

.hero-feature:last-child { border-right: none; }

.hero-feature:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-nav {
  position: absolute;
  bottom: 88px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.hero-arrow svg {
  display: block;
  flex-shrink: 0;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.06);
}

.hero-dots { display: flex; gap: 6px; }

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-period {
  font-size: 16px;
  color: var(--text-muted);
}

/* ---- Premium Section System ---- */
.section-premium {
  position: relative;
  overflow: hidden;
}

.section-premium .container {
  position: relative;
  z-index: 1;
}

.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  text-align: left;
  margin-bottom: 48px;
  text-align: center;
}

.section-header-copy {
  max-width: 560px;
}

.section-stat-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.section-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.95);
  backdrop-filter: blur(12px);
  min-width: 120px;
}

.section-stat-pill--accent {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
  border-color: rgba(255, 255, 255, 0.08);
}

.section-stat-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.section-stat-pill--accent .section-stat-value {
  color: #fbbf24;
}

.section-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-stat-pill--accent .section-stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.premium-board {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.premium-board-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.premium-board-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-board-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.premium-board-chip {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.16);
}

.premium-board-hint {
  font-size: 12px;
  color: var(--text-muted);
}

.premium-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: outletLivePulse 2s ease-out infinite;
}

/* ---- Section Visual Layout ---- */
.section {
  position: relative;
  overflow: hidden;
}

.section-bg-decor {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-bg-decor--right {
  left: auto;
  right: -120px;
}



.section-visual { position: sticky; top: calc(var(--header-offset) + 24px); }

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  max-height: 480px;
}

.visual-card--spender { aspect-ratio: 3/4; }

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visual-card:hover .visual-img { transform: scale(1.05); }

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.visual-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.visual-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.visual-desc {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

/* ---- Top Spender Premium ---- */
.section-spender {
  background: linear-gradient(180deg, #fafafa 0%, #f8fafc 50%, #fafafa 100%);
}

.section-spender .section-header--split {
  align-items: flex-start;
}

.section-spender .section-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.section-spender .section-title {
  font-size: clamp(30px, 5vw, 40px);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.section-spender .section-period {
  font-size: 14px;
  line-height: 1.5;
}

.section-spender .section-stat-pills {
  width: 100%;
  max-width: 360px;
}

.section-spender .section-stat-pill {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.section-spender .spender-podium-board {
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.section-spender .premium-board-topbar {
  padding: 18px 22px;
}

.section-spender .premium-live-dot {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.spender-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.spender-bg-glow--1 {
  top: -5%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.12) 0%, transparent 70%);
}

.spender-bg-glow--2 {
  bottom: 0;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 72%);
}

.spender-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 10%, transparent 75%);
  pointer-events: none;
}

.spender-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.spender-podium-board {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.spender-podium-board .spender-podium-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  min-height: 340px;
  padding: 24px 20px 8px;
  overflow: hidden;
}

.spender-podium-stage-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spender-podium-stage-rays {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 88%, rgba(255, 140, 50, 0.07) 0%, transparent 48%),
    linear-gradient(rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
}

.spender-podium-stage-glow {
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: 280px;
  height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 157, 45, 0.2) 0%, rgba(255, 95, 1, 0.08) 45%, transparent 72%);
}

.spender-podium-winner-glow {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 72px;
  height: 58%;
  transform: translateX(-50%);
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255, 180, 100, 0.42) 0%, rgba(255, 120, 40, 0.18) 55%, transparent 100%);
  filter: blur(10px);
  opacity: 0.9;
}

.spender-podium-board .spender-podium {
  position: relative;
  z-index: 2;
  padding: 0 4px;
  margin-bottom: 0;
}

.spender-podium-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
}

.spender-podium-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 10px;
  background: #fff;
  text-align: center;
}

.spender-podium-stat:not(:last-child) {
  border-right: 1px solid rgba(226, 232, 240, 0.95);
}

.spender-podium-stat--accent {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}

.spender-podium-stat-value {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}

.spender-podium-stat--accent .spender-podium-stat-value {
  color: var(--accent);
}

.spender-podium-stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

.spender-leaderboard-board {
  display: flex;
  flex-direction: column;
}

.spender-leaderboard-board .spender-list {
  padding: 16px;
  flex: 1;
}

/* ---- Podium ---- */
.spender-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
}

.podium-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 148px;
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  padding: 8px 6px 0;
  border-radius: 20px 20px 0 0;
  transition: var(--transition);
}

.podium-item:hover,
.podium-item.active {
  background: linear-gradient(180deg, rgba(255, 157, 45, 0.1) 0%, rgba(255, 95, 1, 0.03) 100%);
}

.podium-item.active .podium-medal {
  transform: scale(1.05);
}

.podium-hero {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.podium-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.podium-medal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.podium-item--1 .podium-medal {
  width: 52px;
  height: 52px;
  font-size: 18px;
  box-shadow: 0 10px 28px rgba(251, 191, 36, 0.28);
}

.podium-item--1 .podium-medal { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.podium-item--2 .podium-medal { background: linear-gradient(135deg, #d1d5db, #9ca3af); }
.podium-item--3 .podium-medal { background: linear-gradient(135deg, #d97706, #b45309); }

.podium-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.podium-amount {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 8px;
}

.podium-pedestal {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.podium-pedestal-top {
  height: 6px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.1));
}

.podium-pedestal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, #ff9d2d 0%, #ff7a1a 48%, #ff5f01 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255, 95, 1, 0.18);
}

.podium-pedestal-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.28) 0%, transparent 42%, rgba(0, 0, 0, 0.06) 100%);
  pointer-events: none;
}

.podium-pedestal-rank {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  line-height: 1;
  padding: 10px 0;
}

.podium-item--1 .podium-pedestal-body {
  height: 128px;
  background: linear-gradient(180deg, #ffb347 0%, #ff9d2d 38%, #ff5f01 100%);
  box-shadow: 0 10px 28px rgba(255, 120, 40, 0.28);
}

.podium-item--2 .podium-pedestal-body {
  height: 92px;
  opacity: 0.95;
  background: linear-gradient(180deg, #ffc078 0%, #ff9d2d 50%, #ff6b12 100%);
}

.podium-item--3 .podium-pedestal-body {
  height: 68px;
  opacity: 0.9;
  background: linear-gradient(180deg, #ffd4a8 0%, #ff9d2d 55%, #ff5f01 100%);
}

.podium-item--1 .podium-pedestal-rank { font-size: 34px; }
.podium-item--2 .podium-pedestal-rank { font-size: 28px; }
.podium-item--3 .podium-pedestal-rank { font-size: 24px; }

.podium-item.active .podium-pedestal-body {
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.45), 0 12px 28px rgba(232, 93, 4, 0.22);
}

/* ---- Top Spender ---- */
.spender-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-x: clip;
}

.spender-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.spender-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  border-radius: 3px 0 0 3px;
  transition: var(--transition);
}

.spender-card:hover {
  border-color: rgba(232, 93, 4, 0.2);
  background: #fffdfb;
}

.spender-card:hover .spender-card-accent,
.spender-card.active .spender-card-accent {
  background: linear-gradient(180deg, var(--accent), #f59e0b);
}

.spender-card.active {
  border-color: rgba(232, 93, 4, 0.28);
  background: linear-gradient(135deg, #fff8f3, #ffffff);
}

.spender-rank {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.spender-rank--1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #fff; }
.spender-rank--2 { background: linear-gradient(135deg, #d1d5db, #9ca3af); color: #fff; }
.spender-rank--3 { background: linear-gradient(135deg, #d97706, #b45309); color: #fff; }
.spender-rank--default { background: #f3f4f6; color: var(--text); }

.spender-info { flex: 1; min-width: 0; }

.spender-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.spender-amount {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.spender-bar-wrap {
  flex: 2;
  min-width: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.spender-pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  min-width: 36px;
  text-align: right;
}

/* ---- Bar Charts ---- */
.chart-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 24px 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.chart-card--interactive:hover {
  box-shadow: var(--shadow-hover);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  height: 300px;
  padding-top: 48px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 110px;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.bar-item:hover .bar-column {
  filter: brightness(1.08);
  transform: scaleY(1.02);
  transform-origin: bottom;
}

.bar-item:hover .bar-thumb {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.bar-item:hover .bar-tooltip { opacity: 1; visibility: visible; }

.bar-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2;
}

.bar-column-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.bar-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-shrink: 0;
}

.bar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-column {
  width: 48px;
  border-radius: var(--radius-sm) var(--radius-sm) 4px 4px;
  background: linear-gradient(180deg, var(--accent), #f59e0b);
  height: 0;
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
  position: relative;
}

.bar-value {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease 1s;
}

.bar-column.animated .bar-value { opacity: 1; }

.bar-label {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  line-height: 1.3;
}

/* ---- Top Product Showcase ---- */
.section-product {
  position: relative;
  overflow: hidden;
}

.product-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.product-bg-glow--1 {
  top: 8%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.12) 0%, transparent 70%);
}

.product-bg-glow--2 {
  bottom: 5%;
  left: -6%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 72%);
}

.product-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 10%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.section-product .container {
  position: relative;
  z-index: 1;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 32px;
}

.product-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  overflow: hidden;
  min-height: 380px;
}

.product-spotlight-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.product-spotlight-image {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  min-height: 0;
  align-self: stretch;
  background: linear-gradient(160deg, #fff8f3 0%, #ffffff 100%);
  z-index: 1;
}

.spotlight-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-spotlight:hover .spotlight-img {
  transform: scale(1.03);
}

.product-spotlight-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  z-index: 1;
}

.spotlight-rank {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 14px;
}

.spotlight-name {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.spotlight-ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 8px;
}

.spotlight-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}

.ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.spotlight-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.spotlight-dots {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.spotlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  padding: 0;
  transition: var(--transition);
}

.spotlight-dot:hover {
  background: rgba(232, 93, 4, 0.4);
  transform: scale(1.2);
}

.spotlight-dot.active {
  width: 28px;
  border-radius: 100px;
  background: var(--accent);
}

/* Rank Panel */
.product-rank-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rank-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
}

.rank-panel-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.product-rank-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px;
  gap: 8px;
  overflow-x: clip;
}

.product-rank-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
}

.product-rank-item:hover {
  background: #fff8f3;
  border-color: rgba(232, 93, 4, 0.12);
}

.product-rank-item.active {
  background: linear-gradient(135deg, #fff8f3, #ffffff);
  border-color: rgba(232, 93, 4, 0.25);
}

.rank-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.product-rank-item.active .rank-num {
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #fff;
}

.rank-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
}

.rank-body {
  flex: 1;
  min-width: 0;
}

.rank-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.rank-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f59e0b);
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.rank-pct {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  min-width: 42px;
  text-align: right;
  flex-shrink: 0;
}

/* Product Marketplace Grid */
.product-gallery-board {
  margin-top: 8px;
}

.product-gallery-slider {
  overflow: hidden;
}

.product-gallery-board .product-marketplace-list {
  padding: 20px;
}

.product-marketplace-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow-x: clip;
}

.product-marketplace-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: var(--transition);
}

.product-marketplace-item:hover {
  border-color: rgba(232, 93, 4, 0.25);
  background: linear-gradient(180deg, #fff8f3, #ffffff);
  transform: translateY(-3px);
}

.product-marketplace-img {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(160deg, #fff8f3, #ffffff);
  overflow: hidden;
}

.product-marketplace-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-marketplace-item:hover .product-marketplace-thumb {
  transform: scale(1.06);
}

.product-marketplace-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  flex: 1;
}

.product-marketplace-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.product-marketplace-channel {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.product-marketplace-channel--shopee {
  background: #ffedd5;
  color: #ea580c;
}

.product-marketplace-channel--tokopedia {
  background: #d1fae5;
  color: #059669;
}

.product-marketplace-channel--website {
  background: #ede9fe;
  color: #7c3aed;
}

.product-marketplace-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.product-marketplace-price {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.product-marketplace-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.product-marketplace-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  padding: 9px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, #f97316, var(--accent));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 16px rgba(232, 93, 4, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.product-marketplace-shop svg {
  width: 14px;
  height: 14px;
}

.product-marketplace-item:hover .product-marketplace-shop {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(232, 93, 4, 0.32);
  filter: brightness(1.05);
}

/* ---- Top Outlet Hub (Premium) ---- */
.section-outlet {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 48%, #fafafa 100%);
}

.outlet-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.outlet-bg-glow--1 {
  top: -8%;
  right: -6%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.16) 0%, transparent 70%);
}

.outlet-bg-glow--2 {
  bottom: 5%;
  left: -8%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 72%);
}

.outlet-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 10%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.section-outlet .container {
  position: relative;
  z-index: 1;
}

.outlet-section-header {
  margin-bottom: 40px;
}

.outlet-header-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.outlet-hub {
  display: flex;
  flex-direction: column;
}

.outlet-hub-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

/* Map Board */
.outlet-map-board {
  position: relative;
  min-height: 560px;
}

.outlet-map-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(56, 189, 248, 0.12), transparent 60%),
    linear-gradient(165deg, #0b1220 0%, #111827 42%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.outlet-map-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.45), rgba(255, 255, 255, 0.06) 40%, rgba(251, 146, 60, 0.35));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.outlet-map-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.outlet-map-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.outlet-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: outletLivePulse 2s ease-out infinite;
}

@keyframes outletLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.outlet-map-topbar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.outlet-map-chip {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.outlet-map-scene-wrap {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.outlet-map-scene {
  position: relative;
  flex: 1;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 4px;
}

.outlet-map-frame {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 1000 / 368;
  z-index: 1;
  margin: auto;
}

.outlet-map-indonesia-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 16px 40px rgba(2, 8, 23, 0.55));
}

.outlet-map-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.outlet-map-orb--1 {
  width: 260px;
  height: 260px;
  top: 8%;
  right: 8%;
  background: rgba(14, 165, 233, 0.22);
}

.outlet-map-orb--2 {
  width: 200px;
  height: 200px;
  bottom: 18%;
  left: 10%;
  background: rgba(251, 146, 60, 0.16);
}

.outlet-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.outlet-map-line {
  stroke: rgba(56, 189, 248, 0.28);
  stroke-width: 1.25;
  stroke-dasharray: 5 7;
  animation: lineDash 14s linear infinite;
}

.outlet-map-line--callout {
  stroke: rgba(251, 191, 36, 0.55);
  stroke-width: 1;
  stroke-dasharray: 3 5;
  animation: none;
}

@keyframes lineDash {
  to { stroke-dashoffset: -120; }
}

.outlet-map-pins {
  position: absolute;
  inset: 0;
}

.outlet-map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
  width: 0;
  height: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.outlet-map-pin.active { z-index: 5; }
.outlet-map-pin.hovered { z-index: 4; }

.outlet-pin-pulse {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.3);
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
  pointer-events: none;
}

.outlet-map-pin.active .outlet-pin-pulse,
.outlet-map-pin.hovered .outlet-pin-pulse {
  opacity: 1;
  transform: scale(1);
  animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}

.outlet-pin-dot {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc, #0ea5e9);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2), 0 4px 14px rgba(14, 165, 233, 0.45);
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.outlet-pin-dot svg { display: none; }

.outlet-map-pin.active .outlet-pin-dot,
.outlet-map-pin.hovered .outlet-pin-dot {
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
}

.outlet-map-pin.active .outlet-pin-dot {
  background: linear-gradient(135deg, #fbbf24, var(--accent));
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2), 0 6px 20px rgba(232, 93, 4, 0.5);
}

.outlet-pin-callout {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, calc(-100% - 14px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
  white-space: nowrap;
}

.outlet-map-pin.active .outlet-pin-callout,
.outlet-map-pin.hovered .outlet-pin-callout {
  opacity: 1;
  visibility: visible;
}

.outlet-pin-label {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  padding: 4px 9px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  letter-spacing: 0.02em;
  line-height: 1;
}

.outlet-pin-pct {
  font-size: 10px;
  font-weight: 700;
  color: #fde68a;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.32);
  line-height: 1;
}

.outlet-map-pin.active .outlet-pin-pct {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.22);
  border-color: rgba(251, 191, 36, 0.4);
}

/* Floating Detail Card */
.outlet-detail-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 8px 16px 16px;
  flex-shrink: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.outlet-detail-card.is-updating {
  opacity: 0.88;
  transform: translateY(4px);
}

.outlet-detail-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, transparent 38%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.outlet-detail-visual {
  position: relative;
  min-height: 120px;
  overflow: hidden;
}

.outlet-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 6s ease;
}

.outlet-detail-card:hover .outlet-detail-img {
  transform: scale(1.08);
}

.outlet-detail-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(15, 23, 42, 0.85) 100%);
}

.outlet-detail-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #fbbf24, var(--accent));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  z-index: 2;
}

.outlet-detail-content {
  position: relative;
  z-index: 2;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outlet-detail-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 4px;
}

.outlet-detail-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.outlet-detail-name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 3px;
  color: #fff;
}

.outlet-detail-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.outlet-detail-growth {
  flex-shrink: 0;
  padding: 5px 10px;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.outlet-detail-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
}

.outlet-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.outlet-metric-ring {
  position: relative;
  width: 64px;
  height: 64px;
}

.outlet-metric-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.outlet-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 6;
}

.outlet-ring-fill {
  fill: none;
  stroke: #38bdf8;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5));
}

.outlet-metric-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.outlet-metric-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Compare Board */
.outlet-compare-board {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  backdrop-filter: blur(16px);
  padding: 26px;
  min-height: 560px;
}

.outlet-compare-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.outlet-compare-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0ea5e9;
  margin-bottom: 6px;
}

.outlet-compare-head h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.outlet-compare-head p {
  font-size: 13px;
  color: var(--text-muted);
}

.outlet-compare-nav {
  display: flex;
  gap: 8px;
}

.outlet-compare-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  transition: var(--transition);
}

.outlet-compare-btn:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
  background: #f0f9ff;
  transform: translateY(-1px);
}

.outlet-compare-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow-x: clip;
  padding-inline: 1px;
}

.outlet-compare-row {
  position: relative;
  display: grid;
  grid-template-columns: 34px 52px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px 14px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(248, 250, 252, 0.9);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.outlet-compare-accent {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: transparent;
  transition: var(--transition);
}

.outlet-compare-row:hover {
  background: #fff;
  border-color: rgba(14, 165, 233, 0.18);
}

.outlet-compare-row.active {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-color: rgba(14, 165, 233, 0.28);
}

.outlet-compare-row.active .outlet-compare-accent {
  background: linear-gradient(180deg, #38bdf8, var(--accent));
}

.outlet-compare-rank {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #e2e8f0;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.outlet-compare-row.active .outlet-compare-rank {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fbbf24;
}

.outlet-compare-thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid #fff;
}

.outlet-compare-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.outlet-compare-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.outlet-compare-region {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.outlet-compare-growth {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 100px;
}

.outlet-compare-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 100px;
  overflow: hidden;
}

.outlet-compare-fill {
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8);
  border-radius: 100px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.outlet-compare-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: outletBarShine 2.4s ease-in-out infinite;
}

@keyframes outletBarShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.outlet-compare-row.active .outlet-compare-fill {
  background: linear-gradient(90deg, var(--accent), #fbbf24);
}

.outlet-compare-right {
  text-align: right;
  min-width: 96px;
}

.outlet-compare-pct {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #0ea5e9;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.outlet-compare-row.active .outlet-compare-pct {
  color: var(--accent);
}

.outlet-compare-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.outlet-compare-foot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: outletLivePulse 2s ease-out infinite;
}

/* ---- Mini Cards (Product / Outlet) ---- */
.product-cards,
.outlet-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.mini-card:hover {
  border-color: rgba(232, 93, 4, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.mini-card-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.mini-card--outlet .mini-card-img {
  border-radius: var(--radius-sm);
}

.mini-card-body { min-width: 0; }

.mini-card-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card-stat {
  font-size: 12px;
  color: var(--text-muted);
}

.mini-card-pct {
  font-weight: 700;
  color: var(--accent);
}

.spender-bar-bg {
  flex: 1;
  height: 10px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.spender-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), #f59e0b);
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Purchase Channel Premium ---- */
.section-channel {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.channel-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.channel-bg-glow--1 {
  top: -8%;
  right: 5%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
}

.channel-bg-glow--2 {
  bottom: -5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.08) 0%, transparent 72%);
}

.channel-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 10%, transparent 75%);
  pointer-events: none;
}

.channel-hub {
  position: relative;
}

.channel-hub-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.channel-showcase {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  min-height: 100%;
}

.channel-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.channel-showcase:hover .channel-showcase-img {
  transform: scale(1.04);
}

.channel-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.72) 100%),
    linear-gradient(135deg, rgba(232, 93, 4, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.channel-showcase-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 32px 28px;
  color: #fff;
}

.channel-showcase-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-showcase-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.channel-showcase-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
  max-width: 34ch;
}

.channel-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.channel-showcase-tags li {
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 600;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.channel-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.channel-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.channel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.channel-card:hover .channel-card-img {
  transform: scale(1.06);
}

.channel-card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.35) 100%);
  pointer-events: none;
}

.channel-card-media-overlay--tokopedia {
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.08) 0%, rgba(5, 150, 105, 0.28) 100%);
}

.channel-card-media-overlay--shopee {
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.08) 0%, rgba(234, 88, 12, 0.28) 100%);
}

.channel-card-media-overlay--whatsapp {
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.08) 0%, rgba(22, 163, 74, 0.3) 100%);
}

.channel-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 18px 22px;
  flex: 1;
}

.channel-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.5) 0%, transparent 42%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.channel-card:hover {
  border-color: rgba(232, 93, 4, 0.2);
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.channel-card:hover .channel-card-shine {
  opacity: 1;
}

.channel-card--featured {
  border-color: rgba(22, 163, 74, 0.25);
  background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.channel-card--featured:hover {
  border-color: rgba(22, 163, 74, 0.4);
}

.channel-card--btn { font: inherit; color: inherit; }

.channel-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.channel-badge--live {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.2);
}

.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.35s ease;
}

.channel-card:hover .channel-icon {
  transform: scale(1.06);
}

.channel-icon svg { width: 32px; height: 32px; }

.channel-icon--web { background: #e0e7ff; color: #4f46e5; }
.channel-icon--tokopedia { background: #d1fae5; color: #059669; }
.channel-icon--shopee { background: #ffedd5; color: #ea580c; }
.channel-icon--whatsapp { background: #dcfce7; color: #16a34a; }

.channel-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.channel-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex: 1;
  line-height: 1.45;
}

.channel-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.channel-card:hover .channel-cta { letter-spacing: 0.5px; }

/* ---- Footer ---- */
.footer {
  position: relative;
  background: #030303;
  color: #fff;
  padding: 40px 0 40px;
  overflow: hidden;
  isolation: isolate;
  --footer-fx: 50%;
  --footer-fy: 42%;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 93, 4, 0.15) 18%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(232, 93, 4, 0.15) 82%,
    transparent 100%
  );
}

.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-bg-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(28, 6, 6, 0.95) 0%, rgba(8, 2, 2, 0.6) 38%, transparent 68%),
    linear-gradient(180deg, #000000 0%, #040404 45%, #080202 100%);
}

.footer-bg-aurora {
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(ellipse 42% 36% at 22% 68%, rgba(232, 93, 4, 0.22) 0%, transparent 68%),
    radial-gradient(ellipse 38% 32% at 78% 72%, rgba(127, 18, 18, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 55% 40% at 50% 88%, rgba(251, 146, 60, 0.14) 0%, transparent 72%);
  filter: blur(48px);
  opacity: 0.85;
  animation: footerAurora 14s ease-in-out infinite alternate;
}

.footer-bg-aurora--2 {
  inset: -20% -30%;
  background:
    radial-gradient(ellipse 35% 30% at 65% 55%, rgba(220, 38, 38, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 30% 28% at 30% 78%, rgba(249, 115, 22, 0.12) 0%, transparent 72%);
  animation: footerAurora2 18s ease-in-out infinite alternate;
  opacity: 0.7;
}

.footer-bg-spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px circle at var(--footer-fx) var(--footer-fy), rgba(255, 140, 60, 0.2) 0%, rgba(232, 93, 4, 0.08) 28%, transparent 58%);
  opacity: 0;
  transition: opacity 0.45s ease;
  mix-blend-mode: screen;
}

.footer.is-active .footer-bg-spotlight,
.footer:hover .footer-bg-spotlight {
  opacity: 1;
}

.footer-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image:
    radial-gradient(ellipse 95% 85% at 50% 55%, #000 12%, transparent 80%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  opacity: 0.55;
  transform: perspective(800px) rotateX(58deg) scale(1.35) translateY(-8%);
  transform-origin: 50% 0%;
}

.footer-bg-beam {
  position: absolute;
  top: 28%;
  left: -40%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 140, 0.55), transparent);
  box-shadow: 0 0 24px rgba(255, 140, 60, 0.35);
  opacity: 0.5;
  animation: footerBeam 9s linear infinite;
}

.footer-bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.footer-bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 50% 48%, transparent 32%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 24%, transparent 70%, rgba(0, 0, 0, 0.55) 100%);
}

@keyframes footerAurora {
  0% { transform: translate3d(-2%, 0, 0) scale(1); }
  100% { transform: translate3d(3%, -4%, 0) scale(1.08); }
}

@keyframes footerAurora2 {
  0% { transform: translate3d(2%, 2%, 0) scale(1.02); }
  100% { transform: translate3d(-3%, -2%, 0) scale(1); }
}

@keyframes footerBeam {
  0% { transform: translateX(0) rotate(-8deg); opacity: 0; }
  12% { opacity: 0.55; }
  88% { opacity: 0.55; }
  100% { transform: translateX(380%) rotate(-8deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-bg-aurora,
  .footer-bg-beam { animation: none; }
  .footer-bg-spotlight { opacity: 0.45; }
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 0 28px;
}

.footer-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 8px 0 56px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer:hover .footer-logo-wrap {
  transform: translateY(-3px);
}

.footer-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 380px);
  height: 240px;
  transform: translate(-50%, -52%);
  background: radial-gradient(ellipse, rgba(255, 120, 50, 0.16) 0%, rgba(180, 30, 30, 0.08) 45%, transparent 72%);
  filter: blur(32px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.footer:hover .footer-logo-wrap::before {
  opacity: 1.2;
  transform: translate(-50%, -54%) scale(1.06);
}

.footer-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 24px rgba(255, 120, 60, 0.18));
  transition: filter 0.45s ease;
}

.footer:hover .footer-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 36px rgba(255, 140, 70, 0.32));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(232, 93, 4, 0.18);
  border-color: rgba(251, 146, 60, 0.45);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.28), 0 0 0 1px rgba(251, 146, 60, 0.12);
}

.footer-social-link:hover svg {
  transform: scale(1.08);
}

.footer-contact {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  min-width: 0;
}

.footer-contact-item {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-contact-item:hover {
  color: #fff;
}

/* ---- Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 24px;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.4s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover { background: var(--border); color: var(--text); }

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-outlets { display: flex; flex-direction: column; gap: 10px; }

.modal-outlet-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.modal-outlet-btn:hover {
  background: #fff3eb;
  color: var(--accent);
  transform: translateX(4px);
}

.modal-outlet-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-outlet-icon svg { width: 20px; height: 20px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  :root {
    --shell-padding: 24px;
  }

  .top-bar {
    margin: 0 24px;
  }

  .top-bar-inner {
    padding: 0 20px;
  }
  .nav-link { padding: 8px 10px; font-size: 13px; }
  .header-icon-btn { width: 36px; height: 36px; }
  .btn-buy { padding: 10px 18px; font-size: 13px; }

  .hero-ui { padding: 36px 32px 0; }
  .hero-features { margin: 0 -32px; }
  .hero-nav { left: 32px; bottom: 80px; }

  .section-split,
  .section-split--reverse {
    grid-template-columns: 1fr;
  }

  .section-split--reverse .section-visual,
  .section-split--reverse .section-content { order: unset; }

  .section-visual {
    position: relative;
    top: auto;
    max-width: 400px;
    margin: 0 auto 32px;
  }

  .visual-card { max-height: 360px; }

  .channel-hub-layout {
    grid-template-columns: 1fr;
  }

  .channel-showcase {
    min-height: 280px;
  }

  .channel-grid,
  .channel-grid--4 { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-copy { white-space: normal; }
  .footer-socials { flex: none; width: 100%; }
  .footer-contact { align-items: center; width: 100%; justify-content: center; }

  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .spender-hub-grid {
    grid-template-columns: 1fr;
  }

  .section-spender .section-header--split {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 28px;
  }

  .section-spender .section-stat-pills {
    max-width: none;
  }

  .section-spender .spender-podium-board {
    border-radius: 24px;
  }

  .spender-podium-board .spender-podium-stage {
    min-height: 320px;
    padding: 20px 16px 6px;
  }

  .spender-podium-winner-glow {
    width: 64px;
    height: 52%;
  }

  .spender-podium-foot {
    grid-template-columns: repeat(3, 1fr);
  }

  .spender-podium-stat {
    padding: 14px 8px;
  }

  .spender-podium-stat-value {
    font-size: 15px;
  }

  .spender-podium-stat-label {
    font-size: 8px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-marketplace-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-spotlight {
    min-height: auto;
  }

  .outlet-hub-grid {
    grid-template-columns: 1fr;
  }

  .outlet-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .outlet-map-board,
  .outlet-map-shell,
  .outlet-compare-board {
    min-height: auto;
  }

  .outlet-map-scene {
    min-height: 220px;
    padding: 10px 8px 4px;
  }

  .outlet-map-frame {
    width: 100%;
  }

  .outlet-detail-card {
    grid-template-columns: 110px 1fr;
    margin: 8px 12px 12px;
  }

  .outlet-detail-visual {
    min-height: 110px;
    max-height: none;
  }

  .outlet-compare-row {
    grid-template-columns: 30px 48px 1fr;
    gap: 10px;
  }

  .outlet-compare-right {
    grid-column: 2 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    text-align: left;
    margin-top: 4px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell-padding: 16px;
    --header-h: 112px;
    --header-offset: calc(var(--header-h) + 8px);
    --above-hero: calc(var(--topbar-h) + var(--header-h) + 20px);
  }

  .container {
    padding: 0 16px;
  }

  .top-bar {
    margin: 0 16px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
  }

  .header { padding: 8px 16px 0; }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 16px;
    height: var(--header-h);
    border-radius: 16px;
  }

  .header-logo { justify-self: center; }
  .nav { display: none; }
  .header-actions { display: none; }
  .mobile-bottom-nav { display: flex; }

  body {
    padding-bottom: calc(var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px));
  }

  .footer {
    padding-bottom: calc(24px + var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px));
  }

  .section-stat-pills {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section-stat-pill {
    flex: none;
    min-width: 0;
    width: 100%;
    padding: 12px 14px;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    padding: 0 12px;
    font-size: 10px;
  }

  .top-bar-contact .top-bar-sep,
  .top-bar-contact a:last-child { display: none; }

  .section-stat-value {
    font-size: 18px;
  }

  .section-spender .spender-leaderboard-board {
    display: none;
  }

  .hero { padding: 12px 16px 28px; }

  .hero-shell {
    min-height: 520px;
    max-height: none;
    height: calc(100vh - var(--above-hero) - 32px);
    border-radius: 28px;
  }

  .hero-ui { padding: 28px 24px 0; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-aside {
    align-items: flex-start;
  }

  .hero-tags {
    justify-content: flex-start;
    max-width: none;
  }

  .hero-brand {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 68px;
    margin: 0;
    padding: 0;
    font-size: clamp(40px, 14vw, 72px);
    text-align: center;
    z-index: 4;
  }

  .hero-features {
    display: none;
  }

  .hero-nav {
    top: auto;
    bottom: 22px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero-ui {
    padding-bottom: 148px;
  }

  .section { padding: 72px 0; }

  .spender-card { flex-wrap: wrap; }
  .spender-bar-wrap { width: 100%; flex: none; }

  .spender-podium { gap: 8px; }
  .podium-medal { width: 40px; height: 40px; font-size: 14px; }
  .podium-item--1 .podium-medal { width: 46px; height: 46px; font-size: 16px; }
  .podium-item--1 .podium-pedestal-body { height: 110px; }
  .podium-item--2 .podium-pedestal-body { height: 82px; }
  .podium-item--3 .podium-pedestal-body { height: 62px; }
  .podium-pedestal-rank { font-size: 22px; }
  .podium-item--1 .podium-pedestal-rank { font-size: 30px; }

  .bar-chart { gap: 8px; height: 240px; padding-top: 40px; }
  .bar-column { width: 36px; }
  .bar-thumb { width: 36px; height: 36px; }
  .bar-label { font-size: 10px; }

  .product-spotlight {
    grid-template-columns: 1fr;
  }

  .product-spotlight-image {
    min-height: 220px;
  }

  .product-spotlight-info {
    padding: 24px;
    align-items: center;
    text-align: center;
  }

  .spotlight-name { margin-bottom: 16px; }

  .spotlight-dots { justify-content: center; }

  .rank-panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .product-rank-item {
    padding: 12px;
    gap: 10px;
  }

  .rank-name { font-size: 12px; }

  .product-gallery-slider {
    margin: 0 -4px;
  }

  .product-gallery-board .product-marketplace-list {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 12px 20px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .product-gallery-board .product-marketplace-list::-webkit-scrollbar {
    display: none;
  }

  .product-marketplace-item {
    flex: 0 0 min(72vw, 240px);
    scroll-snap-align: start;
  }

  .product-marketplace-name { font-size: 11px; }

  .outlet-map-board,
  .outlet-map-shell {
    min-height: auto;
  }

  .outlet-map-scene {
    min-height: 200px;
    padding: 8px 6px 2px;
  }

  .outlet-detail-card {
    grid-template-columns: 1fr;
    margin: 6px 10px 10px;
  }

  .outlet-detail-visual {
    min-height: 100px;
    max-height: 120px;
  }

  .outlet-detail-name { font-size: 17px; }

  .outlet-pin-label { font-size: 10px; }

  .outlet-header-stats { width: 100%; }

  .outlet-detail-metrics {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .outlet-compare-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .outlet-compare-row {
    padding: 12px 12px 12px 16px;
  }

  .outlet-compare-pct { font-size: 16px; }

  .product-cards,
  .outlet-cards { grid-template-columns: 1fr 1fr; }

  .channel-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .channel-showcase {
    min-height: 240px;
  }

  .channel-showcase-content {
    padding: 24px 20px;
  }

  .footer {
    padding: 64px 0 32px;
  }

  .footer-logo-wrap {
    padding-bottom: 40px;
  }

  .footer-logo {
    width: min(100%, 220px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-copy {
    font-size: 13px;
    text-align: center;
  }

  .footer-contact-item {
    font-size: 13px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .top-bar-item:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-shell {
    min-height: 460px;
    height: calc(100svh - var(--above-hero) - 24px);
  }

  .hero-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .hero-brand {
    bottom: 60px;
    font-size: clamp(36px, 12vw, 56px);
  }

  .hero-nav {
    bottom: 16px;
  }

  .hero-ui {
    padding-bottom: 132px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .spender-card {
    padding: 14px 16px;
    gap: 12px;
  }

  .premium-board-topbar {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mobile-bottom-nav {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-bottom-nav-inner {
    padding: 8px 10px;
    border-radius: 24px;
    min-height: 54px;
  }

  .mobile-nav-label {
    font-size: 9px;
  }

  .mobile-nav-buy-btn {
    width: 52px;
    height: 52px;
    transform: translate(-50%, calc(-50% - 16px));
  }

  .mobile-nav-buy:hover .mobile-nav-buy-btn {
    transform: translate(-50%, calc(-50% - 18px)) scale(1.03);
  }

  .mobile-nav-buy:active .mobile-nav-buy-btn {
    transform: translate(-50%, calc(-50% - 14px)) scale(0.97);
  }

  .mobile-nav-buy-btn svg {
    width: 22px;
    height: 22px;
  }

  .footer-logo {
    width: min(100%, 180px);
  }

  .footer-social-link {
    width: 36px;
    height: 36px;
  }
}
