/* 
   =========================================
   AURA DESIGN SYSTEM : KINETIC PULSE v1.1
   Project: Karotte
   Concept: High Performance x Playful Tech
   =========================================
*/

:root {
  /* 🎨 PALETTE KINETIC */
  --color-primary: #4F46E5;      /* Electric Indigo */
  --color-primary-dark: #3730A3; /* Deep Indigo */
  --color-accent: #CCFF00;       /* Acid Lime - L'étincelle */
  
  --color-dark: #020617;         /* Deepest Ink Black */
  --color-grey: #334155;         /* Dark Slate - High Contrast */
  --color-light: #F8FAFC;        /* Ice White */
  --color-white: #FFFFFF;

  /* 🔡 TYPOGRAPHY */
  --font-display: 'Space Grotesk', sans-serif; /* Tech & Modern */
  --font-body: 'Inter', sans-serif;            /* Clean & Legible */

  /* 📐 METRICS & SHAPES */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  
  --container-width: 1280px;
  --header-height: 80px;

  /* ✨ EFFECTS */
  --shadow-subtle: 0 4px 20px -2px rgba(79, 70, 229, 0.05);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --shadow-float: 0 20px 40px -5px rgba(15, 23, 42, 0.1);
  
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =========================
   AURA X: LOADER
   ========================= */
#aura-loader {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#aura-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  /* Handled above with .logo-icon-img logic but specific for loader */
}

.loader-counter {
  margin-top: 40px;
  font-size: 72px;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-display);
  letter-spacing: -0.05em;
}

.loader-text {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

/* Prevent scrolling while loading */
body.loading {
  overflow: hidden;
}

/* =========================
   RESET & BASE
   ========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden; /* Strict overflow handling */
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* Double safety */
  width: 100%;
  position: relative; /* Helps with absolute positioning context */
}

/* AURA X: NOISE TEXTURE OVERLAY */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.07; /* Subtle grain */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em; /* Tight kerning for modern look */
  color: var(--color-dark);
}

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease-out-expo); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* UTILITIES */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(79, 70, 229, 0.1);
  margin-bottom: 24px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================
   NAVIGATION
   ========================= */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.logo-icon-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Loader specific logo style */
.loader-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(0);
  animation: logoGrow 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 0 40px rgba(79, 70, 229, 0.4);
}

@keyframes logoGrow {
  0% { transform: scale(0) rotate(-180deg); }
  100% { transform: scale(1) rotate(0deg); }
}
  gap: 8px;
  background: rgba(255, 255, 255, 0.5);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,0.03);
}

.nav-links a {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-grey);
}

.nav-links a:hover {
  color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nav-actions {
  display: none; /* Hidden on mobile */
  align-items: center;
}

/* Desktop Nav Visibility */
@media (min-width: 992px) {
  .nav-links, .nav-actions { display: flex; }
  .mobile-menu-btn { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s var(--ease-elastic), box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-dark);
  color: var(--color-white);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.link-secondary {
  font-weight: 600;
  color: var(--color-primary);
  margin-right: 16px;
  display: none;
}
@media (min-width: 768px) { .link-secondary { display: inline-block; } }

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-primary);
  cursor: pointer;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Abstract Geometric Background */
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  overflow: hidden;
}
.hero-bg-blobs::after {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  will-change: transform;
}
.hero-bg-blobs::before {
  content: '';
  position: absolute;
  bottom: 0; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  will-change: transform;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 20; /* AURA X FIX: Ensure content/buttons stay above phone */
}

/* AURA X: Elements with parallax data attributes */
[data-parallax] {
  will-change: transform;
}

.hero-title {
  font-size: clamp(64px, 10vw, 120px); /* AURA X: Massive Scale */
  line-height: 0.95;
  margin-bottom: 32px;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 2; /* Above phone visually */
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-grey);
  max-width: 580px;
  margin: 0 auto 48px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.hero-buttons {
  position: relative;
  z-index: 10; /* AURA X FIX: Ensure button is above phone visual */
}

