/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --lime:       #C8F135;
  --lime-dim:   rgba(200,241,53,0.12);
  --lime-glow:  rgba(200,241,53,0.06);
  --bg:         #080808;
  --bg2:        #0c0c0c;
  --border:     rgba(255,255,255,0.06);
  --muted:      rgba(255,255,255,0.28);
  --sub:        rgba(255,255,255,0.12);
  --white:      #ffffff;
  --display:    'Bebas Neue', sans-serif;
  --body:       'Outfit', sans-serif;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: none;
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
#cursor {
  position: fixed; top:0; left:0; z-index:9999;
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  
  opacity: 0;
  transition: opacity 0.3s, width 0.2s, height 0.2s, background 0.2s;
}
#cursor-ring {
  position: fixed; top:0; left:0; z-index:9998;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200,241,53,0.5);
  border-radius: 50%;
  pointer-events: none;
  
  opacity: 0;
  transition: opacity 0.3s, width 0.2s, height 0.2s, border-color 0.2s;
}
body.cursor-ready #cursor,
body.cursor-ready #cursor-ring { opacity: 1; }

/* ═══════════════════════════════════════
   NOISE OVERLAY
═══════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.4;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(8,8,8,0);
  transition: background 0.5s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,8,0.95);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-wordmark {
  font-family: var(--body); font-weight: 800;
  font-size: 16px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--lime); }
.nav-cta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg); background: var(--lime);
  border: none; border-radius: 4px;
  padding: 10px 20px; cursor: none;
  font-family: var(--body); font-weight: 700;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative; z-index: 2;
  text-align: left;
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Animated grid background */
.hero-grid-wrap {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, #080808 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; left: -60px; top: -60px; right: 0; bottom: 0;
  width: calc(100% + 60px); height: calc(100% + 60px);
  background-image:
    linear-gradient(rgba(200,241,53,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
@keyframes gridShift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Lime orb */
.hero-orb {
  position: absolute; z-index: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,241,53,0.08) 0%, transparent 65%);
  top: 50%; left: 50%; margin-top: -300px; margin-left: -300px;
  animation: orbPulse 6s ease-in-out infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1) translateZ(0); opacity: 0.7; }
  50%       { transform: scale(1.15) translateZ(0); opacity: 1; }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--lime); opacity: 0.4;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--white);
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
.hero-title .lime { color: var(--lime); }

