/* ==========================================================================
   CITRUS COLD-PRESSED - PREMIUM SCROLLYTELLING & DESIGN SYSTEM
   ========================================================================== */

:root {
  --bg-primary: #07080b;
  --bg-secondary: #0e1117;
  --bg-card: rgba(18, 22, 32, 0.7);
  --bg-glass: rgba(14, 18, 26, 0.65);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 122, 0, 0.3);
  
  --orange-core: #FF6A00;
  --orange-bright: #FF851A;
  --orange-glow: rgba(255, 106, 0, 0.35);
  --gold-core: #FFAA00;
  --cyan-core: #00E5FF;
  --green-core: #00E676;
  
  --text-primary: #FFFFFF;
  --text-secondary: #A0AEC0;
  --text-muted: #64748B;
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 20px;
  
  --shadow-glow: 0 10px 30px -10px rgba(255, 106, 0, 0.4);
  --shadow-glass: 0 20px 40px 0 rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #151824 0%, var(--bg-primary) 60%);
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  line-height: 1.65;
  color: var(--text-secondary);
}

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

/* Helper Gradients */
.gradient-text-orange {
  background: linear-gradient(135deg, #FF9E2C 0%, #FF5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #FFE066 0%, #FF9900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #70F3FF 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-green { color: var(--green-core); }
.highlight-citrus { color: var(--orange-bright); font-weight: 600; }
.font-bold { font-weight: 700; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: #06070a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  max-width: 320px;
  width: 90%;
}

.loader-citrus-icon {
  position: relative;
  width: 140px;
  height: auto;
  margin: 0 auto 24px;
}

.loader-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(255, 122, 0, 0.4));
  animation: floatIcon 2.5s ease-in-out infinite;
}

.loader-title span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--orange-core);
}

.loader-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FF6A00, #FFAA00);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.8);
  border-radius: var(--radius-full);
  transition: width 0.15s ease-out;
}

.loader-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.loader-percent {
  color: var(--orange-bright);
  font-weight: 600;
}

/* ==========================================================================
   HEADER NAVIGATION (CRYSTAL GLASS EFFECT)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  transition: var(--transition-smooth);
}



.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(8, 11, 18, 0.72);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
}

.nav-item:hover, .nav-item.active {
  color: #fff;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--orange-core);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--orange-core);
}

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

.icon-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-secondary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.icon-action-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.icon-sound-on.hidden, .icon-sound-off.hidden {
  display: none;
}

.cta-header-btn {
  background: linear-gradient(135deg, #FF7A00 0%, #E65100 100%);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
}

.cta-header-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.6);
}

/* Scroll Progress Line */
.scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #FF7A00, #FFAA00, #00E5FF);
  z-index: 1000;
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.8);
  transition: width 0.05s linear;
}

/* ==========================================================================
   FLOATING STORY STEPPER
/* ==========================================================================
   FLOATING STORY STEPPER (WITH GLASS FRAME & BACKGROUND)
   ========================================================================== */
.story-stepper {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8, 11, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.story-stepper.stepper-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(30px);
}

.stepper-track {
  width: 2px;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: var(--radius-full);
}

.stepper-thumb {
  position: absolute;
  top: 0;
  left: -2px;
  width: 6px;
  height: 35px;
  background: var(--orange-bright);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--orange-bright);
  transition: top 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-point {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  display: block;
}

.step-point:hover .step-num {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-point.active .step-num {
  background: var(--orange-core);
  color: #fff;
  border-color: var(--orange-bright);
  box-shadow: 0 0 12px var(--orange-glow);
}

/* ==========================================================================
   SCROLLYTELLING CONTAINER & CANVAS
   ========================================================================== */
.scrolly-container {
  position: relative;
  height: 520vh; /* Smooth tall scrubbing track */
  background: #040508;
}

.scrolly-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sequence-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: contrast(1.04) brightness(0.98);
}

/* Ambient glow atmospheric lighting */
.ambient-glow {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-top {
  top: -150px;
  right: 15%;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.22) 0%, transparent 70%);
}