/* AURA X: MAGNETIC BUTTON EFFECT BASE */
.btn {
  display: inline-flex;
  align-items: center;
    justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* =========================
   AURA X: LIVE PHONE UI (SVG VERSION)
   ========================= */
.app-interface {
  width: 100%; height: 100%;
  background: #FFF9F0; /* Plus proche du beige crème de l'image */
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
}

/* Background Layer */
.app-bg-layer {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Nodes Layer */
.nodes-container {
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
}

.node-item {
  position: absolute;
  width: 80px; height: 80px; /* Increased from 60px */
  transform: translate(-50%, -50%);
  animation: floatNode 4s ease-in-out infinite;
  animation-delay: var(--d);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

.node-item img { width: 100%; height: 100%; object-fit: contain; }

/* Different sizes */
.node-active { width: 100px; height: 100px; z-index: 10; } /* Increased from 80px */
.node-locked { width: 70px; height: 70px; opacity: 0.8; } /* Increased from 50px */

/* Active Pulse Ring */
.active-pulse {
  position: absolute; inset: 5px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 2s infinite;
}

/* Social Pop-up for Active Node */
.social-pop {
  position: absolute;
  top: -45px; left: 50%; transform: translateX(-50%);
  background: white;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  white-space: nowrap;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1s;
  opacity: 0;
  z-index: 20;
}
.social-pop::after {
  content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; background: white; clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.social-pop span { font-size: 10px; font-weight: 700; color: var(--color-dark); }

/* USER AVATARS ON MAP */
.user-marker-group {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  transform: translate(-50%, -50%);
  z-index: 15;
  animation: floatNode 5s ease-in-out infinite alternate;
}

.user-avatar {
  position: relative;
  width: 50px; height: 50px; /* Increased from 40px */
  border-radius: 50%;
  border: 3px solid white; /* Thicker border */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.user-avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
}

.notif-badge {
  position: absolute; top: -4px; right: -4px; /* Adjusted for larger size */
  background: #EF4444; color: white;
  width: 20px; height: 20px; /* Increased from 16px */
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

.user-name {
  margin-top: 4px;
  font-size: 11px; font-weight: 700;
  color: var(--color-dark);
  background: rgba(255,255,255,0.9); /* More opaque */
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 10px;
}

/* Animations */
@keyframes floatNode {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes popIn {
  from { transform: translateX(-50%) scale(0); opacity: 0; }
  to { transform: translateX(-50%) scale(1); opacity: 1; }
}

/* UI Overlays */
.app-top-bar {
  padding: 12px 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; color: var(--color-dark);
  height: 44px; z-index: 20;
}
.status-icons { display: flex; gap: 6px; font-size: 14px; }

.app-bottom-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px 24px;
  border-radius: 32px 32px 0 0;
  display: flex; justify-content: space-between;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  z-index: 20; margin-top: auto;
}

.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: #94A3B8; font-size: 10px; font-weight: 600;
  cursor: pointer;
}
.nav-item.active { color: var(--color-primary); }
.nav-item i { font-size: 24px; }

/* Hero Visual - BROKEN GRID OVERLAP */
.hero-visual {
  margin-top: 60px;
  position: relative;
  height: 700px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  /* AURA X: Scroll Animation Variables Initial State */
  --scroll-prog: 0; 
}

.phone-mockup {
  width: 320px;
  height: 650px;
  background: #000;
  border-radius: 48px;
  padding: 10px;
  box-shadow: 
    0 50px 100px -20px rgba(0,0,0,0.3),
    inset 0 0 10px rgba(255,255,255,0.1); /* Reflet interne subtil */
  
  /* AURA X: DYNAMIC SCROLL TRANSFORM 
     We interpolate from start (-15deg, 10deg, 50px) to end (0deg, 0deg, 0px) based on --scroll-prog
  */
  transform: 
    rotateY(calc(-15deg * (1 - var(--scroll-prog)))) 
    rotateX(calc(10deg * (1 - var(--scroll-prog)))) 
    translateX(calc(50px * (1 - var(--scroll-prog))))
    scale(calc(1 + (0.05 * var(--scroll-prog)))); /* Slight zoom in on face-to-face */
    
  border: 8px solid #1a1a1a; /* Bordure un peu plus claire que le fond */
  position: relative;
  z-index: 10;
  pointer-events: auto;
  /* Removed standard transition to allow instant scrub-linking */
  transition: box-shadow 0.3s ease; 
  will-change: transform;
}

/* Simulation de l'encoche plus réaliste si besoin, ou reflet sur l'écran */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 24px;
  background: #000;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 20;
}

.phone-mockup:hover {
  /* Disable hover tilt when scrolling logic is active to avoid conflict, or subtle scale */
  transform: 
    rotateY(calc(-15deg * (1 - var(--scroll-prog)))) 
    rotateX(calc(10deg * (1 - var(--scroll-prog)))) 
    translateX(calc(50px * (1 - var(--scroll-prog))))
    scale(calc(1.02 + (0.05 * var(--scroll-prog))));
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9); /* Plus opaque pour la lisibilité */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px;
  border-radius: 24px; /* Coins plus arrondis comme sur l'image */
  border: 1px solid rgba(255,255,255, 0.8);
  box-shadow: 
    0 20px 40px -5px rgba(0,0,0,0.1),
    0 10px 15px -5px rgba(0,0,0,0.05); /* Ombre plus douce et diffusée */
  z-index: 12;
  min-width: 220px;
  display: none;
  will-change: transform, opacity;
}
@media (min-width: 1024px) { .floating-card { display: block; } }

.card-left {
  top: 10%; left: 50%;
  /* Start: Far left (-450px), Rotated (-15deg), Opacity 0.5 
     End: Closer (-350px), Rotated (-8deg), Opacity 1 */
  transform: 
    translateX(calc(-450px + (100px * var(--scroll-prog)))) 
    rotate(calc(-15deg + (7deg * var(--scroll-prog))))
    translateY(calc(0px + (20px * var(--scroll-prog))));
  opacity: calc(0.5 + (0.5 * var(--scroll-prog)));
}

.card-right {
  bottom: 20%; right: 50%;
  /* Start: Far right (450px), Rotated (15deg), Opacity 0.5
     End: Closer (350px), Rotated (8deg), Opacity 1 */
  transform: 
    translateX(calc(450px - (100px * var(--scroll-prog)))) 
    rotate(calc(15deg - (7deg * var(--scroll-prog))))
    translateY(calc(0px - (20px * var(--scroll-prog))));
  opacity: calc(0.5 + (0.5 * var(--scroll-prog)));
}

.card-header {
  display: flex; justify-content: space-between; margin-bottom: 12px;
  font-size: 12px; text-transform: uppercase; color: var(--color-grey); font-weight: 700;
}
.ranking-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 14px; font-weight: 600;
}
.rank { color: var(--color-primary); font-weight: 800; font-size: 16px; }
.points { margin-left: auto; color: var(--color-grey); }

.video-preview {
  height: 80px;
  background: rgba(204, 255, 0, 0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
}

/* =========================
   MARQUEE
   ========================= */
.marquee-section {
  padding: 40px 0;
  background: var(--color-primary);
  transform: skewY(-2deg);
  margin: 60px 0;
  width: 100%;
  overflow: hidden; /* Prevents skewed content from overflowing */
}

.marquee-content {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
  text-transform: uppercase;
}

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

/* =========================
   AURA X: LIVE PHONE UI (SVG VERSION)
   ========================= */
.phone-screen {
  width: 100%; height: 100%;
  background: #FFEDD5; /* Fallback color matches svg bg */
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.app-interface {
  width: 100%; height: 100%;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

/* Background Layer */
.app-bg-layer {
  position: absolute; 
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1; /* Behind content */
}

/* Nodes Layer */
.nodes-container {
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
}

.node-item {
  position: absolute;
  width: 80px; height: 80px; /* Increased from 60px */
  transform: translate(-50%, -50%);
  animation: floatNode 4s ease-in-out infinite;
  animation-delay: var(--d);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

.node-item img { width: 100%; height: 100%; object-fit: contain; }

/* Different sizes */
.node-active { width: 100px; height: 100px; z-index: 10; } /* Increased from 80px */
.node-locked { width: 70px; height: 70px; opacity: 0.8; } /* Increased from 50px */

/* Active Pulse Ring */
.active-pulse {
  position: absolute; inset: 5px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 2s infinite;
}

/* Social Pop-up for Active Node */
.social-pop {
  position: absolute;
  top: -45px; left: 50%; transform: translateX(-50%);
  background: white;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  white-space: nowrap;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1s;
  opacity: 0;
  z-index: 20;
}
.social-pop::after {
  content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; background: white; clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.social-pop span { font-size: 10px; font-weight: 700; color: var(--color-dark); }

/* USER AVATARS ON MAP */
.user-marker-group {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  transform: translate(-50%, -50%);
  z-index: 15;
  animation: floatNode 5s ease-in-out infinite alternate;
}

.user-avatar {
  position: relative;
  width: 50px; height: 50px; /* Increased from 40px */
  border-radius: 50%;
  border: 3px solid white; /* Thicker border */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.user-avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
}

.notif-badge {
  position: absolute; top: -4px; right: -4px; /* Adjusted for larger size */
  background: #EF4444; color: white;
  width: 20px; height: 20px; /* Increased from 16px */
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

.user-name {
  margin-top: 4px;
  font-size: 11px; font-weight: 700;
  color: var(--color-dark);
  background: rgba(255,255,255,0.9); /* More opaque */
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 10px;
}

/* Animations */
@keyframes floatNode {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes popIn {
  from { transform: translateX(-50%) scale(0); opacity: 0; }
  to { transform: translateX(-50%) scale(1); opacity: 1; }
}

/* UI Overlays */
.app-top-bar {
  padding: 12px 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; color: var(--color-dark);
  height: 44px; z-index: 20;
}
.status-icons { display: flex; gap: 6px; font-size: 14px; }

.app-bottom-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px 24px;
  border-radius: 32px 32px 0 0;
  display: flex; justify-content: space-between;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  z-index: 20; margin-top: auto;
}

.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: #94A3B8; font-size: 10px; font-weight: 600;
  cursor: pointer;
}
.nav-item.active { color: var(--color-primary); }
.nav-item i { font-size: 24px; }

/* =========================
   PROOF SECTION - AURA X: CINEMATIC PORTALS
   ========================= */
.proof-section {
  padding: 120px 0 0 0;
  background: var(--color-light);
}

.video-grid-container {
  position: relative;
  overflow: hidden;
  padding: 60px 0 140px;
}

.video-grid {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: center; /* Center vertically for scale effect */
}
.video-grid::-webkit-scrollbar { display: none; }

/* AURA X: CINEMATIC CARD */
.video-card {
  position: relative;
  min-width: 300px;
  max-width: 340px;
  aspect-ratio: 9/16;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.3);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  scroll-snap-align: center;
  transform-style: preserve-3d;
  background: #000;
}

/* Hover State: Levitation & Expansion */
.video-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 40px 80px -20px rgba(79, 70, 229, 0.5);
  z-index: 10;
}

.video-wrapper {
  width: 100%; height: 100%; position: relative;
}

.video-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
  filter: saturate(0.9) brightness(0.9);
}

.video-card:hover .video-thumb {
  transform: scale(1.15);
  filter: saturate(1.1) brightness(1.1);
}

/* Noise Overlay for Texture */
.video-card::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.3; mix-blend-mode: overlay; pointer-events: none;
}

.video-badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 8px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.play-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.4s ease;
}

.play-btn-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: white;
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.video-card:hover .play-btn-icon {
  transform: scale(1.2);
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: transparent;
}

.video-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 24px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  color: white; z-index: 10;
  transform: translateY(10px);
  transition: transform 0.5s var(--ease-out-expo);
}

