@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,600;0,800;1,300;1,400&family=Inter:wght@300;400;500;600&family=Cinzel:wght@400;600;700&display=swap');

/* ========================================
   MASSIMO LUX — LANDING PAGE
   Design Philosophy: LV.com × Data Intelligence
   Deliberate contrast with warm-gold task platform
======================================== */

:root {
  --bg:            #FFFFFF;
  --bg-white:      #FFFFFF;
  --bg-dark:       #0D0D0D;
  --text:          #0D0D0D;
  --text-muted:    #6B6B6B;
  --text-light:    #999999;
  --accent-blue:   rgb(59, 76, 255);
  --accent-blue-light: rgba(59, 76, 255, 0.12);
  --border:        rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', -apple-system, sans-serif;
  --font-logo:     'Cinzel', serif;
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ========================================
   HEADER / NAV
======================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: border-color 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 160px;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #111111;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  text-decoration: none;
  color: #333333;
  font-size: 13px; /* Increased for PC clarity */
  font-weight: 500; /* Slightly bolder for better readability */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.25s;
}

.nav-links a:hover { color: #000000; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  padding: 8px;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  border: none;
  letter-spacing: 0.02em;
  transition: opacity 0.25s, transform 0.25s;
  display: inline-block;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 8% 80px;
  background-color: var(--bg);
  background-image: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.2) 100%), url('https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSzFGOQ635kcBCe_2QYJrW0SORy1-9TuccQYQV_UWph_MKeJkzR');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-content {
  max-width: 46%;
  position: relative;
  z-index: 10;
}

/* Eyebrow tag */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 12px; /* Increased for clearer PC display */
  font-weight: 600; /* Bolder for clarity */
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-light);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}

.eyebrow-dot {
  color: var(--accent-blue);
  font-size: 14px;
  line-height: 1;
}

/* Main headline — 3 lines, LV editorial style */
h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 32px;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
}

.h1-line {
  display: block;
  font-size: clamp(56px, 6.5vw, 96px);
}

.h1-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  font-size: clamp(52px, 6vw, 88px);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 420px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.btn-cta {
  background-color: var(--accent-blue);
  color: #ffffff;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(59, 76, 255, 0.22);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(59, 76, 255, 0.32);
}

.btn-ghost {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.btn-ghost:hover { color: var(--text); }

/* ========================================
   PARALLAX (Right Side)
======================================== */
.parallax-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 100%);
}

.p-item {
  position: absolute;
  left: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  animation: slideParallax var(--speed) linear infinite;
}

@keyframes slideParallax {
  0%   { transform: translate3d(8vw, 0, 0) scale(var(--scale, 1)); }
  100% { transform: translate3d(-100vw, 0, 0) scale(var(--scale, 1)); }
}

.p-label {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
}

.p-label.up   { color: rgb(59, 76, 255); }
.p-label.down { color: rgb(220, 80, 80); }

.p-box {
  width: 130px;
  height: 130px;
  background-color: #ffffff;
  border: 1px solid rgb(59, 76, 255);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.p-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.25);
  mix-blend-mode: multiply;
}

.p-line {
  width: 1px;
  height: var(--line-h, 160px);
  background: rgb(59, 76, 255);
  margin-top: -2px;
}

/* ========================================
   STATS BAR (Optimized)
======================================== */
.stats-bar {
  background: var(--bg-white);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /* Mobile defaults to 2x2 grid */
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  padding: 48px 5%;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 8%;
  }
  .stat-item:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.08);
  }
}

.stat-item {
  display: flex;
  flex-direction: column-reverse; /* Reorders dt (label) below dd (number) visually */
  justify-content: center;
  padding: 32px 0;
}

.stat-num {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-currency {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--text-light);
  margin-right: 4px;
}

.stat-unit {
  font-size: 0.7em;
  font-weight: 600;
  color: var(--accent-blue);
  margin-left: 2px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #7685ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6B7280;
}

/* ========================================
   BRANDS SECTION
======================================== */
.brands-section {
  background: #EAEBFC; /* Soft luxury background */
  padding: 80px 5% 96px;
}

.brands-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.brands-header {
  margin-bottom: 48px;
}

.brands-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  background-color: #111111;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.brands-title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 400;
  color: var(--accent-blue);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 900px;
}

.brands-grid li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-name {
  font-family: var(--font-logo), 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  opacity: 0.7;
  max-height: 22px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.brand-name:hover {
  opacity: 1;
}

.brands-trust-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #555555;
}

.trust-dot {
  color: #999999;
}