.hero-sub {
  font-size:  17px; line-height: 1.7; font-weight: 300;
   color: var(--muted);
  max-width: 560px; margin: 24px 0 0 0;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.75s forwards;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 48px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.95s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: #080808;
  font-family: var(--body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 6px;
  text-decoration: none; cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(200,241,53,0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(200,241,53,0.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--muted);
  font-family: var(--body); font-weight: 400;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 6px;
  text-decoration: none; cursor: none;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--lime); border-color: rgba(200,241,53,0.3); }

/* Store badges */
.store-icon { width: 18px; height: 18px; opacity: 0.7; }

/* Hero scroll indicator */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-hint span {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: #2a2a2a;
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, #2a2a2a, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(0.7); }
}

/* Floating phone mockup */
.hero-phone-wrap {
  display: flex; justify-content: center;
  position: relative; z-index: 2;
  margin-top: 64px;
  opacity: 0; transform: translateY(50px);
  animation: fadeUp 1.2s cubic-bezier(0.22,1,0.36,1) 1.1s forwards;
}
.hero-phone {
  width: 260px; margin: 0 auto;
  background: #111;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.08);
  padding: 20px 14px;
  box-shadow:
    0 40px 120px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: phoneFloat 5s ease-in-out infinite;
  position: relative;
  
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}
.phone-notch {
  width: 60px; height: 6px; background: #1a1a1a;
  border-radius: 0 0 8px 8px; margin: 0 auto 16px;
}
.phone-screen {
  background: #0a0a0a; border-radius: 26px;
  padding: 16px 12px; min-height: 380px;
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

/* App UI inside phone */
.app-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.app-greeting { font-size: 9px; color: #333; letter-spacing: 0.15em; text-transform: uppercase; }
.app-name-sm { font-size: 14px; font-weight: 700; color: #fff; margin-top: 2px; }
.app-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--lime); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #080808;
}

/* Overload card */
.overload-card {
  background: linear-gradient(135deg, rgba(200,241,53,0.12), rgba(200,241,53,0.04));
  border: 1px solid rgba(200,241,53,0.2);
  border-radius: 12px; padding: 12px; margin-bottom: 10px;
  animation: cardPulse 3s ease-in-out infinite;
}
@keyframes cardPulse {
  0%,100% { border-color: rgba(200,241,53,0.2); }
  50%      { border-color: rgba(200,241,53,0.45); }
}
.overload-tag {
  font-size: 7px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 6px; font-weight: 600;
}
.overload-msg { font-size: 10px; font-weight: 600; color: #fff; line-height: 1.4; }
.overload-detail { font-size: 8px; color: #555; margin-top: 4px; }

/* Mini bar chart */
.mini-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 40px; margin: 10px 0;
}
.mini-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: rgba(200,241,53,0.15);
  animation: barGrow 1s cubic-bezier(0.34,1.56,0.64,1) forwards;
  transform-origin: bottom; transform: scaleY(0);
}
.mini-bar.active { background: var(--lime); }
.mini-bar:nth-child(1) { animation-delay: 1.4s; height: 45%; }
.mini-bar:nth-child(2) { animation-delay: 1.5s; height: 60%; }
.mini-bar:nth-child(3) { animation-delay: 1.6s; height: 52%; }
.mini-bar:nth-child(4) { animation-delay: 1.7s; height: 70%; }
.mini-bar:nth-child(5) { animation-delay: 1.8s; height: 65%; }
.mini-bar:nth-child(6) { animation-delay: 1.9s; height: 85%; }
.mini-bar:nth-child(7) { animation-delay: 2.0s; height: 100%; }
@keyframes barGrow { to { transform: scaleY(1); } }

/* Exercise rows */
.ex-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ex-name { font-size: 9px; color: #888; font-weight: 500; }
.ex-val  { font-size: 9px; color: #fff; font-weight: 700; }
.ex-up   { font-size: 7px; color: var(--lime); margin-left: 4px; }

/* Phone glow */
.phone-glow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 120px;
  background: radial-gradient(ellipse, rgba(200,241,53,0.15) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
#stats {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  
  padding: 40px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.015);
}
.stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: 52px; color: var(--lime); line-height: 1;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.stat-num.visible { opacity: 1; transform: translateY(0); }
.stat-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px; font-weight: 400;
}

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
#features {
  padding: 140px 48px;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 2;
}

.section-eye {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lime); font-weight: 600; margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.section-eye.visible { opacity: 1; transform: translateY(0); }

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95; margin-bottom: 80px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}
.section-title.visible { opacity: 1; transform: translateY(0); }
.section-title .lime { color: var(--lime); }

/* Feature blocks */


.feat-icon {
  width: 48px; height: 48px; margin-bottom: 28px;
}

.feat-tag {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 14px; font-weight: 600;
}