.video-card:hover .video-caption { transform: translateY(0); }

.video-title {
  font-family: var(--font-display);
  font-size: 24px; line-height: 1.1; margin-bottom: 8px;
  display: block;
}
.video-sub {
  font-size: 14px; opacity: 0.8; font-weight: 500;
}

/* Separator */
.separator-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  width: 100%; max-width: 800px;
  margin: 80px auto 120px;
}

/* =========================
   AURA X: TESTIMONIALS - ORGANIC MASONRY
   ========================= */
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
  padding: 0 24px;
  perspective: 1000px; /* For 3D effect */
}

.testimonial-item {
  background: var(--color-white);
  padding: 48px 40px;
  border-radius: 32px;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex; flex-direction: column; gap: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

/* AURA X: Breathing Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Staggered floating for organic feel */
.testimonial-item:nth-child(odd) { animation: float 6s ease-in-out infinite; }
.testimonial-item:nth-child(even) { animation: float 7s ease-in-out infinite 1s; }

.testimonial-item:hover {
  transform: translateY(-15px) scale(1.02) !important; /* Override animation on hover */
  box-shadow: 0 30px 80px -20px rgba(79, 70, 229, 0.15);
  animation-play-state: paused;
  z-index: 2;
}

/* Large quote icon in background */
.testimonial-item::after {
  content: '"';
  position: absolute;
  top: 20px; right: 30px;
  font-family: serif; font-size: 120px; line-height: 0;
  color: var(--color-primary); opacity: 0.05;
  pointer-events: none;
}

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

.testimonial-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin: 0; /* Reset from previous */
}