/* LOUIS VUITTON — Cinzel, spaced capitals */
.brand-lv {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

/* GUCCI — Playfair, bold serif caps */
.brand-gucci {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* HERMÈS — Playfair, refined spacing */
.brand-hermes {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

/* ROLEX — Cinzel */
.brand-rolex {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

/* Cartier — Playfair, mixed case matches real wordmark */
.brand-cartier {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-style: italic;
}

/* CHANEL — Cinzel */
.brand-chanel {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
}

/* ========================================
   PLATFORM DATA SECTION
======================================== */
.platform-section {
  padding: 120px 8%;
  background: var(--bg);
}

.platform-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-row {
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
}

/* 2×2 Grid */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mobile-scroll-indicator {
  display: none;
}

/* ── Shared Data Card ── */
.data-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.data-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.07);
}

.card-top-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ── Card A: Ring ── */
.card-ring .ring-container {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
}

.ring-svg {
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}

.ring-fill {
  fill: none;
  stroke: var(--accent-blue);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.data-card.in-view .ring-fill {
  stroke-dashoffset: 53.38; /* 83% of 314 (314 - 314*0.83) = 53.38 */
}

.ring-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ring-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-blue);
  line-height: 1;
}

.ring-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 2px;
}

.card-big-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.card-big-num span {
  font-size: 32px;
  color: var(--accent-blue);
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Card B: Earnings ── */
.earnings-display {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.earnings-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.earnings-badge {
  font-size: 12px;
  font-weight: 600;
  color: #1a7a3c;
  background: rgba(26,122,60,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(26,122,60,0.15);
}

.earnings-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.earn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.earn-label {
  width: 80px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.earn-bar-wrap {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.earn-bar {
  height: 100%;
  background: var(--accent-blue);
  border-radius: 4px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0.5;
}
.data-card.in-view .earn-bar {
  width: var(--target-width);
}

.earn-bar-gold {
  background: #b8860b;
  opacity: 1;
}

.earn-val {
  width: 50px;
  text-align: right;
  font-weight: 500;
  font-size: 12px;
  color: var(--text);
}

.earn-val-gold {
  color: #b8860b;
}

.card-bottom-note {
  font-size: 11px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── Card C: Line Chart ── */
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.chart-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.chart-badge.up {
  color: var(--accent-blue);
  background: var(--accent-blue-light);
}

.line-chart-wrap {
  width: 100%;
  height: 100px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.line-chart-svg {
  width: 100%;
  height: 100%;
}

.chart-stats {
  display: flex;
  gap: 0;
}

.chart-stat {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.chart-stat:not(:last-child) {
  border-right: 1px solid var(--border);
}

.cs-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.cs-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-top: 3px;
}

/* ── Card D: Global ── */
.global-num-display {
  margin-bottom: 28px;
}

.global-big-num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.global-big-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.region-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.region-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-eu { background: var(--accent-blue); }
.dot-us { background: #3ba87a; }
.dot-ap { background: #e89040; }
.dot-ot { background: #aaa; }

.region-name {
  width: 90px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.region-pct {
  width: 34px;
  text-align: right;
  font-weight: 500;
  color: var(--text);
  flex-shrink: 0;
}

.region-bar-wrap {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.region-bar {
  height: 100%;
  background: var(--text-light);
  border-radius: 2px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.data-card.in-view .region-bar {
  width: var(--target-width);
}

/* ========================================
   SHOWCASE SECTION — Amazon Classic
======================================== */
.showcase-section {
  background: #232F3E; /* Amazon Squid Ink */
  padding: 120px 0 120px;  /* Clean hard cut padding */
  color: #fff;
  position: relative;
}

/* Apple-style gradient fade from page bg → deep dark */
/* Removed muddy gradient for a sharp high-end Hard Cut edge */

.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 8% 0;
  position: relative;
  z-index: 2;
}

.showcase-left {
  flex: 1;
}

.showcase-year {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
}

.showcase-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 380px;
}

.showcase-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


.sm-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.sm-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
}

.btn-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.btn-cta-pill .cta-arrow {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-cta-pill:hover .cta-arrow {
  transform: translateX(4px);
}

/* Task Mockup Cards */
.showcase-right {
  flex: 1;
  position: relative;
  height: 440px;
}

.task-mockup {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #D5D9D9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  color: #0F1111; /* Amazon text black */
}

.task-mockup:first-child {
  width: 300px;
  top: 0;
  left: 0;
  z-index: 2;
  animation: floatUp 6s ease-in-out infinite;
}

.task-mockup-sm {
  width: 240px;
  bottom: 20px;
  right: 0;
  z-index: 1;
  animation: floatUp 8s ease-in-out infinite reverse;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid #D5D9D9;
  background: #F0F2F2; /* Amazon light gray header */
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red   { background: #ff5f57; }
.mockup-dot.amber { background: #febc2e; }
.mockup-dot.green { background: #28c840; }

.mockup-title {
  font-size: 11px;
  color: #565959;
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.mockup-body {
  padding: 20px;
}

.mockup-brand {
  font-family: var(--font-logo);
  font-size: 11px;
  letter-spacing: 3px;
  color: #565959; /* Amazon light text */
  margin-bottom: 8px;
}

.mockup-task-name {
  font-size: 16px;
  font-weight: 600;
  color: #007185; /* Amazon Link Blue */
  margin-bottom: 10px;
  line-height: 1.3;
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #565959;
  margin-bottom: 16px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
  animation: pulse 2s infinite;
}

.mockup-reward {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.reward-label {
  font-size: 11px;
  color: #565959;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reward-amount {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: #B12704; /* Amazon Price Red */
}

.mockup-progress {
  margin-bottom: 16px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #565959;
  margin-bottom: 6px;
}

.progress-track {
  height: 4px;
  background: #E7E9EC; /* Amazon gray bar */
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #FF9900; /* Amazon Orange */
  border-radius: 2px;
}

.mockup-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #F3F3F3;
  color: #0F1111;
  border: 1px solid #D5D9D9;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 40px 8%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-logo);
  font-size: 13px;
  letter-spacing: 2.5px;
  color: #333333;
}

footer p {
  font-size: 12px;
  color: #888888;
  flex: 1;
  text-align: center;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #333333;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover { color: #000000; }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1024px) {
  .h1-line { font-size: clamp(48px, 7vw, 72px); }
  .hero-content { padding-right: 20px; }
  .showcase-inner { flex-direction: column; gap: 60px; }
  .showcase-right { width: 100%; height: 360px; }
}

@media (max-width: 768px) {
  /* Header & Mobile Menu */
  header { padding: 16px 5%; justify-content: space-between; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  header.nav-open .nav-links { display: flex; }
  
  /* Hero */
  .hero { 
    flex-direction: column; 
    padding: 100px 5% 40px; 
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.4) 100%), url('https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSzFGOQ635kcBCe_2QYJrW0SORy1-9TuccQYQV_UWph_MKeJkzR');
  }
  .hero-content { 
    max-width: 100%; 
    padding-right: 0;
    align-items: center; 
  }
  .hero-actions { 
    justify-content: center; 
    flex-wrap: wrap; 
  }
  .h1-line { font-size: clamp(38px, 9vw, 56px); }
  
  /* Parallax Mobile (Restored Animation) */
  .parallax-bg {
    position: relative;
    width: 100%;
    height: 380px;
    top: auto;
    right: auto;
    margin-top: 0px;
    transform: none; /* Removed parent scale to fix nested transform jitter */
    overflow: hidden;
  }
  
  @keyframes slideParallaxMobile {
    0%   { transform: translate3d(0, 0, 0) scale(var(--scale, 1)); }
    100% { transform: translate3d(-130vw, 0, 0) scale(var(--scale, 1)); }
  }
  /* Mobile Performance Optimizations */
  .parallax-bg .p-item {
    animation-name: slideParallaxMobile !important;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .parallax-bg .p-box {
    box-shadow: none !important;
  }
  .parallax-bg .p-box img {
    mix-blend-mode: normal !important;
  }
  
  /* Stats Bar layout is now handled mobile-first globally */
  
  /* Brands */
  .brands-section { padding: 60px 5% 80px; }
  .brands-header { text-align: center; margin-bottom: 40px; }
  .brands-title { font-size: 24px; text-align: center; }
  .brands-grid { 
    gap: 24px 16px; 
  }
  .brands-trust-footer {
    gap: 8px;
    font-size: 11px;
  }
  
  /* Platform Data - Horizontal Swipe Carousel */
  .platform-section { padding: 60px 0; }
  .section-header-row { padding: 0 5%; margin-bottom: 32px; }
  
  .data-grid { 
    display: flex; 
    grid-template-columns: none; /* override grid */
    flex-wrap: nowrap;
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 16px; 
    padding: 24px 5% 40px; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .data-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */
  
  .data-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
  }
  
  .mobile-scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: -16px;
    margin-bottom: 32px;
  }
  .scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s var(--ease-out);
  }
  .scroll-dot.active {
    width: 24px;
    border-radius: 3px;
    background: #111;
  }
  
  /* Showcase / Amazon Theme */
  .showcase-inner { padding: 0 5%; gap: 40px; }
  .showcase-year { font-size: 32px; text-align: center; }
  .showcase-desc { text-align: center; margin: 0 auto 32px; }
  .showcase-metrics { flex-direction: column; gap: 24px; text-align: center; align-items: center; }
  .btn-cta-white { display: flex; justify-content: center; margin: 0 auto; }
  
  /* Task Mockups Scaling */
  .showcase-right {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: scale(0.95);
    transform-origin: top center;
    margin-bottom: -10px; 
  }
  .task-mockup {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }
  .task-mockup:first-child {
    z-index: 2;
    margin-bottom: -15px; /* Overlap only slightly so text is not covered */
  }
  .task-mockup-sm {
    z-index: 1;
    margin-left: 20px; 
  }
  
  /* Footer */
  footer {
    padding: 24px 5%;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
}