.glow-bottom {
  bottom: -150px;
  left: 10%;
  width: 600px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
}

.glow-side {
  top: 40%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.12) 0%, transparent 70%);
}

/* ==========================================================================
   HUD FLOATING ELEMENTS (FILL BLANK CORNERS)
   ========================================================================== */
.hud-element {
  position: absolute;
  z-index: 10;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 14, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  animation: fadeInHud 1s ease-out;
}

@keyframes fadeInHud {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.hud-top-left {
  top: 96px;
  left: 36px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--green-core);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.hud-text-group {
  display: flex;
  flex-direction: column;
}

.hud-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--orange-bright);
}

.hud-value {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}

.hud-top-right {
  top: 96px;
  right: 120px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.mini-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  gap: 12px;
}

.mini-spec-row .spec-label {
  color: var(--text-muted);
}

.hud-bottom-left {
  bottom: 36px;
  left: 36px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 14px;
}

.frame-counter-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.frame-tag {
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--orange-core);
}

.frame-number {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.divider-v {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.scrub-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.wheel-anim {
  animation: wheelScroll 1.8s infinite;
}

@keyframes wheelScroll {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(3px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

.hud-bottom-right {
  bottom: 36px;
  right: 120px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
}

.vital-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vital-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(255, 170, 0, 0.8));
}

.vital-data strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.vital-data small {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SCROLL STORIES OVERLAYS (STEP NARRATIVES)
   ========================================================================== */
.scrolly-stories-viewport {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.story-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.story-overlay.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.story-content-box {
  max-width: 480px;
  background: rgba(8, 11, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.left-aligned {
  margin-right: auto;
}

.right-aligned {
  margin-left: auto;
}

.center-glass-aligned {
  margin: 0 auto;
  max-width: 620px;
}

/* Story Elements */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--orange-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.tag-pill-gold {
  background: rgba(255, 170, 0, 0.15);
  border-color: rgba(255, 170, 0, 0.35);
  color: var(--gold-core);
}

.tag-pill-cyan {
  background: rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.35);
  color: var(--cyan-core);
}

.story-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.story-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #D1D5DB;
  margin-bottom: 24px;
}

.story-features-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.story-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-core);
  line-height: 1;
}

.metric-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.metric-lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Comparison Strip */
.comparison-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-col ul {
  list-style: none;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.comp-title {
  font-size: 0.85rem;
  font-weight: 700;
}

.comp-them .comp-title { color: #F87171; }
.comp-them li { color: #9CA3AF; }

.comp-us .comp-title { color: var(--cyan-core); }
.comp-us li { color: #E0F2FE; }

.comp-divider {
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 50%;
}

.cta-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #FF7A00 0%, #E65100 100%);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.4);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ==========================================================================
   EDITORIAL CONTENT SECTIONS
   ========================================================================== */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 10;
}

.section-header {
  margin-bottom: 60px;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange-core);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-glass);
}

.bento-card-span-2 {
  grid-column: span 2;
}

.bento-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange-bright);
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  width: fit-content;
}

.bento-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.bento-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange-bright);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.eco-tag {
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan-core);
}

.flex-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ritual-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ritual-pill {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

/* Nutrition Section */
.nutrition-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.glass-panel {
  background: rgba(14, 18, 28, 0.75);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
}

.nutrition-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.serving-size {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.nutrition-bar-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 6px solid var(--orange-core);
}

.cal-val {
  color: var(--orange-bright);
  font-size: 1.3rem;
}

.nutrition-table-rows {
  margin-top: 12px;
}

.nutri-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nutri-row.sub {
  padding-left: 16px;
  color: var(--text-secondary);
}

.highlight-zero {
  color: var(--green-core) !important;
  font-weight: 600;
}

.vitamins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.vitamin-cell {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vitamin-cell.high-val {
  background: rgba(255, 122, 0, 0.08);
  border-color: rgba(255, 122, 0, 0.2);
}

.vit-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.vit-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange-bright);
}

.vit-bar {
  display: block;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 6px 0;
  overflow: hidden;
}