.author-meta { display: flex; flex-direction: column; }
.author-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--color-dark); }
.author-role { font-size: 13px; color: var(--color-grey); font-weight: 500; }

.testimonial-body blockquote {
  font-size: 17px; line-height: 1.6; color: #475569; font-style: normal;
}

.rating-badge {
  display: inline-flex; gap: 4px;
  background: #FFFbeb; color: #F59E0B;
  padding: 6px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  align-self: flex-start;
}

/* Reset old styles */
.testimonial-item.layout-left, .testimonial-item.layout-right { flex-direction: column; text-align: left; }
.testimonial-content { gap: 0; }
.testimonial-item::before { content: none; } /* Remove old quote style */
.stats-banner {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; justify-content: space-around;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.05);
}
.stat-item { text-align: center; }
.stat-value { font-size: 48px; font-weight: 800; color: var(--color-primary); line-height: 1; }
.stat-suffix { font-size: 48px; font-weight: 800; color: var(--color-accent); line-height: 1; }
.stat-label { display: block; margin-top: 8px; font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--color-grey); }

/* =========================
   BENTO GRID FEATURES
   ========================= */
.features {
  padding: 120px 0;
  background: var(--color-light);
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

/* AURA X: KINETIC TYPOGRAPHY */
.kinetic-word {
  display: inline-block;
  transform: translateY(120%) skewY(10deg);
  opacity: 0;
  transition: transform 1s var(--ease-out-expo), opacity 1s ease;
  will-change: transform, opacity;
  transform-origin: top left;
  margin-right: 0.2em; /* Space between words */
}

.is-visible .kinetic-word {
  transform: translateY(0) skewY(0);
  opacity: 1;
}

/* AURA X: BENTO 3D TILT & SHINE */
.bento-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo); /* Default transition */
  border: 1px solid rgba(0,0,0,0.03);
  
  /* 3D Setup */
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