.feat-title {
  font-family: var(--display);
  font-size: 40px; line-height: 1; margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.feat-desc {
  font-size:  17px; line-height: 1.7; font-weight: 300; 
  color: var(--muted); max-width: 380px;
}

/* Animated overload indicator */
.overload-demo {
  margin-top: 36px;
  background: rgba(200,241,53,0.04);
  border: 1px solid rgba(200,241,53,0.12);
  border-radius: 10px; padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
}
.od-bars {
  display: flex; align-items: flex-end; gap: 3px; height: 32px;
}
.od-bar {
  width: 8px; border-radius: 2px 2px 0 0;
  background: rgba(200,241,53,0.2);
}
.od-bar.up { background: var(--lime); }
.od-bar:nth-child(1) { height: 40%; }
.od-bar:nth-child(2) { height: 55%; }
.od-bar:nth-child(3) { height: 48%; }
.od-bar:nth-child(4) { height: 70%; }
.od-bar:nth-child(5) { height: 62%; }
.od-bar:nth-child(6) { height: 88%; }
.od-bar:nth-child(7) { height: 100%; }
.od-text { font-size: 11px; color: var(--lime); font-weight: 600; line-height: 1.4; }
.od-sub  { font-size: 9px; color: #444; margin-top: 2px; }

/* Pre-flight demo list */
.feat-demo-list {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.fdl-item {
  font-size: 11px; font-weight: 500; padding: 10px 14px;
  border-radius: 6px; line-height: 1.4;
}
.fdl-up {
  background: rgba(200,241,53,0.06);
  border: 1px solid rgba(200,241,53,0.15);
  color: var(--lime);
}
.fdl-down {
  background: rgba(239,83,80,0.06);
  border: 1px solid rgba(239,83,80,0.15);
  color: #EF5350;
}

/* Low energy mode toggle demo */
.feat-mode-toggle {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.fmt-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 8px;
  border: 1px solid var(--border);
}
.fmt-full {
  border-color: rgba(200,241,53,0.25);
  background: rgba(200,241,53,0.04);
}
.fmt-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.fmt-dot-lime { background: var(--lime); }
.fmt-dot-dim  { background: rgba(245,166,35,0.6); }
.fmt-label { font-size: 12px; font-weight: 600; color: var(--white); }
.fmt-sub   { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* Analytics stat row */
.feat-analytics-row {
  margin-top: 32px;
  display: flex; align-items: center; gap: 0;
  background: rgba(200,241,53,0.03);
  border: 1px solid rgba(200,241,53,0.1);
  border-radius: 10px; overflow: hidden;
}
.far-stat {
  flex: 1; text-align: center; padding: 18px 12px;
}
.far-val {
  font-family: var(--display);
  font-size: 36px; color: var(--lime); line-height: 1;
}
.far-unit { font-size: 18px; opacity: 0.6; margin-left: 2px; }
.far-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.far-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* Data ownership checklist */
.feat-data-row {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.fdr-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.fdr-item svg { flex-shrink: 0; }

/* Recovery ring */
.recovery-demo {
  margin-top: 36px; display: flex; align-items: center; gap: 20px;
}
.rec-ring {
  position: relative; width: 70px; height: 70px; flex-shrink: 0;
}
.rec-ring svg { transform: rotate(-90deg); }
.rec-ring-track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 4; }
.rec-ring-fill  {
  fill: none; stroke: var(--lime); stroke-width: 4;
  stroke-dasharray: 157; stroke-dashoffset: 60;
  stroke-linecap: round;
  animation: ringFill 2s cubic-bezier(0.22,1,0.36,1) 1.5s both;
}
@keyframes ringFill {
  from { stroke-dashoffset: 157; }
  to   { stroke-dashoffset: 60; }
}
.rec-pct {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--lime);
}
.rec-info { font-size: 11px; color: #555; line-height: 1.6; }
.rec-info strong { color: #888; display: block; margin-bottom: 2px; }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
#how {
  padding: 140px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%);
  position: relative; z-index: 2;
  overflow: hidden;
}


.how-inner { max-width: 800px; margin: 0 auto; }

.step-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; align-items: start;
  padding: 48px 0;
  
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s, transform 0.7s;
}
.step-item.visible { opacity: 1; transform: translateX(0); }
.step-item:nth-child(2) { transition-delay: 0.12s; }
.step-item:nth-child(3) { transition-delay: 0.24s; }
.step-item:last-child   { border-bottom: none; }

.step-num {
  font-family: var(--display);
  font-size: 64px; color: rgba(200,241,53,0.15);
  line-height: 1; text-align: right;
  transition: color 0.3s;
}
.step-item:hover .step-num { color: rgba(200,241,53,0.35); }

.step-body {}
.step-tag {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 10px; font-weight: 600;
}
.step-title {
  font-family: var(--display);
  font-size: 36px; margin-bottom: 14px; letter-spacing: 0.02em;
}
.step-desc {
  font-size:  17px; line-height: 1.7; font-weight: 300; color: var(--muted); 
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
#marquee-section {
  overflow: hidden; padding: 40px 0;
  border-top: 1px solid var(--border);
  
  background: var(--bg2);
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 32px;
  font-family: var(--display);
  font-size: 28px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.marquee-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); opacity: 0.5; flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   TESTIMONIALS / SOCIAL PROOF
═══════════════════════════════════════ */
#social {
  padding: 140px 48px;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 2;
}

.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 64px;
}
.review-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 2px; padding: 32px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s, border-color 0.3s;
}
.review-card.visible { opacity: 1; transform: translateY(0); }
.review-card:nth-child(2) { transition-delay: 0.1s; }
.review-card:nth-child(3) { transition-delay: 0.2s; }
.review-card:hover { border-color: rgba(200,241,53,0.15); }
.review-stars { color: var(--lime); font-size: 12px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.6); margin-bottom: 20px;
  font-style: italic;
}
.review-author { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #3a3a3a; }

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
#cta-section {
  position: relative; padding: 160px 48px;
  text-align: center; overflow: hidden;
  z-index: 2;
}
#cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(200,241,53,0.07) 0%, transparent 70%);
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-grid-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 0%, #080808 100%);
}