.vit-bar span {
  display: block;
  height: 100%;
  background: var(--orange-core);
}

.desc-para {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.ingredients-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.ing-icon {
  font-size: 1.5rem;
}

.ing-title-group h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.ing-title-group small {
  color: var(--text-muted);
}

.toggle-icon {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--orange-core);
  transition: transform 0.3s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 20px;
}

.accordion-item.active .accordion-body {
  max-height: 150px;
  padding-bottom: 16px;
}

.accordion-item.active .toggle-icon {
  transform: rotate(45deg);
}

.lab-quote-card {
  border-left: 3px solid var(--orange-core);
  padding: 16px 20px;
  background: rgba(255, 106, 0, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.lab-quote-card p {
  font-style: italic;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.lab-quote-card .author {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Flavor Cards Grid */
.flavor-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.featured-product {
  border-color: rgba(255, 122, 0, 0.3);
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.08) 0%, rgba(14, 18, 28, 0.8) 100%);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.product-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.product-glow-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.6;
}

.orange-glow { background: #FF7A00; }
.ruby-glow { background: #E11D48; }
.mint-glow { background: #10B981; }

.product-juice-preview {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  animation: floatIcon 4s ease-in-out infinite;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.flavor-notes {
  font-size: 0.82rem;
  margin-bottom: 16px;
  min-height: 40px;
}

.product-details-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-bright);
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.price-box small {
  color: var(--text-muted);
  margin-left: 4px;
  font-size: 0.75rem;
}

.add-to-cart-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.add-to-cart-btn:hover {
  background: var(--orange-core);
  border-color: var(--orange-bright);
  box-shadow: 0 4px 15px var(--orange-glow);
}

/* Pack Banner */
.glass-card-full {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12) 0%, rgba(14, 18, 28, 0.85) 100%);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  gap: 30px;
}

.banner-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange-bright);
  background: rgba(255, 122, 0, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.pack-banner-content h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.pack-banner-action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pack-price-tag {
  text-align: right;
}

.old-price {
  display: block;
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.new-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* Reviews */
.rating-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.stars, .stars-gold {
  color: var(--gold-core);
  letter-spacing: 3px;
  font-size: 1.1rem;
}

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

.review-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7A00, #FFAA00);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.review-top h4 {
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #E2E8F0;
  font-style: italic;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.faq-card summary {
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--orange-bright);
  transition: transform 0.3s;
}

.faq-card details[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-card p {
  padding: 0 26px 22px;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Footer */
.main-footer {
  background: #040508;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-mission {
  font-size: 0.88rem;
  margin-bottom: 20px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange-bright);
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-col ul a:hover {
  color: var(--orange-bright);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: var(--radius-full);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  flex: 1;
}

.newsletter-form input:focus {
  border-color: var(--orange-core);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   CART DRAWER MODAL
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-card {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #0c0f17;
  border-left: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  padding: 30px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
}

.cart-drawer-overlay.open .cart-drawer-card {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.close-drawer-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.close-drawer-btn:hover {
  color: #fff;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-item-emoji {
  font-size: 2rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--orange-bright);
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

.qty-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.qty-num {
  font-size: 0.85rem;
  font-weight: 600;
}

.drawer-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.cart-total-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange-bright);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .bento-grid, .flavor-cards-grid, .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card-span-2 {
    grid-column: span 2;
  }
  .nutrition-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hud-top-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .story-stepper {
    display: none;
  }
  .story-overlay {
    padding: 0 20px;
    align-items: flex-end;
    padding-bottom: 100px;
  }
  .story-content-box {
    max-width: 100%;
    padding: 24px;
  }
  .hud-top-left {
    top: 76px;
    left: 20px;
    font-size: 0.7rem;
  }
  .hud-bottom-right {
    display: none;
  }
  .hud-bottom-left {
    bottom: 16px;
    left: 20px;
    padding: 6px 14px;
  }
  .bento-grid, .flavor-cards-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-span-2 {
    grid-column: span 1;
  }
  .bento-stats-row {
    grid-template-columns: 1fr;
  }
  .glass-card-full {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