/* When JS is active, we remove the default transform transition to avoid lag with mouse movement */
.bento-card.js-tilt-active {
  transition: none;
}

.bento-card-content {
  position: relative;
  z-index: 2;
  transform: translateZ(20px); /* Pop content out */
}

.bento-glare {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 50%);
  top: -50%; left: -50%;
  opacity: 0;
  pointer-events: none;
  transform: translateZ(1px);
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
}

.bento-card:hover .bento-glare {
  opacity: 0.15;
}

/* AURA X: GLOW BORDER EFFECT (Enhanced) */
.bento-card:hover {
  box-shadow: 0 30px 60px -10px rgba(79, 70, 229, 0.2);
  border-color: rgba(79, 70, 229, 0.4);
}
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(45deg, transparent 40%, rgba(204, 255, 0, 0.5), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.bento-card:hover::after { opacity: 1; }

.large-card {
  grid-column: span 8; grid-row: span 2;
  background: var(--color-dark); color: var(--color-white);
  display: flex; flex-direction: column; justify-content: space-between;
}
.large-card h3 { color: var(--color-white); font-size: 32px; margin-bottom: 16px; }
.large-card p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 500px; }

.visual-challenges { display: flex; gap: 16px; margin-top: 24px; }
.challenge-pill {
  background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 12px;
  font-size: 14px; backdrop-filter: blur(10px);
}