.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92; margin-bottom: 32px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.cta-title.visible { opacity: 1; transform: translateY(0); }
.cta-title .lime { color: var(--lime); }
.cta-sub {
  font-size:  17px; line-height: 1.7; font-weight: 300; color: var(--muted);
  margin-bottom: 52px;
  opacity: 0; transition: opacity 0.7s 0.15s, transform 0.7s 0.15s;
  transform: translateY(20px);
}
.cta-sub.visible { opacity: 1; transform: translateY(0); }

.cta-btns {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
  transform: translateY(20px);
}
.cta-btns.visible { opacity: 1; transform: translateY(0); }

/* Store buttons */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: 6px;
  text-decoration: none; cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 190px;
}
.store-btn.android {
  background: var(--lime); color: #080808;
}
.store-btn.ios {
  background: transparent; color: var(--muted);
  border: 1px solid var(--border);
}
.store-btn:hover {
  transform: translateY(-3px);
}
.store-btn.android:hover { box-shadow: 0 12px 40px rgba(200,241,53,0.25); }
.store-btn.ios:hover { border-color: rgba(255,255,255,0.15); color: var(--white); }

.store-btn-text { text-align: left; }
.store-btn-pre {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.6; display: block;
}
.store-btn-name {
  font-size: 16px; font-weight: 700; letter-spacing: 0.04em;
  display: block; line-height: 1.2;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 48px 40px;
  position: relative; z-index: 2;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; margin-bottom: 48px; flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-social {
  display: flex; gap: 16px; margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--lime); border-color: rgba(200,241,53,0.3); }
.footer-links-group {
  display: flex; gap: 64px;
}
.footer-col {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col-title {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--lime); font-weight: 600; margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px; color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 11px; color: #2a2a2a; letter-spacing: 0.1em; }
.footer-store-badges {
  display: flex; gap: 16px;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-badge:hover { color: var(--lime); }

/* ═══════════════════════════════════════
   SCROLL REVEAL UTILITY
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: flex;
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 75vw; max-width: 320px;
    background: #0c0c0c;
    border-left: 1px solid var(--border);
    flex-direction: column; justify-content: center;
    align-items: flex-start; gap: 0;
    padding: 48px 36px;
    transition: right 0.35s cubic-bezier(0.22,1,0.36,1);
    z-index: 200;
  }
  .nav-links.mobile-open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 18px 0;
    font-size: 14px; letter-spacing: 0.15em;
    
  }
  .nav-links li:last-child a { border-bottom: none; }
  #hero { padding: 100px 20px 60px; }
  #stats { grid-template-columns: repeat(2,1fr); padding: 32px 20px; }
  
  .step-item { grid-template-columns: 56px 1fr; gap: 20px; }
}
/* ── Native Cursor Override for zero lag ── */
body, html {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23C8F135'/%3E%3C/svg%3E") 5 5, auto !important;
}
a, button, .fdr-item, .nav-logo, .hero-btn, .hero-btn-secondary, .cta-btn, .footer-badge, .social-icon {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1' height='1'%3E%3C/svg%3E") 0 0, pointer !important;
}
#cursor { display: none !important; }
.legal-container {
  max-width: 800px; margin: 0 auto;
  padding: 160px 48px 80px; position: relative; z-index: 2;
}
.legal-title {
  font-family: var(--display); font-size: clamp(40px, 6vw, 72px);
  line-height: 1; color: var(--white); margin-bottom: 16px; letter-spacing: 0.02em;
}
.legal-date {
  font-size: 13px; color: var(--lime); margin-bottom: 48px;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}
.legal-content h2 {
  font-family: var(--display); font-size: 32px;
  margin: 48px 0 16px; color: var(--white); letter-spacing: 0.02em;
}
.legal-content h3 {
  font-family: var(--body); font-weight: 700; font-size: 18px;
  margin: 32px 0 12px; color: var(--white);
}
.legal-content p {
  font-size: 16px; line-height: 1.8; color: var(--muted);
  margin-bottom: 16px; font-weight: 300;
}
.legal-content ul { margin-bottom: 24px; padding-left: 20px; }
.legal-content li {
  font-size: 16px; line-height: 1.8; color: var(--muted);
  margin-bottom: 8px; font-weight: 300;
}
.legal-content a { color: var(--lime); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .legal-container { padding: 120px 24px 60px; }
  .legal-title { font-size: clamp(36px, 10vw, 48px); }
}

/* ═══════════════════════════════════════
   CLAUDE NEW STYLES
═══════════════════════════════════════ */
/* ═══ PROOF BAR ═══ */
#proof-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 2;
}
.proof-item { text-align: center; padding: 12px 32px; flex-shrink: 0; }
.proof-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 6vw, 48px);
  color: #fff; line-height: 1;
}
.proof-num.lime { color: #C8F135; }
.proof-star { color: #C8F135; font-size: 0.7em; vertical-align: top; margin-top: 4px; display: inline-block; }
.proof-sup  { font-size: 0.55em; vertical-align: top; margin-top: 6px; display: inline-block; color: rgba(200,241,53,0.7); }
.proof-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 4px; font-weight: 400; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.07); flex-shrink: 0; }
@media (max-width: 600px) {
  #proof-bar { display: grid; grid-template-columns: 1fr 1px 1fr; row-gap: 0; }
  #proof-bar .proof-divider:nth-child(4),
  #proof-bar .proof-divider:nth-child(6) { display: none; }
  #proof-bar .proof-item:nth-child(5),
  #proof-bar .proof-item:nth-child(7) { border-top: 1px solid rgba(255,255,255,0.06); }
  #proof-bar .proof-divider:nth-child(2) { grid-row: 1; }
  .proof-divider { height: auto; width: 1px; }
}

