/* ═══════════════════════════════════════════════════════════════
   FACEMASK — style.css
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg-0:       #09090B;
  --bg-1:       #111827;
  --bg-2:       #1F2937;
  --glass:      rgba(255,255,255,0.04);
  --glass-b:    rgba(255,255,255,0.08);
  --glass-brd:  rgba(255,255,255,0.10);
  --text-w:     #FFFFFF;
  --text-g:     rgba(255,255,255,0.60);
  --text-d:     rgba(255,255,255,0.35);
  --or:         #FF6B35;
  --pk:         #FF1CF7;
  --vt:         #7928CA;
  --bl:         #2D9CDB;
  --gd:         #FFD60A;
  --gn:         #30D158;
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text-w);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; }
.gradient-text {
  background: linear-gradient(100deg, var(--or) 0%, var(--pk) 40%, var(--vt) 80%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Container ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* ── Section Header ── */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--or);
  background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.25);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-badge .material-symbols-outlined { font-size: 14px; }

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-g);
  max-width: 520px; margin: 0 auto 60px;
  text-align: center;
}

/* ── Reveal Animations ── */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.88); }

.revealed.reveal-up    { opacity: 1; transform: translateY(0); }
.revealed.reveal-left  { opacity: 1; transform: translateX(0); }
.revealed.reveal-right { opacity: 1; transform: translateX(0); }
.revealed.reveal-scale { opacity: 1; transform: scale(1); }

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

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--or), var(--pk));
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(255,107,53,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-primary:hover::after { background: rgba(255,255,255,0.08); }
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 0 60px rgba(255,107,53,0.5); }
.btn-primary .material-symbols-outlined { font-size: 20px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  cursor: pointer; text-decoration: none;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.03);
}
.btn-ghost .material-symbols-outlined { font-size: 20px; }
.btn-ghost-ring {
  position: absolute; inset: -4px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  animation: ringPulse 2.4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.15; transform: scale(1.06); }
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
#navbar.scrolled {
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 18px 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
}
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--or), var(--pk));
  position: relative;
  display: inline-block;
  box-shadow: 0 0 16px rgba(255,107,53,0.5);
}
.logo-mark::after {
  content: '';
  position: absolute; inset: 5px;
  background: rgba(255,255,255,0.9);
  border-radius: 3px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.logo-mark.sm { width: 22px; height: 22px; border-radius: 5px; }
.logo-mark.sm::after { inset: 4px; border-radius: 2px; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
}
.nav-links {
  list-style: none; display: flex; gap: 8px; margin: 0; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 6px 12px;
  border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-cta {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--or), var(--pk));
  color: #fff; text-decoration: none;
  font-size: 14px; font-weight: 600; font-family: 'Space Grotesk', sans-serif;
  padding: 9px 20px; border-radius: 100px;
  box-shadow: 0 0 24px rgba(255,107,53,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 0 36px rgba(255,107,53,0.5); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 24px 80px;
  max-width: 1160px; margin: 0 auto;
  overflow: visible;
}

#particle-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

.hero-bg-blobs {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--or), var(--pk));
  top: -150px; left: -150px;
  animation-duration: 15s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--vt), var(--bl));
  top: 20%; right: -100px;
  animation-duration: 18s; animation-delay: -5s;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--pk), var(--gd));
  bottom: 0; left: 30%;
  animation-duration: 22s; animation-delay: -10s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.05); }
  66%      { transform: translate(-30px,20px) scale(0.95); }
}

/* ambient fruits */
.ambient-fruits {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.af { position: absolute; opacity: 0.45; }
.af-1 { top: 15%; left:  8%; animation: afFloat1 9s ease-in-out infinite; }
.af-2 { top: 60%; left:  4%; animation: afFloat2 11s ease-in-out infinite; }
.af-3 { top: 20%; right: 6%; animation: afFloat1 13s ease-in-out infinite -3s; }
.af-4 { top: 72%; right: 8%; animation: afFloat2 10s ease-in-out infinite -6s; }
.af-5 { top: 42%; right: 2%; animation: afFloat1 14s ease-in-out infinite -9s; }

@keyframes afFloat1 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-22px) rotate(8deg); }
}
@keyframes afFloat2 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(18px) rotate(-6deg); }
}