.small-card {
  grid-column: span 4;
  background: var(--color-accent);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.small-card .stat-number { color: var(--color-dark); font-size: 64px; font-weight: 800; }
.small-card p { color: var(--color-dark); font-weight: 600; }

.medium-card {
  grid-column: span 4;
  border: 2px solid var(--color-primary);
  display: flex; flex-direction: column; justify-content: space-between;
}
.medium-card h3 { font-size: 24px; }

/* =========================
   STANDALONE TESTIMONIAL
   ========================= */
.testimonials-section {
  background: var(--color-primary);
  padding: 100px 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.testimonial-author {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.8;
}

/* =========================
   SCROLLYTELLING ROI (Now Click-Based Stepper)
   ========================= */
.roi-scrolly-section {
  /* Changed from 350vh to fit content + padding */
  min-height: 100vh;
  height: auto; 
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roi-sticky-viewport {
  /* Removed sticky behavior */
  position: relative;
  height: 800px; /* Fixed height for the card container */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roi-dynamic-card {
  width: 100%; 
  max-width: 1000px;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(40px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transition: all 0.5s ease;
}

.btn-white {
  background: white;
  color: var(--color-dark);
  margin-top: 40px;
  padding: 16px 32px;
  font-size: 16px;
  display: inline-flex;
  gap: 8px;
  z-index: 30; /* Ensure clickable */
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* ROI Steps */
.roi-step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; transform: translateY(40px); pointer-events: none;
  transition: all 0.5s var(--ease-out-expo);
}
.roi-step.active { opacity: 1; transform: translateY(0); pointer-events: all; }

.step-tag {
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
}

.typeform-question {
  font-size: 36px; text-align: center; margin-bottom: 40px; max-width: 800px;
  color: var(--color-white); /* Force white text on dark background */
}

/* ROI Inputs & Sliders */
.typeform-control-wrapper { width: 100%; max-width: 600px; }

.control-value-large {
  font-size: 80px; font-weight: 800; color: var(--color-accent);
  display: block; text-align: center; margin-bottom: 20px;
  font-family: var(--font-display);
}

.range-track {
  position: relative; width: 100%; height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px; overflow: hidden;
  cursor: w-resize;
}

.range-progress {
  position: absolute; top: 0; left: 0; height: 100%; width: 50%;
  background: var(--color-accent);
  border-radius: 999px 0 0 999px;
  box-shadow: 0 0 30px var(--color-accent);
}

/* INVISIBLE INPUT OVERLAY */
.range-input-creative {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; cursor: w-resize; z-index: 20; margin: 0; padding: 0;
  -webkit-appearance: none; /* Crucial for removing default browser styling */
  appearance: none;
}

/* Mobile Menu State Class */
.mobile-menu-open {
  overflow: hidden; /* Prevent background scrolling */
}

.mobile-nav-overlay {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  padding: 40px 24px;
  gap: 24px;
  animation: fadeIn 0.3s ease-out;
}

.mobile-nav-overlay.active { display: flex; }

.mobile-nav-overlay a {
  font-size: 24px; font-weight: 700; color: var(--color-dark);
  border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 16px;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.big-impact-number { font-size: 100px; font-weight: 800; line-height: 1; margin: 20px 0; }
.roi-creative-subtitle { font-size: 18px; opacity: 0.7; text-align: center; }

/* =========================
   NEWSLETTER - AURA X: IMMERSIVE CAPTURE
   ========================= */
.newsletter-section {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 120px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

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

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-container h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.newsletter-container p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 550px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter-form input:focus {
  background: white;
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.3);
}

.newsletter-form button {
  background: var(--color-accent);
  color: var(--color-dark);
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(204, 255, 0, 0.5);
}

/* Pulsing effect */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.newsletter-form button:active {
  animation: pulse 0.6s ease;
}

/* =========================
   PARTNERS - AURA X: KINETIC GRID
   ========================= */
.partners-section {
  padding: 100px 0;
  background: var(--color-light);
  text-align: center;
  position: relative;
}

.partners-label {
  margin-bottom: 60px;
  opacity: 0.4;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--color-grey);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-item {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.6s var(--ease-out-expo);
  cursor: pointer;
  position: relative;
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease-elastic);
}

.partner-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 cols on mobile */
    gap: 20px;
  }
  .partner-item { height: 60px; }
}

/* =========================
   MASCOT ANIMATIONS & POSITIONS
   ========================= */

/* Hero Carrot */
.mascot-hero {
  position: absolute;
  width: 200px;
  bottom: 40px;
  /* Aligned relative to the phone-mockup container */
  left: -80px; 
  z-index: 15;
  transform: rotate(-10deg);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.hero-visual {
  /* Ensure relative positioning context for the carrot */
  position: relative; 
  /* ... existing styles ... */
}

.mascot-hero:hover {
  transform: rotate(-5deg) scale(1.1);
}

/* Runner Chili & Lemon */
.video-grid-container { overflow: visible !important; } /* FIX: Allow mascots to stick out */

.mascot-runner {
  position: absolute;
  top: -80px; /* Lifted up to sit on top edge */
  right: 15%;
  width: 100px;
  z-index: 20;
  animation: runMascot 3s ease-in-out infinite alternate;
}

.mascot-lemon {
  position: absolute;
  top: -70px;
  right: 5%; /* Chasing the chili */
  width: 90px;
  z-index: 19;
  animation: runMascot 3s ease-in-out infinite alternate-reverse;
}

@keyframes runMascot {
  0% { transform: translateY(0) rotate(5deg); }
  100% { transform: translateY(-15px) rotate(15deg); }
}

/* Hero Broccoli */
.mascot-hero-broccoli {
  position: absolute;
  width: 100px;
  top: 20px;
  right: -20px;
  z-index: 15;
  transform: rotate(15deg);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Mushroom (Rewards) */
.mascot-mushroom {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 80px;
  z-index: 5;
  opacity: 0.9;
  animation: float 6s ease-in-out infinite;
}

/* Avocado (Testimonials) */
.testimonials-section { overflow: visible !important; } /* FIX for Avocado */
.mascot-avocado {
  position: absolute;
  top: -60px; left: 10%;
  width: 110px;
  z-index: 10;
  transform: rotate(10deg);
}

/* Tomato & Banana (Newsletter) */
.mascot-tomato {
  position: absolute;
  bottom: 20px; left: 5%;
  width: 100px;
  animation: jump 1s ease-in-out infinite;
}

.mascot-banana {
  position: absolute;
  top: 20px; right: 5%;
  width: 100px;
  transform: rotate(-15deg);
}

@keyframes jump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Strawberry (Marquee) */
.marquee-section { position: relative; overflow: visible; z-index: 10; } /* Ensure visibility */

.mascot-strawberry {
  position: absolute;
  top: -70px; /* Sit on top edge */
  left: 15%;
  width: 100px;
  z-index: 20;
  transform: rotate(-5deg);
  animation: sway 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* Footer Eggplant */
.mascot-footer {
  width: 100px;
  margin-bottom: -20px; /* Overlap with logo */
  z-index: 10;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-footer:hover {
  transform: translateY(-10px) rotate(10deg);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .mascot-hero {
    width: 120px;
    left: -40px;
    bottom: 20%;
  }
  .mascot-runner { right: 5%; top: -60px; }
  .mascot-lemon { display: none; } /* Hide extras on smaller screens */
  .mascot-avocado { top: -40px; width: 80px; }
}

@media (max-width: 768px) {
  .mascot-hero { display: none; } /* Hide on mobile to avoid clutter */
  .mascot-runner { width: 80px; top: -40px; right: 0; }
  .mascot-broccoli { width: 80px; top: -30px; }
  .mascot-tomato, .mascot-banana { width: 70px; }
}

/* =========================
   FOOTER - AURA X: MINIMAL SIGNATURE
   ========================= */
footer {
  background: var(--color-dark);
  padding: 80px 0 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto 60px;
}

.footer-brand .logo {
  font-size: 32px;
  margin-bottom: 24px;
  justify-content: center;
}

.footer-brand .logo-icon {
  background: var(--color-accent);
  color: var(--color-dark);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-signature {
  margin-top: 24px;
  font-style: italic;
  font-size: 12px;
  color: rgba(204, 255, 0, 0.4);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }
  .video-grid { grid-template-columns: 1fr; }
  .testimonial-item { flex-direction: column !important; text-align: center; }
  .stats-banner { flex-direction: column; gap: 32px; }
  .bento-grid { grid-template-columns: 1fr; }
  .large-card, .small-card, .medium-card { grid-column: span 12; }
  .hero-title { font-size: 48px; }
  .marquee-section { transform: skewY(0); }
  .roi-scrolly-section { height: 250vh; }
  .big-impact-number { font-size: 64px; }
  .newsletter-form { flex-direction: column; }
}