/* ═══ OVERLOAD MOMENT ═══ */
#overload-moment {
  padding:  120px 48px;
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
}
.om-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 80px; align-items: center;
}
.om-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92; margin-bottom: 24px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}
.om-title.visible { opacity: 1; transform: translateY(0); }
.om-desc {
  font-size:  17px; line-height: 1.7; font-weight: 300; 
  color: rgba(255,255,255,0.45); margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
}
.om-desc.visible { opacity: 1; transform: translateY(0); }
.om-check-list {
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
}
.om-check-list.visible { opacity: 1; transform: translateY(0); }
.om-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.om-check svg { flex-shrink: 0; margin-top: 2px; }
.om-card-wrap {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s 0.15s, transform 0.9s 0.15s;
}
.om-card-wrap.visible { opacity: 1; transform: translateY(0); }
.om-card {
  background: rgba(22,22,22,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03);
}
.om-card-header {
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.om-card-title { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.om-card-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 3px; letter-spacing: 0.06em; }
.om-notification {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.om-notification:last-of-type { border-bottom: none; }
.om-notif-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(200,241,53,0.12);
  color: #C8F135;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; line-height: 1;
}
.om-notif-icon-dim { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.25); }
.om-notif-body { flex: 1; }
.om-notif-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.om-notif-title-dim { color: rgba(255,255,255,0.3); }
.om-notif-dim .om-notif-title { color: rgba(255,255,255,0.35); }
.om-notif-sub { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.om-notif-dim { opacity: 0.6; }
.om-card-footer {
  padding: 12px 20px;
  background: rgba(200,241,53,0.03);
  border-top: 1px solid rgba(200,241,53,0.08);
}
.om-footer-tag { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(200,241,53,0.45); }
@media (max-width: 900px) {
  .om-inner { grid-template-columns: 1fr; gap: 48px; }
  #overload-moment { padding:  120px 48px; }
}

/* ═══ PLATE CALCULATOR DEMO ═══ */
.plate-demo {
  margin-top: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 16px;
}
.plate-demo-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plate-target-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.plate-target-val { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #C8F135; line-height: 1; margin-left: 4px; }
.plate-bar-label { font-size: 10px; color: rgba(255,255,255,0.25); margin-left: auto; letter-spacing: 0.1em; }
.plate-demo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.plate-label { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; min-width: 60px; }
.plate-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.plate-chip {
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  font-family: 'Outfit', sans-serif;
}
.pc-20 { background: rgba(200,241,53,0.15); color: #C8F135; border: 1px solid rgba(200,241,53,0.25); }
.pc-15 { background: rgba(200,241,53,0.09); color: rgba(200,241,53,0.7); border: 1px solid rgba(200,241,53,0.15); }
.pc-5  { background: rgba(200,241,53,0.05); color: rgba(200,241,53,0.5); border: 1px solid rgba(200,241,53,0.1); }
.plate-unit { font-size: 12px; color: rgba(255,255,255,0.25); margin-left: 2px; }
.plate-demo-sub { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* Mobile Drawer Hidden State */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 80%;
  background: rgba(15,15,15,0.98);
  border-left: 1px solid rgba(255,255,255,0.05);
  z-index: 100; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 100px 40px; display: flex; flex-direction: column; gap: 40px;
}
.drawer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.drawer-link { font-size: 24px; font-family: 'Bebas Neue', sans-serif; color: #fff; text-decoration: none; }
.drawer-cta { margin-top: auto; display: inline-block; padding: 14px 24px; background: #C8F135; color: #080808; font-weight: 700; border-radius: 8px; text-align: center; text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; }

/* Open State */
body.mobile-open { overflow: hidden; }
body.mobile-open .nav-overlay { opacity: 1; pointer-events: auto; }
body.mobile-open .nav-drawer { transform: translateX(0); }




/* Features Zig-Zag Layout */
.features-stack {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 60px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.feature-row.reverse .feature-text {
  order: 2;
}

.feature-row.reverse .feature-mockup {
  order: 1;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-tag {
  color: var(--lime);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.feat-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.feat-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Micro-demo overrides for the new large mockups */
.overload-demo, .recovery-demo, .feat-demo-list, .feat-mode-toggle, .plate-demo, .stats-demo {
  transform: scale(1.3);
  transform-origin: center;
}

@media (max-width: 992px) {
  .features-stack { gap: 80px; }
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-mockup { order: 2; }
  .feature-mockup { padding: 40px; }
  .overload-demo, .recovery-demo, .feat-demo-list, .feat-mode-toggle, .plate-demo, .stats-demo {
    transform: scale(1.1);
  }
}


/* Plate Calculator App UI */
.plate-demo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px !important; width: 100% !important; text-align: left !important; }
.pd-total { font-family: monospace !important; font-size: 16px !important; color: rgba(255,255,255,0.6) !important; letter-spacing: 0.1em !important; margin: 0 !important; }
.pd-barbell { display: flex !important; align-items: center !important; justify-content: center !important; height: 140px !important; background: transparent !important; }
.pd-sleeve { width: 40px !important; height: 16px !important; background: #3a3a3e !important; border-radius: 2px !important; display: block !important; }
.pd-center-bar { 
  width: 100px !important; height: 16px !important; 
  background: repeating-linear-gradient(45deg, #3a3a3e, #3a3a3e 2px, #45454a 2px, #45454a 4px) !important; 
  display: block !important;
}
.pd-plates-left, .pd-plates-right { display: flex !important; align-items: center !important; gap: 2px !important; }
.pd-plate { display: flex !important; align-items: center !important; justify-content: center !important; border-radius: 4px !important; color: #111 !important; font-weight: 800 !important; font-size: 12px !important; font-family: sans-serif !important; border: none !important; box-shadow: none !important; }
.pd-plate span { writing-mode: vertical-rl !important; transform: rotate(180deg) !important; display: inline-block !important; margin: 0 !important; }
.pd-25 { width: 26px !important; height: 120px !important; background: #E5484D !important; }
.pd-5 { width: 18px !important; height: 70px !important; background: #6b6b70 !important; }
.pd-125 { width: 14px !important; height: 50px !important; background: #8e8e93 !important; }
.pd-pills { display: flex !important; gap: 10px !important; }
.pd-pill { background: #2a2a2d !important; color: #fff !important; font-size: 13px !important; font-weight: 600 !important; padding: 8px 16px !important; border-radius: 6px !important; font-family: sans-serif !important; }

/* Visual Performance App UI */
.stats-demo { 
  background: var(--dark-lighter) !important; border: 1px solid rgba(255,255,255,0.05) !important; 
  border-radius: 16px !important; padding: 32px !important; width: 100% !important; max-width: 320px !important; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important; display: block !important;
}
.sd-header { margin-bottom: 32px !important; display: block !important; }
.sd-title { font-size: 13px !important; color: var(--muted) !important; text-transform: uppercase !important; letter-spacing: 0.1em !important; margin-bottom: 8px !important; font-weight: 600 !important; }
.sd-val { font-family: var(--display) !important; font-size: 56px !important; color: var(--white) !important; line-height: 1 !important; letter-spacing: 0.02em !important; }
.sd-val span { font-size: 20px !important; color: var(--lime) !important; margin-left: 6px !important; font-family: sans-serif !important; }
.sd-chart { display: flex !important; align-items: flex-end !important; gap: 10px !important; height: 100px !important; margin-bottom: 32px !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; padding-bottom: 16px !important; }
.sd-bar { flex: 1 !important; background: rgba(200,241,53,0.15) !important; border-radius: 4px 4px 0 0 !important; transition: background 0.3s !important; height: 100%; }
.sd-bar:last-child { background: var(--lime) !important; box-shadow: 0 0 15px rgba(200,241,53,0.3) !important; }
.sd-footer { display: flex !important; justify-content: space-between !important; }
.sd-stat { display: flex !important; flex-direction: column !important; gap: 4px !important; background: transparent !important; border: none !important; padding: 0 !important; min-width: 0 !important; }
.sd-sval { font-size: 24px !important; font-weight: 700 !important; color: var(--white) !important; }
.sd-slabel { font-size: 11px !important; color: var(--muted) !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; font-weight: 600 !important; }



/* Cleaner, smaller mockups */
.plate-demo { transform: scale(0.9) !important; gap: 30px !important; }
.pd-barbell { height: 100px !important; }
.pd-25 { height: 90px !important; width: 22px !important; }
.pd-5 { height: 60px !important; width: 16px !important; }
.pd-125 { height: 40px !important; width: 12px !important; }
.pd-plate span { font-size: 10px !important; }
.pd-pill { font-size: 11px !important; padding: 6px 12px !important; }

.stats-demo { 
  transform: scale(0.9) !important;
  max-width: 280px !important; 
  padding: 24px !important; 
}
.sd-header { margin-bottom: 24px !important; }
.sd-val { font-size: 42px !important; }
.sd-val span { font-size: 16px !important; }
.sd-chart { height: 70px !important; margin-bottom: 24px !important; }
.sd-sval { font-size: 20px !important; }
.sd-slabel { font-size: 10px !important; }



/* Remove double card background */
.stats-demo { 
  background: transparent !important; 
  border: none !important; 
  box-shadow: none !important; 
  padding: 0 !important; 
}
.plate-demo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}


/* Fix link color for footer logo */
.footer-logo { color: var(--white); text-decoration: none; }
.footer-logo:hover { color: var(--white); }

/* IMAGE MOCKUP HOVER OVERRIDES */
.fm-img {
  transform: rotate(-3deg) scale(0.96) translateZ(0) !important;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  will-change: transform;
  -webkit-backface-visibility: hidden;
}
.feature-row.reverse .fm-img {
  transform: rotate(3deg) scale(0.96) !important;
}
.feature-row:hover .fm-img {
  transform: rotate(0) scale(1) translateZ(0) !important;
}
/* --- NEW HERO MOCKUP STYLES --- */
.hero-mockups-wrap {
  position: relative; width: 100%; max-width: 500px; margin: 0 auto; display: flex; justify-content: center; align-items: center;
}
.hero-img-front {
  width: 70%; position: relative; z-index: 2; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
  will-change: transform;
  transform: translateZ(0);
}
.hero-img-back {
  width: 65%; position: absolute; right: -25%; top: 5%; z-index: 1; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  will-change: transform;
  transform: translateZ(0);
}

/* --- MOBILE FIXES --- */
@media (max-width: 768px) {
  /* Hero Fix */
  .hero-mockups-wrap {
    transform: scale(0.9);
    margin-top: 30px;
    justify-content: flex-start;
    padding-left: 20px;
  }
  .hero-img-front {
    width: 65%;
  }
  .hero-img-back {
    width: 60%;
    right: 0%;
    top: 5%;
  }
  
  /* Proof Bar Fix */
  #proof-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px 20px !important;
  }
  #proof-bar .proof-divider {
    display: none !important;
  }
  #proof-bar .proof-item {
    border: none !important;
  }

  /* Horizontal Scrolling Reviews */
  .review-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .review-grid::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    min-width: 85vw;
    scroll-snap-align: center;
  }
}