/* mini fruits */
.mini-fruit {
  width: 48px; height: 48px; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.orange-fruit { background: radial-gradient(circle at 35% 30%, #FFAA44, #E06000); }
.apple-fruit  { background: radial-gradient(circle at 35% 30%, #FF4444, #BB0000); border-radius: 48% 48% 45% 45%; }
.lemon-fruit  { background: radial-gradient(circle at 35% 30%, #FFEE44, #D4AA00); border-radius: 30% 70% 70% 30% / 50%; width: 52px; }
.lime-fruit   { background: radial-gradient(circle at 35% 30%, #88EE44, #3E8800); }
.peach-fruit  { background: radial-gradient(circle at 35% 30%, #FFBB88, #E07040); }

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: 0;
}
.hero-title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 20px; margin-top: 8px;
}
.hero-sub {
  font-size: 17px; color: var(--text-g); line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700; color: #fff;
}
.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  background: linear-gradient(135deg, var(--or), var(--pk));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  display: block; font-size: 12px;
  color: var(--text-d); margin-top: 2px;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
}

/* Hero fruit stage */
.hero-fruit-stage {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
}

.fruit-glow-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,107,53,0.2);
}
.ring-1 { width: 320px; height: 320px; animation: ringRotate 12s linear infinite; }
.ring-2 { width: 420px; height: 420px; animation: ringRotate 18s linear infinite reverse; opacity: 0.5; }
.ring-3 { width: 520px; height: 520px; animation: ringRotate 25s linear infinite; opacity: 0.25;
  border-color: rgba(121,40,202,0.2);
}
@keyframes ringRotate {
  from { transform: rotate(0); } to { transform: rotate(360deg); }
}

.fruit-phone-frame {
  width: 220px;
  background: #0d0d0d;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  padding: 10px 10px 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  animation: phoneBob 5s ease-in-out infinite;
}
@keyframes phoneBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.phone-notch {
  width: 60px; height: 6px; background: #111;
  border-radius: 3px; margin: 0 auto 8px;
}
.phone-screen {
  background: #111;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/17;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* ── TALKING ORANGE (Hero) ── */
.talking-orange-wrap {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 40%, #1a0a00 0%, #0a0500 100%);
}

.talking-orange { position: relative; }
.orange-body {
  width: 110px; height: 110px;
  background: radial-gradient(circle at 35% 30%, #FFA533, #E05900);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 32px rgba(224,89,0,0.5), inset 0 -8px 20px rgba(0,0,0,0.25);
  animation: orangeBreathe 3.5s ease-in-out infinite;
}
@keyframes orangeBreathe {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}
.orange-texture {
  position: absolute; inset: 0; border-radius: 50%;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(255,180,80,0.5) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(255,180,80,0.4) 1px, transparent 1px),
    radial-gradient(circle at 50% 70%, rgba(255,180,80,0.3) 1px, transparent 1px),
    radial-gradient(circle at 20% 65%, rgba(255,180,80,0.3) 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(255,180,80,0.3) 1px, transparent 1px);
  background-size: 8px 8px, 10px 10px, 9px 9px, 7px 7px, 11px 11px;
}
.orange-stem {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 10px;
  background: #5a3000; border-radius: 2px;
}
.orange-leaf {
  position: absolute; top: 2px; left: 5px;
  width: 12px; height: 7px;
  background: #2d8a00;
  border-radius: 60% 0 60% 0;
  transform: rotate(-20deg);
}
.orange-face {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* Eyes */
.eye {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
}
.eye-left  { top: 30%; left: 22%; }
.eye-right { top: 30%; right: 22%; }
.eye-white {
  width: 28px; height: 28px; background: #fff;
  border-radius: 50%; position: relative; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.eye-iris {
  width: 17px; height: 17px;
  background: radial-gradient(circle at 35% 30%, #6b8dff, #1a3acc);
  border-radius: 50%; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -45%);
  transition: transform 0.1s;
}
.eye-pupil {
  width: 9px; height: 9px;
  background: #000; border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.eye-glint {
  width: 4px; height: 4px;
  background: #fff; border-radius: 50%;
  position: absolute; top: 15%; left: 20%;
}
.eyelid {
  position: absolute; left: 0; right: 0;
  background: #E05900;
  border-radius: 0 0 50% 50%;
  height: 0; top: 0;
  transition: height 0.12s ease;
}
.eyebrow {
  width: 22px; height: 4px;
  background: #3a1800; border-radius: 2px;
  margin-top: 2px;
  position: absolute; top: -8px;
  transition: transform 0.2s;
}
.eyebrow-left  { border-radius: 4px 4px 0 0; left: 3px; }
.eyebrow-right { border-radius: 4px 4px 0 0; right: 3px; transform: scaleX(-1); }

/* Mouth */
.mouth-wrap { position: absolute; bottom: 22%; }
.mouth-outer {
  width: 42px; height: 22px;
  background: #3a1800; border-radius: 0 0 21px 21px;
  overflow: hidden; border: 2px solid #2a1000; border-top: none;
}
.mouth-inner {
  width: 100%; height: 0;
  background: #c0392b;
  transition: height 0.08s ease;
  position: relative;
}
.mouth-teeth {
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px; background: #fff;
  border-radius: 0 0 4px 4px;
}
.mouth-tongue {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 12px;
  background: #e74c3c; border-radius: 50%;
  opacity: 0;
  transition: opacity 0.1s;
}
.nose-hint {
  position: absolute; top: 52%; left: 50%; transform: translate(-50%,-50%);
  width: 6px; height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
}

/* AR badges on phone */
.ar-badge {
  position: absolute;
  display: flex; align-items: center; gap: 4px;
  font-size: 8px; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 8px; border-radius: 6px;
}
.ar-badge .material-symbols-outlined { font-size: 10px; color: var(--gn); }
.ar-top-left  { top: 10px; left: 8px; }
.ar-top-right { top: 10px; right: 8px; }
.ar-dots { position: absolute; inset: 0; pointer-events: none; }
.ar-dot {
  position: absolute; width: 4px; height: 4px;
  background: rgba(48,209,88,0.8); border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
.d1 { top: 28%; left: 20%; animation-delay: 0s; }
.d2 { top: 28%; right: 20%; animation-delay: 0.3s; }
.d3 { top: 55%; left: 32%; animation-delay: 0.6s; }
.d4 { top: 55%; right: 32%; animation-delay: 0.9s; }
.d5 { top: 40%; left: 15%; animation-delay: 1.2s; }
.d6 { top: 40%; right: 15%; animation-delay: 1.5s; }
@keyframes dotPulse {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.5); }
}

/* Record bar */
.phone-rec-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  padding: 6px 12px;
  display: flex; align-items: center; gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.rec-dot {
  width: 7px; height: 7px; background: #FF3B30; border-radius: 50%;
  animation: recBlink 1s ease-in-out infinite;
}
@keyframes recBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
.rec-dot-sm {
  display: inline-block; width: 6px; height: 6px;
  background: #FF3B30; border-radius: 50%;
  animation: recBlink 1s ease-in-out infinite;
}
.rec-label { font-size: 9px; font-weight: 700; color: #FF3B30; letter-spacing: 0.1em; }
.rec-time  { font-size: 9px; color: rgba(255,255,255,0.7); margin-right: auto; font-family: monospace; }
.rec-waveform { display: flex; align-items: center; gap: 2px; }
.wv {
  width: 2px; border-radius: 1px; background: rgba(255,255,255,0.6);
  animation: wvAnim 0.4s ease-in-out infinite alternate;
}
.wv:nth-child(1) { height: 6px; animation-delay: 0s; }
.wv:nth-child(2) { height: 10px; animation-delay: 0.07s; }
.wv:nth-child(3) { height: 8px; animation-delay: 0.14s; }
.wv:nth-child(4) { height: 14px; animation-delay: 0.21s; }
.wv:nth-child(5) { height: 10px; animation-delay: 0.28s; }
.wv:nth-child(6) { height: 7px; animation-delay: 0.35s; }
.wv:nth-child(7) { height: 12px; animation-delay: 0.42s; }
.wv:nth-child(8) { height: 8px; animation-delay: 0.49s; }
@keyframes wvAnim {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0.3); }
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-d); font-size: 11px; letter-spacing: 0.08em;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════
   DEMO SECTION
══════════════════════════════════ */
#demo { background: var(--bg-1); text-align: center; }
#demo .section-title, #demo .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
#demo .section-badge { display: inline-flex; }

.demo-split {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; margin-bottom: 48px; flex-wrap: wrap;
}
.demo-before, .demo-after {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.demo-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-d);
}
.demo-label .material-symbols-outlined { font-size: 14px; }
.after-label { color: #FF3B30; }
.after-label .rec-dot-sm { margin-right: 2px; }

.demo-fruit-static, .demo-fruit-live {
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.static-orange {
  width: 90px; height: 90px;
  background: radial-gradient(circle at 35% 30%, #FFA533, #E05900);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(224,89,0,0.4);
}
.demo-fruit-cap {
  font-size: 12px; color: var(--text-d); letter-spacing: 0.06em;
}
.active-cap { color: #FF3B30; font-weight: 600; }

.demo-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.demo-arrow-inner {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--or), var(--pk));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(255,107,53,0.4);
  animation: arrowPulse 2s ease-in-out infinite;
}
.demo-arrow-inner .material-symbols-outlined { font-size: 24px; }
@keyframes arrowPulse {
  0%,100% { box-shadow: 0 0 30px rgba(255,107,53,0.4); }
  50%      { box-shadow: 0 0 50px rgba(255,107,53,0.7); }
}
.demo-arrow-label {
  font-size: 10px; color: var(--text-d); letter-spacing: 0.1em; text-transform: uppercase;
}

/* Demo live orange */
.demo-live-orange {
  width: 90px; height: 90px;
  background: radial-gradient(circle at 35% 30%, #FFA533, #E05900);
  border-radius: 50%; position: relative;
  box-shadow: 0 8px 28px rgba(224,89,0,0.5), 0 0 40px rgba(255,107,53,0.25);
  animation: orangeBreathe 2.2s ease-in-out infinite;
}
.dl-body { position: absolute; inset: 0; }
.dl-eye {
  position: absolute;
  width: 22px; height: 22px;
}
.dl-eye-l { top: 28%; left: 20%; }
.dl-eye-r { top: 28%; right: 20%; }
.dl-eyew {
  width: 100%; height: 100%; background: #fff;
  border-radius: 50%; position: relative; overflow: hidden;
}
.dl-iris {
  width: 13px; height: 13px;
  background: radial-gradient(circle at 35% 30%, #4a6fd4, #1230a0);
  border-radius: 50%; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -45%);
  animation: irisLook 4s ease-in-out infinite;
}
@keyframes irisLook {
  0%,100% { transform: translate(-50%, -45%); }
  25%      { transform: translate(-30%, -45%); }
  75%      { transform: translate(-70%, -45%); }
}
.dl-pupil {
  width: 7px; height: 7px; background: #000; border-radius: 50%;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.dl-mouth {
  position: absolute; bottom: 22%; left: 50%; transform: translateX(-50%);
  width: 32px; height: 0; background: #c0392b;
  border-radius: 0 0 16px 16px;
  border: 2px solid #3a1800; border-top: none;
  animation: demoMouthTalk 0.4s ease-in-out infinite alternate;
}
@keyframes demoMouthTalk {
  from { height: 4px; }
  to   { height: 14px; }
}

.demo-features-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.demo-feat {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 8px 18px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8);
}
.demo-feat .material-symbols-outlined {
  font-size: 16px;
  background: linear-gradient(135deg, var(--or), var(--pk));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ══════════════════════════════════
   FEATURES
══════════════════════════════════ */
#features .section-title,
#features .section-sub,
#features .section-badge { text-align: center; margin-left: auto; margin-right: auto; display: inline-flex; }
#features .section-title,
#features .section-sub { display: block; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

.feat-card {
  background: var(--glass); border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}
.feat-card-lg { grid-column: span 2; }

.feat-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(var(--accent), 0.15);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-icon-wrap .material-symbols-outlined {
  font-size: 22px; color: var(--accent);
}
.feat-title {
  font-size: 17px; font-weight: 700; margin-bottom: 8px;
}
.feat-desc {
  font-size: 14px; color: var(--text-g); line-height: 1.6;
}
.feat-glow {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gc), transparent 70%);
  border-radius: 50%; bottom: -100px; right: -60px;
  opacity: 0.12; pointer-events: none;
  transition: opacity 0.3s ease;
}
.feat-card:hover .feat-glow { opacity: 0.22; }

/* Eyes visual */
.feat-visual { margin-top: 20px; }
.eyes-visual { display: flex; gap: 16px; justify-content: flex-end; align-items: center; }
.fv-eye {
  width: 44px; height: 44px; background: #fff; border-radius: 50%;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.fv-iris {
  width: 26px; height: 26px;
  background: radial-gradient(circle at 35% 30%, #5b7ef5, #1429b8);
  border-radius: 50%; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -42%);
  animation: fvIrisMove 4s ease-in-out infinite;
}
@keyframes fvIrisMove {
  0%,100% { transform: translate(-50%, -42%); }
  33% { transform: translate(-35%, -50%); }
  66% { transform: translate(-65%, -42%); }
}
.fv-pupil {
  width: 13px; height: 13px; background: #000; border-radius: 50%;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.fv-glint {
  width: 5px; height: 5px; background: #fff; border-radius: 50%;
  position: absolute; top: 14%; left: 18%;
}

/* Share visual */
.share-visual { margin-top: 20px; }
.share-icon-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  max-width: 120px;
}
.si {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.si:hover { transform: scale(1.12); }
.si .material-symbols-outlined { font-size: 22px; color: #fff; }
.si-tiktok { background: linear-gradient(135deg, #000, #222); border: 1px solid rgba(255,255,255,0.15); }
.si-ig     { background: linear-gradient(135deg, #C13584, #E1306C, #F77737); }
.si-yt     { background: linear-gradient(135deg, #FF0000, #CC0000); }
.si-wa     { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
#how { background: var(--bg-0); }
#how .section-badge { display: inline-flex; margin-bottom: 16px; }
#how .section-title { margin-bottom: 64px; }
#how .section-badge, #how .section-title { text-align: center; display: block; }
#how .section-badge { display: flex; justify-content: center; }
#how .section-badge span { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.25); padding: 6px 14px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--or); }

.how-timeline {
  position: relative;
  display: flex; flex-direction: column; gap: 0;
  max-width: 700px; margin: 0 auto;
}
.how-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(255,107,53,0.4), rgba(255,28,247,0.4), transparent);
  transform: translateX(-50%);
}
.how-step {
  display: flex; align-items: center; gap: 32px;
  position: relative; z-index: 1;
  padding: 0 0 40px;
}
.how-step:nth-child(even) {
  flex-direction: row-reverse;
}
.how-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--or);
  background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.25);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
  /* sit on the center line */
  margin-left: calc(50% - 24px - 32px); /* will be overridden */
}
.how-step:nth-child(even) .how-num { margin-left: 0; margin-right: calc(50% - 24px - 32px); }

.how-card {
  flex: 1; max-width: 280px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.how-card:hover { transform: translateY(-4px); border-color: rgba(255,107,53,0.3); }
.how-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,28,247,0.2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.how-icon .material-symbols-outlined {
  font-size: 20px;
  background: linear-gradient(135deg, var(--or), var(--pk));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.how-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.how-card p  { font-size: 14px; color: var(--text-g); line-height: 1.6; }

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
#gallery { background: var(--bg-1); }
#gallery .section-badge,
#gallery .section-title,
#gallery .section-sub { text-align: center; display: block; }
#gallery .section-badge { display: flex; justify-content: center; }
#gallery .section-badge > * { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.25); padding: 6px 14px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--or); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-card {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.gallery-card:hover { transform: scale(1.04); border-color: rgba(255,255,255,0.2); }
.gallery-card:hover .gc-overlay { opacity: 1; }

.gc-orange     { background: radial-gradient(ellipse at 50% 30%, #1a0a00, #0a0400); }
.gc-apple      { background: radial-gradient(ellipse at 50% 30%, #1a0000, #060000); }
.gc-banana     { background: radial-gradient(ellipse at 50% 30%, #1a1500, #080600); }
.gc-watermelon { background: radial-gradient(ellipse at 50% 30%, #0a1a00, #030800); }
.gc-pineapple  { background: radial-gradient(ellipse at 50% 30%, #1a1200, #080600); }
.gc-avocado    { background: radial-gradient(ellipse at 50% 30%, #081a00, #030800); }
.gc-dog        { background: radial-gradient(ellipse at 50% 30%, #100a00, #080400); }
.gc-cat        { background: radial-gradient(ellipse at 50% 30%, #0a0015, #040008); }

.gc-fruit {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Gallery fruit shapes */
.gc-orange-body, .gc-apple-body, .gc-banana-body, .gc-watermelon-body,
.gc-pineapple-body, .gc-avocado-body, .gc-dog-body, .gc-cat-body {
  position: relative;
}
.gc-orange-body {
  width: 90px; height: 90px;
  background: radial-gradient(circle at 35% 30%, #FFA533, #E05900);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(224,89,0,0.5);
}
.gc-apple-body {
  width: 80px; height: 84px;
  background: radial-gradient(circle at 35% 30%, #FF4444, #AA0000);
  border-radius: 48% 48% 45% 45%;
  box-shadow: 0 8px 28px rgba(180,0,0,0.5);
}
.gc-banana-body {
  width: 100px; height: 50px;
  background: radial-gradient(ellipse at 35% 30%, #FFEE44, #C8A000);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-12deg);
  box-shadow: 0 8px 28px rgba(200,160,0,0.5);
}
.gc-watermelon-body {
  width: 100px; height: 70px;
  background: linear-gradient(to bottom, #30C030 30%, #E04040 30%);
  border-radius: 50% 50% 48% 48%;
  box-shadow: 0 8px 28px rgba(180,0,0,0.4);
  overflow: hidden;
}
.gc-watermelon-body::before {
  content:''; position:absolute; left:0; right:0; top:30%; height:3px; background: #111;
}
.gc-pineapple-body {
  width: 70px; height: 100px;
  background: radial-gradient(ellipse at 40% 35%, #FFCC44, #C88800);
  border-radius: 40% 40% 45% 45%;
  box-shadow: 0 8px 28px rgba(200,136,0,0.5);
}
.gc-pineapple-body::before {
  content: ''; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 24px;
  background: linear-gradient(135deg, #2d8a00, #1a5200);
  clip-path: polygon(50% 0%, 20% 100%, 80% 100%);
}
.gc-avocado-body {
  width: 76px; height: 100px;
  background: radial-gradient(ellipse at 35% 30%, #5a9632, #2a5a0c);
  border-radius: 40% 40% 50% 50%;
  box-shadow: 0 8px 28px rgba(42,90,12,0.5);
}
.gc-avocado-body::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -44%);
  width: 32px; height: 44px;
  background: radial-gradient(ellipse, #d4b068, #a07830);
  border-radius: 50%;
}
.gc-dog-body {
  width: 90px; height: 80px;
  background: radial-gradient(circle at 35% 30%, #d4a050, #986020);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(120,70,20,0.5);
}
.gc-cat-body {
  width: 90px; height: 80px;
  background: radial-gradient(circle at 35% 30%, #888898, #444454);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(60,60,80,0.5);
}
.dog-ear {
  position: absolute; width: 32px; height: 30px;
  background: #805020; border-radius: 40% 40% 50% 50%;
  top: -14px;
}
.dog-ear-l { left: 0; transform: rotate(-12deg); }
.dog-ear-r { right: 0; transform: rotate(12deg); }
.cat-ear {
  position: absolute; width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 22px solid #666676;
  top: -16px;
}
.cat-ear-l { left: 6px; transform: rotate(-8deg); }
.cat-ear-r { right: 6px; transform: rotate(8deg); }

/* Gallery eyes / mouth */
.gc-eye {
  position: absolute;
  width: 26px; height: 26px;
  background: #fff; border-radius: 50%; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gc-eye-l { top: 28%; left: 18%; }
.gc-eye-r { top: 28%; right: 18%; }
.gc-eye-sm { width: 20px; height: 20px; }
.gc-iris {
  width: 16px; height: 16px;
  background: radial-gradient(circle at 35% 30%, #4a6fd4, #1230a0);
  border-radius: 50%; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -45%);
}
.gc-iris-green { background: radial-gradient(circle at 35% 30%, #44c060, #127030); }
.gc-iris-brown { background: radial-gradient(circle at 35% 30%, #a06030, #603010); }
.gc-iris-dark  { background: radial-gradient(circle at 35% 30%, #404040, #101010); }
.gc-iris-teal  { background: radial-gradient(circle at 35% 30%, #20c0c0, #008080); }
.gc-pupil {
  width: 8px; height: 8px; background: #000; border-radius: 50%;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.gc-pupil-slit {
  width: 4px; height: 12px; background: #000; border-radius: 2px;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.gc-mouth {
  position: absolute; bottom: 20%; left: 50%; transform: translateX(-50%);
  width: 32px; height: 14px;
  background: #c0392b; border-radius: 0 0 16px 16px;
  border: 2px solid #3a1800; border-top: none;
}
.gc-mouth-sm  { width: 22px; height: 10px; border-radius: 0 0 11px 11px; }
.gc-mouth-wide { width: 44px; height: 16px; border-radius: 0 0 22px 22px; }
.gc-mouth-cat  {
  width: 28px; height: 10px;
  border-left: 2px solid #3a1800; border-right: 2px solid #3a1800; border-bottom: 2px solid #3a1800;
  background: none; border-radius: 0 0 8px 8px;
}
.gc-mouth-cat::before, .gc-mouth-cat::after {
  content: ''; position: absolute; width: 12px; height: 7px;
  border-radius: 0 0 6px 0;
  border-right: 2px solid #3a1800;
  border-bottom: 2px solid #3a1800;
  top: -4px;
}
.gc-mouth-cat::before { left: -2px; transform: rotate(180deg) scaleX(-1); border-radius: 0 0 0 6px; }
.gc-mouth-cat::after  { right: -2px; }

.gc-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 20px 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.gc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700; color: #fff;
}
.gc-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--or);
  background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.3);
  display: inline-block; padding: 2px 8px; border-radius: 100px;
  width: fit-content;
}

/* ══════════════════════════════════
   COMPARE
══════════════════════════════════ */
#compare { background: var(--bg-0); }
#compare .section-badge,
#compare .section-title,
#compare .section-sub { text-align: center; display: block; }
#compare .section-badge { display: flex; justify-content: center; }

.compare-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%; border-collapse: collapse;
  min-width: 560px;
}
.compare-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-feature-col { width: 50%; }
.compare-us { background: rgba(255,107,53,0.06); }
.compare-table th {
  padding: 16px 20px; text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #fff;
}
.compare-feature-col { text-align: left; }
.compare-us-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,28,247,0.2));
  border: 1px solid rgba(255,107,53,0.3);
  padding: 6px 16px; border-radius: 100px;
}
.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.compare-table td {
  padding: 14px 20px; font-size: 14px; color: var(--text-g);
}
td.compare-us { text-align: center; }
td.compare-them { text-align: center; }
.material-symbols-outlined.check   { color: var(--gn); font-size: 22px; }
.material-symbols-outlined.cross   { color: #FF3B30; font-size: 22px; opacity: 0.6; }
.material-symbols-outlined.partial { color: var(--gd); font-size: 22px; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
#testimonials { background: var(--bg-1); overflow: hidden; }
#testimonials .section-badge,
#testimonials .section-title { text-align: center; display: block; }
#testimonials .section-badge { display: flex; justify-content: center; margin-bottom: 16px; }

.testimonials-track-wrap {
  overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.testimonials-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: testimonialsScroll 36s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testimonialsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tcard {
  width: 300px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.tcard:hover {
  border-color: rgba(255,107,53,0.3);
  background: rgba(255,255,255,0.07);
}
.tcard-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.tcard-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 15px; color: #fff;
  flex-shrink: 0;
}
.tcard-name   { font-size: 14px; font-weight: 600; }
.tcard-handle { font-size: 12px; color: var(--text-d); margin-top: 2px; }
.tcard-stars  { margin-left: auto; font-size: 12px; color: var(--gd); letter-spacing: 1px; }
.tcard-text   { font-size: 14px; color: var(--text-g); line-height: 1.65; margin-bottom: 16px; }
.tcard-platform {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-d);
  font-weight: 500;
}
.tcard-platform .material-symbols-outlined {
  font-size: 14px;
  background: linear-gradient(135deg, var(--or), var(--pk));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ══════════════════════════════════
   DOWNLOAD CTA
══════════════════════════════════ */
#download {
  position: relative;
  background: var(--bg-0);
}
.download-inner {
  position: relative;
  text-align: center;
  padding: 100px 24px 120px;
  overflow: hidden;
}

.dl-bg-blobs { position: absolute; inset: 0; overflow: hidden; }
.dl-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.22;
}
.dl-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--or), var(--pk));
  top: -100px; left: -100px;
  animation: blobFloat 14s ease-in-out infinite;
}
.dl-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--vt), var(--bl));
  bottom: -80px; right: -80px;
  animation: blobFloat 18s ease-in-out infinite -7s;
}
.dl-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--pk), var(--gd));
  top: 40%; left: 40%;
  animation: blobFloat 22s ease-in-out infinite -3s;
}

.dl-fruits { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.dl-fruit { position: absolute; }
.dlf-1 { top: 10%; left:  8%; animation: afFloat1 9s ease-in-out infinite; }
.dlf-2 { top: 65%; left:  5%; animation: afFloat2 12s ease-in-out infinite; }
.dlf-3 { top: 25%; right: 7%; animation: afFloat1 11s ease-in-out infinite -4s; }
.dlf-4 { top: 70%; right: 10%; animation: afFloat2 10s ease-in-out infinite -8s; }
.dlf-5 { top: 45%; left: 1%;  animation: afFloat1 15s ease-in-out infinite -2s; }
.dlf-6 { top: 15%; right: 1%; animation: afFloat2 13s ease-in-out infinite -6s; }

.dl-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.dl-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.dl-sub {
  font-size: 17px; color: var(--text-g); line-height: 1.7;
  margin-bottom: 40px;
}
.dl-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.dl-badges {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.dl-badges span {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-g);
}
.dl-badges .material-symbols-outlined { font-size: 16px; color: var(--gn); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#footer {
  background: #07070A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-tagline { font-size: 13px; color: var(--text-d); line-height: 1.7; margin: 14px 0 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-btn:hover { background: rgba(255,107,53,0.2); color: var(--or); transform: translateY(-2px); }
.social-btn .material-symbols-outlined { font-size: 17px; }

.footer-links-group h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 14px; color: var(--text-d); text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links-group a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px; max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text-d);
}

/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-inner {
  position: relative; width: 90%; max-width: 360px;
  background: var(--bg-1); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px; overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-inner { transform: scale(1); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
  z-index: 10;
}
.modal-content { padding: 28px; }
.modal-demo-screen {
  background: radial-gradient(ellipse at 50% 40%, #1a0a00 0%, #080300 100%);
  border-radius: 20px; padding: 40px 20px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  min-height: 300px; justify-content: center;
}

/* Modal orange */
.modal-talking-orange {
  width: 140px; height: 140px;
  background: radial-gradient(circle at 35% 30%, #FFA533, #E05900);
  border-radius: 50%; position: relative;
  box-shadow: 0 12px 48px rgba(224,89,0,0.6);
  animation: orangeBreathe 2.5s ease-in-out infinite;
}
.mto-body { position: absolute; inset: 0; }
.mto-eye {
  position: absolute; width: 36px; height: 36px;
  background: #fff; border-radius: 50%; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.mto-eye-l { top: 29%; left: 18%; }
.mto-eye-r { top: 29%; right: 18%; }
.mto-iris {
  width: 22px; height: 22px;
  background: radial-gradient(circle at 35% 30%, #6b8dff, #1a3acc);
  border-radius: 50%; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -42%);
  animation: irisLook 3s ease-in-out infinite;
}
.mto-pupil {
  width: 11px; height: 11px; background: #000; border-radius: 50%;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.mto-glint { width: 5px; height: 5px; background: #fff; border-radius: 50%; position: absolute; top: 14%; left: 18%; }
.mto-mouth {
  position: absolute; bottom: 22%; left: 50%; transform: translateX(-50%);
  width: 52px; height: 0; background: #c0392b;
  border-radius: 0 0 26px 26px;
  border: 2px solid #3a1800; border-top: none;
  animation: mtoMouthTalk 0.35s ease-in-out infinite alternate;
}
@keyframes mtoMouthTalk {
  from { height: 6px; }
  to   { height: 22px; }
}

.modal-waveform {
  display: flex; align-items: center; gap: 3px; height: 32px;
}
.mwv {
  width: 3px; border-radius: 2px; background: linear-gradient(to top, var(--or), var(--pk));
  animation: wvAnim 0.5s ease-in-out infinite alternate;
}
.mwv:nth-child(1) { height: 8px; animation-delay: 0s; }
.mwv:nth-child(2) { height: 18px; animation-delay: 0.06s; }
.mwv:nth-child(3) { height: 28px; animation-delay: 0.12s; }
.mwv:nth-child(4) { height: 22px; animation-delay: 0.18s; }
.mwv:nth-child(5) { height: 30px; animation-delay: 0.24s; }
.mwv:nth-child(6) { height: 20px; animation-delay: 0.30s; }
.mwv:nth-child(7) { height: 26px; animation-delay: 0.36s; }
.mwv:nth-child(8) { height: 14px; animation-delay: 0.42s; }
.mwv:nth-child(9) { height: 10px; animation-delay: 0.48s; }

.modal-caption {
  font-size: 13px; color: var(--text-g); font-style: italic;
  text-align: center; padding: 0 10px; line-height: 1.5;
}

/* ══════════════════════════════════
   HOW SECTION - override for centered layout
══════════════════════════════════ */
/* Fix How steps positioning */
.how-step:nth-child(odd)  .how-num { order: 2; margin: 0 auto; }
.how-step:nth-child(even) .how-num { order: 2; margin: 0 auto; }
.how-step:nth-child(odd)  .how-card { order: 1; text-align: right; }
.how-step:nth-child(even) .how-card { order: 3; text-align: left; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  #hero .hero-content { align-items: center; }
  #hero .hero-sub br { display: none; }
  #hero .hero-stats { justify-content: center; }
  .hero-fruit-stage { justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card-lg { grid-column: span 1; }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  .how-step, .how-step:nth-child(even) { flex-direction: column; align-items: flex-start; padding-left: 60px; }
  .how-line { left: 24px; }
  .how-step .how-num,
  .how-step:nth-child(even) .how-num { margin: 0; position: absolute; left: 0; order: 0; }
  .how-step .how-card,
  .how-step:nth-child(even) .how-card { order: 1; text-align: left; max-width: 100%; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #hero { padding: 100px 16px 64px; }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }

  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 13px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 6px; text-align: center; }

  .demo-split { gap: 20px; }

  .how-step, .how-step:nth-child(even) { padding-left: 56px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .dl-actions { flex-direction: column; align-items: center; }
}

/* ── Magnetic button helper (set by JS) ── */
.magnetic { will-change: transform; transition: transform 0.2s ease, box-shadow 0.2s ease; }
