/* ═══════════════════════════════════════════════════════════
   CHEZ APU — Design System
   Dark futuristic · Glassmorphism · Neon accents
   Fonts: Fredoka (headings) · Inter (body)
═══════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --bg:            hsl(260 60% 6%);
  --bg-card:       hsl(260 50% 11%);
  --bg-deep:       hsl(260 60% 4%);

  --primary:       hsl(48 85% 48%);
  --primary-dark:  hsl(48 85% 35%);
  --primary-glow:  hsl(48 85% 48% / .45);

  --accent:        hsl(180 100% 50%);
  --accent-glow:   hsl(180 100% 50% / .4);

  --neon-purple:   hsl(270 100% 65%);
  --neon-pink:     hsl(330 100% 62%);

  --text:          hsl(60 100% 95%);
  --text-muted:    hsl(260 20% 58%);
  --text-dim:      hsl(260 20% 40%);

  --border:        hsl(260 30% 24%);
  --glass-bg:      hsl(260 50% 14% / .65);
  --glass-border:  hsl(260 50% 50% / .2);

  --radius-sm:     .5rem;
  --radius:        1rem;
  --radius-lg:     1.5rem;
  --radius-xl:     2rem;

  --font-heading:  'Fredoka', 'Inter', sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --shadow-glow-gold:   0 0 40px hsl(48 85% 48% / .35);
  --shadow-glow-cyan:   0 0 40px hsl(180 100% 50% / .3);
  --shadow-glow-purple: 0 0 40px hsl(270 100% 65% / .3);
  --shadow-card:        0 8px 32px hsl(260 60% 4% / .6);

  --transition: .2s ease;
  --transition-slow: .4s ease;
}

/* ─── Section themes ────────────────────────────────────── */
#boutique {
  --s-primary:     hsl(35 90% 55%);
  --s-primary-glow: hsl(35 90% 55% / .4);
  --s-accent:      hsl(12 100% 62%);
  --s-accent-glow: hsl(12 100% 62% / .35);
  --s-neon:        hsl(48 100% 60%);
  --s-bg-tint:     hsl(30 60% 8% / .5);
  --s-border-anim: border-flow;
}
#bots {
  --s-primary:     hsl(210 100% 60%);
  --s-primary-glow: hsl(210 100% 60% / .4);
  --s-accent:      hsl(150 90% 45%);
  --s-accent-glow: hsl(150 90% 45% / .35);
  --s-neon:        hsl(195 100% 55%);
  --s-bg-tint:     hsl(215 60% 8% / .6);
  --s-border-anim: border-flow-blue;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px; /* hauteur navbar fixe */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input { font-family: inherit; }

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--neon-purple) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(48 85% 36%) 100%);
  color: hsl(260 60% 6%);
  box-shadow: 0 4px 20px var(--primary-glow);
  position: relative; overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, hsl(0 0% 100% / .35) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
.btn--primary:hover { box-shadow: 0 6px 30px var(--primary-glow); }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover { color: var(--text); border-color: var(--text-muted); }

.btn--glow { box-shadow: var(--shadow-glow-gold); }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: .5rem 1rem; font-size: .85rem; }
.btn--full { width: 100%; }

/* ─── Badges ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .9rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--cyan   { background: hsl(180 100% 50% / .12); color: var(--accent); border: 1px solid hsl(180 100% 50% / .25); }
.badge--purple { background: hsl(270 100% 65% / .12); color: var(--neon-purple); border: 1px solid hsl(270 100% 65% / .25); }
.badge--gold   { background: hsl(48 85% 48% / .12); color: var(--primary); border: 1px solid hsl(48 85% 48% / .3); }
.badge--pink   { background: hsl(330 100% 62% / .12); color: var(--neon-pink); border: 1px solid hsl(330 100% 62% / .25); }

/* ─── Spinner ───────────────────────────────────────────── */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes float-x {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(8px); }
}
@keyframes pulse-glow-gold {
  0%, 100% { box-shadow: 0 0 20px hsl(48 85% 48% / .3), 0 0 60px hsl(48 85% 48% / .1); }
  50%       { box-shadow: 0 0 40px hsl(48 85% 48% / .6), 0 0 100px hsl(48 85% 48% / .2); }
}
@keyframes pulse-glow-cyan {
  0%, 100% { box-shadow: 0 0 20px hsl(180 100% 50% / .25), 0 0 60px hsl(180 100% 50% / .08); }
  50%       { box-shadow: 0 0 40px hsl(180 100% 50% / .55), 0 0 100px hsl(180 100% 50% / .18); }
}
@keyframes pulse-glow-blue {
  0%, 100% { box-shadow: 0 0 20px hsl(210 100% 55% / .3), 0 0 60px hsl(210 100% 55% / .1); }
  50%       { box-shadow: 0 0 40px hsl(210 100% 55% / .6), 0 0 100px hsl(210 100% 55% / .2); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes border-flow {
  0%   { border-color: hsl(48 85% 48% / .4); }
  33%  { border-color: hsl(180 100% 50% / .4); }
  66%  { border-color: hsl(270 100% 65% / .4); }
  100% { border-color: hsl(48 85% 48% / .4); }
}
@keyframes border-flow-blue {
  0%   { border-color: hsl(210 100% 55% / .4); }
  33%  { border-color: hsl(150 90% 45% / .4); }
  66%  { border-color: hsl(270 100% 65% / .4); }
  100% { border-color: hsl(210 100% 55% / .4); }
}
@keyframes particle-rise {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  100% { transform: translateY(-80px) scale(.3); opacity: 0; }
}
@keyframes scan-line {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes neon-text-pulse {
  0%, 100% { text-shadow: 0 0 10px currentColor, 0 0 30px currentColor; }
  50%       { text-shadow: 0 0 20px currentColor, 0 0 60px currentColor, 0 0 100px currentColor; }
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(40px, -30px) scale(1.08); }
  50%  { transform: translate(-20px, 50px) scale(.95); }
  75%  { transform: translate(-50px, -20px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes slide-up-fade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-width {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes matrix-rain {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 1000%; }
}

/* ═══════════════════════════════════════════════════════════
   AGE GATE
═══════════════════════════════════════════════════════════ */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsl(260 60% 4%) 0%, hsl(270 60% 8%) 100%);
  padding: 1rem;
}
.age-gate.hidden { display: none; }

.age-gate__card {
  max-width: 480px; width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 80px hsl(270 60% 20% / .4);
}
.age-gate__logo {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; margin-bottom: 1.5rem;
}
.age-gate__logo img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.age-gate__brand {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 700; color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
}
.age-gate__icon { font-size: 3rem; margin-bottom: 1rem; }
.age-gate__title {
  font-family: var(--font-heading);
  font-size: 1.75rem; margin-bottom: .75rem; color: var(--text);
}
.age-gate__text { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.age-gate__text strong { color: var(--text); }
.age-gate__actions {
  display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem;
}
.age-gate__legal { font-size: .78rem; color: var(--text-dim); }
.age-gate__legal a { color: var(--text-muted); text-decoration: underline; }
.age-gate__legal a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 2rem); max-width: 760px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); backdrop-filter: blur(20px);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { transform: translateX(-50%) translateY(100px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }
.cookie-banner__content {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex; align-items: flex-start; gap: .75rem; flex: 1; min-width: 200px;
}
.cookie-banner__icon { font-size: 1.5rem; flex-shrink: 0; }
.cookie-banner__text p { font-size: .875rem; color: var(--text-muted); line-height: 1.5; }
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .5rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   PROMO BAR
═══════════════════════════════════════════════════════════ */
.promo-bar {
  background: linear-gradient(90deg, var(--primary-dark), hsl(48 85% 42%));
  overflow: hidden; padding: .5rem 0;
  position: relative; z-index: 50;
}
.promo-bar__track {
  display: flex; gap: 4rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  color: hsl(260 60% 8%);
  font-weight: 600; font-size: .85rem;
  padding: 0 2rem;
}
.promo-bar__track span { flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .35s cubic-bezier(.4,0,.2,1), background var(--transition-slow);
}
.navbar.scrolled { background: hsl(260 60% 6% / .95); }
.navbar--hidden { transform: translateY(-110%); }

.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 2rem;
}
.navbar__logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
  flex-shrink: 0;
}
.navbar__logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.navbar__links {
  display: flex; align-items: center; gap: .25rem;
}
.navbar__link {
  padding: .5rem .9rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.navbar__link:hover, .navbar__link.active {
  color: var(--text); background: hsl(260 50% 20% / .5);
}

.navbar__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; border-radius: var(--radius-sm);
}
.navbar__burger span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.navbar__mobile {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
  padding: .75rem 1.25rem;
  gap: .25rem;
}
.navbar__mobile-link {
  display: block; padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500; color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.navbar__mobile-link:hover { color: var(--text); background: hsl(260 50% 20% / .4); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 6rem 0 4rem;
}

/* Animated background */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, hsl(270 60% 15% / .6), transparent),
              radial-gradient(ellipse 60% 40% at 80% 80%, hsl(48 80% 15% / .3), transparent),
              var(--bg-deep);
}
/* Scan line effect */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, hsl(270 100% 65% / .015) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  animation: scan-line 8s linear infinite;
  opacity: .4;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .15;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .3;
  will-change: transform;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(var(--neon-purple), transparent 70%);
  top: -150px; left: -150px;
  animation: orb-drift 18s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(var(--primary), transparent 70%);
  bottom: -100px; right: -100px;
  animation: orb-drift 22s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(var(--accent), transparent 70%);
  top: 40%; left: 50%;
  animation: orb-drift 14s ease-in-out infinite;
  animation-delay: -7s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
  position: relative; z-index: 1;
  max-width: 680px; text-align: center; margin: 0 auto;
}
.hero__badge { margin-bottom: 1.5rem; }
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-family: var(--font-heading);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.6;
}
.hero__ctas {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-value {
  display: block; font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 700; color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
}
.hero__stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-arrow {
  display: block; width: 24px; height: 24px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ═══════════════════════════════════════════════════════════
   FEATURES BAR
═══════════════════════════════════════════════════════════ */
.features-bar {
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 1.5rem 0;
}
.features-bar__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  display: flex; align-items: center; gap: 1rem;
}
.feature-item__icon { font-size: 1.75rem; flex-shrink: 0; }
.feature-item strong { display: block; font-size: .9rem; color: var(--text); }
.feature-item p { font-size: .8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.section { padding: 6rem 0; }
.section--dark {
  background: linear-gradient(180deg, transparent, hsl(260 60% 5%), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Animated section divider */
.section-divider {
  width: 100%; height: 2px; position: relative; overflow: hidden;
  margin: 0;
}
.section-divider::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--neon-purple), transparent);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}
.section__header {
  text-align: center; margin-bottom: 3.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-heading); font-weight: 700;
}
.section__subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }

/* ─── Section: Boutique (puff palette) ─────────────────── */
#boutique {
  position: relative; overflow: hidden;
}
#boutique::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, hsl(35 80% 12% / .6), transparent),
    radial-gradient(ellipse 50% 60% at 90% 80%, hsl(12 80% 10% / .4), transparent);
}
#boutique .container { position: relative; z-index: 1; }
#boutique .section__title .gradient-text {
  background: linear-gradient(135deg, hsl(35 90% 55%), hsl(12 100% 62%), hsl(48 100% 60%));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}
#boutique .filter-tab--active {
  background: hsl(35 90% 55%); border-color: hsl(35 90% 55%); color: hsl(30 60% 8%);
}
#boutique .filter-tab:hover { border-color: hsl(35 90% 55%); color: hsl(35 90% 55%); }
#boutique .product-card:hover {
  box-shadow: var(--shadow-card), 0 0 40px hsl(35 90% 55% / .2);
  border-color: hsl(35 80% 40% / .45);
}
#boutique .product-card__model { color: hsl(35 90% 55%); }
#boutique .product-card__buy {
  background: linear-gradient(135deg, hsl(35 90% 55%), hsl(12 100% 48%));
}
#boutique .product-card__buy:hover { box-shadow: 0 0 30px hsl(35 90% 55% / .5); }
#boutique .product-card__price { color: hsl(35 90% 55%); text-shadow: 0 0 15px hsl(35 90% 55% / .5); }
#boutique .search-box:focus-within { border-color: hsl(35 90% 55%); box-shadow: 0 0 0 3px hsl(35 90% 55% / .2); }
#boutique .products-cta__note { animation-name: border-flow; }

/* ─── Section: Bots (tech/AI palette) ──────────────────── */
#bots {
  position: relative; overflow: hidden;
}
#bots::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, hsl(210 80% 10% / .7), transparent),
    radial-gradient(ellipse 50% 60% at 10% 90%, hsl(150 60% 8% / .5), transparent);
}
#bots::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(hsl(210 100% 60% / .03) 1px, transparent 1px);
  background-size: 100% 3px;
  animation: matrix-rain 20s linear infinite;
}
#bots .container { position: relative; z-index: 1; }
#bots .section__title .gradient-text {
  background: linear-gradient(135deg, hsl(210 100% 60%), hsl(195 100% 55%), hsl(150 90% 45%));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}
#bots .bot-feature {
  border-color: hsl(210 60% 30% / .2);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
#bots .bot-feature:hover {
  border-color: hsl(210 100% 60% / .35);
  box-shadow: 0 0 30px hsl(210 100% 60% / .12);
}
#bots .bot-feature__icon { color: hsl(210 100% 65%); }
#bots .pricing-card--featured {
  border-color: hsl(210 100% 60% / .5);
  box-shadow: 0 0 60px hsl(210 100% 60% / .2), var(--shadow-card);
  animation: pulse-glow-blue 3s ease-in-out infinite;
}
#bots .pricing-card__amount { color: hsl(210 100% 65%); }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════════════════ */
.products-toolbar {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.search-box {
  flex: 1; min-width: 240px;
  display: flex; align-items: center; gap: .75rem;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: .75rem 1rem;
  backdrop-filter: blur(12px);
  transition: border-color var(--transition);
}
.search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.search-box__icon { font-size: 1rem; flex-shrink: 0; opacity: .7; }
.search-box__input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: .95rem;
}
.search-box__input::placeholder { color: var(--text-dim); }

.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-tab {
  padding: .5rem 1.1rem; border-radius: 99px;
  font-size: .85rem; font-weight: 500;
  border: 1px solid var(--border); color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab--active {
  background: var(--primary); color: hsl(260 60% 6%);
  border-color: var(--primary); font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.products-loading { grid-column: 1/-1; text-align: center; padding: 4rem 0; color: var(--text-muted); }
.products-empty { text-align: center; padding: 4rem 0; color: var(--text-muted); }
.products-cta { text-align: center; margin-top: 3rem; }
.products-cta__note {
  display: inline-block;
  font-size: .85rem; color: var(--text-muted);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 99px; padding: .55rem 1.5rem;
  backdrop-filter: blur(12px);
  animation: border-flow 6s linear infinite;
}

/* Product Card */
.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 40px hsl(48 85% 48% / .15);
  border-color: hsl(260 50% 40% / .4);
}

.product-card__image {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--bg-deep);
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--bg-card), hsl(270 50% 14%));
}
.product-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  padding: .25rem .65rem;
  border-radius: 99px; font-size: .75rem; font-weight: 700;
  background: var(--primary); color: hsl(260 60% 6%);
  text-transform: uppercase; letter-spacing: .04em;
}
.product-card__badge--stock-low,
.product-card__badge[data-badge="Stock limité"] {
  background: var(--neon-pink); color: white;
}

.product-card__body {
  padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem;
}
.product-card__model {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--accent);
}
.product-card__name {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  line-height: 1.3; color: var(--text);
}
.product-card__desc {
  font-size: .83rem; color: var(--text-muted); line-height: 1.5; flex: 1;
}
.product-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .75rem; padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.product-card__price {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  color: var(--primary); text-shadow: 0 0 15px var(--primary-glow);
}
.product-card__price small { font-size: .9rem; }
.product-card__buy {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: hsl(260 60% 6%); font-weight: 700; font-size: .85rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card__buy:hover {
  box-shadow: var(--shadow-glow-gold);
  transform: scale(1.04);
}
.product-card--out-of-stock { opacity: .55; }
.product-card__rupture-tag {
  font-size: .8rem; font-weight: 700; color: var(--neon-pink);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT MODAL
═══════════════════════════════════════════════════════════ */
.product-modal {
  position: fixed; inset: 0; z-index: 8000;
  display: flex; align-items: flex-end;
}
@media (min-width: 640px) {
  .product-modal { align-items: center; justify-content: center; }
}
.product-modal[hidden] { display: none; }

.product-modal__overlay {
  position: absolute; inset: 0;
  background: hsl(260 60% 4% / .75);
  backdrop-filter: blur(6px);
}

.product-modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 600px;
  background: hsl(260 50% 10%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow-y: auto; max-height: 92vh;
  box-shadow: 0 -20px 60px hsl(260 60% 4% / .8);
  animation: slide-up-fade .3s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
}
@media (min-width: 640px) {
  .product-modal__panel {
    border-radius: var(--radius-xl);
    max-height: 85vh;
    flex-direction: row;
    max-width: 780px;
  }
}

.product-modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: hsl(260 50% 20% / .8); color: var(--text);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
  border: 1px solid var(--glass-border);
}
.product-modal__close:hover { background: hsl(260 50% 30%); transform: scale(1.1); }

.product-modal__image-wrap {
  flex-shrink: 0;
  aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card), hsl(270 50% 14%));
}
@media (min-width: 640px) {
  .product-modal__image-wrap { width: 280px; border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
}
@media (max-width: 639px) {
  .product-modal__image-wrap { width: 100%; max-height: 200px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
}
.product-modal__image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-modal__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}

.product-modal__body {
  flex: 1; padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 1.1rem;
  overflow-y: auto;
}

.product-modal__model-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: hsl(35 90% 55%);
}
.product-modal__name {
  font-family: var(--font-heading); font-size: 1.5rem; line-height: 1.2;
}
.product-modal__desc { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.product-modal__price-display {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: hsl(35 90% 55%); text-shadow: 0 0 20px hsl(35 90% 55% / .4);
}
.product-modal__price-display small { font-size: 1.1rem; }
.modal-price__unit { font-size: .85rem; color: var(--text-muted); font-family: var(--font-body); }

.product-modal__section { display: flex; flex-direction: column; gap: .6rem; }
.product-modal__section-label {
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em;
}

/* Flavor chips */
.flavor-grid {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.flavor-chip {
  padding: .4rem .9rem; border-radius: 99px;
  border: 1px solid var(--glass-border); background: var(--glass-bg);
  color: var(--text-muted); font-size: .82rem; font-weight: 500;
  transition: all var(--transition); backdrop-filter: blur(8px);
}
.flavor-chip:hover {
  border-color: hsl(35 90% 55%); color: hsl(35 90% 55%);
  background: hsl(35 90% 55% / .08);
}
.flavor-chip--active {
  background: hsl(35 90% 55%); color: hsl(30 60% 6%);
  border-color: hsl(35 90% 55%); font-weight: 700;
  box-shadow: 0 0 16px hsl(35 90% 55% / .4);
}

/* Quantity stepper */
.qty-control {
  display: flex; align-items: center; gap: .75rem;
  width: fit-content;
}
.qty-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--glass-border); background: var(--glass-bg);
  color: var(--text); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: hsl(35 90% 55%); color: hsl(35 90% 55%); background: hsl(35 90% 55% / .1); }
.qty-value {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  min-width: 2rem; text-align: center;
}

.product-modal__note {
  font-size: .82rem; color: var(--text-muted); text-align: center;
  font-style: italic;
}
.product-modal__rupture {
  text-align: center; padding: .75rem;
  background: hsl(330 100% 62% / .1); border: 1px solid hsl(330 100% 62% / .2);
  border-radius: var(--radius); color: var(--neon-pink); font-weight: 600; font-size: .9rem;
}
.product-modal__buy { margin-top: .25rem; transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition); }

/* ═══════════════════════════════════════════════════════════
   BOTS SECTION
═══════════════════════════════════════════════════════════ */
.bot-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-bottom: 4rem;
}
.bot-feature {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition);
}
.bot-feature:hover { transform: translateY(-4px); border-color: hsl(260 50% 45% / .4); }
.bot-feature__icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.bot-feature strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: .4rem; color: var(--text); }
.bot-feature p { font-size: .875rem; color: var(--text-muted); line-height: 1.5; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
  align-items: start;
}

.pricing-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2rem;
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.pricing-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px var(--primary-glow), var(--shadow-card);
  background: linear-gradient(135deg, hsl(260 50% 13%), hsl(48 60% 10%));
}
.pricing-card--featured::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, var(--primary-glow), transparent 60%);
  pointer-events: none;
}

.pricing-card--owned {
  border-color: hsl(270 100% 65% / .5);
  box-shadow: 0 0 40px hsl(270 100% 65% / .2), var(--shadow-card);
  background: linear-gradient(135deg, hsl(270 50% 10%), hsl(310 50% 10%));
  animation: pulse-glow-purple 4s ease-in-out infinite;
}
.pricing-card--owned::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, hsl(270 100% 65% / .08), transparent 60%);
  pointer-events: none;
}
@keyframes pulse-glow-purple {
  0%, 100% { box-shadow: 0 0 20px hsl(270 100% 65% / .2), var(--shadow-card); }
  50%       { box-shadow: 0 0 50px hsl(270 100% 65% / .4), var(--shadow-card); }
}

.pricing-card__badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--primary); color: hsl(260 60% 6%);
  padding: .3rem .8rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.pricing-card__badge--owned {
  background: var(--neon-purple); color: white;
}

.pricing-card__amount--owned {
  color: var(--neon-purple) !important;
  text-shadow: 0 0 20px hsl(270 100% 65% / .5) !important;
  font-size: 2.4rem !important;
}
.pricing-card__from {
  display: block;
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--neon-purple);
  opacity: .8; margin-bottom: .1rem;
}

.btn--owned {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .75rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; width: 100%;
  background: linear-gradient(135deg, hsl(270 100% 55%), hsl(310 100% 48%));
  color: white;
  box-shadow: 0 4px 20px hsl(270 100% 65% / .35);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.btn--owned::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, hsl(0 0% 100% / .25) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
.btn--owned:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 35px hsl(270 100% 65% / .55);
}
.pricing-card__label {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); font-weight: 600;
}
.pricing-card__price { margin-top: .25rem; }
.pricing-card__amount {
  font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700;
  color: var(--primary); text-shadow: 0 0 20px var(--primary-glow);
  line-height: 1;
}
.pricing-card__amount span { font-size: 1.3rem; }
.pricing-card__period { display: block; font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }

.pricing-card__features {
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.pricing-card__features li {
  font-size: .9rem; color: var(--text-muted); line-height: 1.4;
  padding-left: .25rem;
}
.pricing-card__features li:has(✅) { color: var(--text); }

.bot-cta-banner {
  background: linear-gradient(135deg, hsl(260 60% 12%), hsl(270 60% 15%));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.bot-cta-banner::before {
  content: '🤖';
  position: absolute; right: 6rem; top: 50%; transform: translateY(-50%);
  font-size: 6rem; opacity: .08;
}
.bot-cta-banner__content h3 {
  font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: .3rem;
}
.bot-cta-banner__content p { color: var(--text-muted); font-size: .9rem; }

/* Agents IA info box */
.agents-info {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: hsl(210 60% 8% / .8);
  border: 1px solid hsl(210 100% 60% / .2);
  border-radius: var(--radius-lg); padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
  animation: border-flow-blue 8s linear infinite;
}
.agents-info::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, hsl(210 100% 60% / .04), transparent 60%);
  pointer-events: none;
}
.agents-info__icon {
  font-size: 2.25rem; flex-shrink: 0;
  filter: drop-shadow(0 0 12px hsl(210 100% 60% / .5));
}
.agents-info strong {
  color: var(--text); font-size: 1rem; display: block; margin-bottom: .4rem;
}
.agents-info p {
  color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin: 0;
}

/* Demo info box */
.demo-info {
  text-align: center;
  background: hsl(150 90% 45% / .05);
  border: 1px solid hsl(150 90% 45% / .2);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  color: var(--text-muted); font-size: .95rem; line-height: 1.7;
  backdrop-filter: blur(12px);
  position: relative;
}
.demo-info strong { color: hsl(150 90% 55%); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}
.contact-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  text-align: center; backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: hsl(260 50% 45% / .4);
  box-shadow: var(--shadow-card), 0 0 30px hsl(270 60% 20% / .3);
}
.contact-card__icon { font-size: 2.5rem; }
.contact-card strong { font-size: 1.05rem; }
.contact-card span:not(.contact-card__tag) { font-size: .9rem; color: var(--text-muted); }
.contact-card__tag {
  margin-top: .25rem;
  padding: .2rem .65rem; border-radius: 99px;
  font-size: .75rem; font-weight: 600;
  background: hsl(180 100% 50% / .1); color: var(--accent);
  border: 1px solid hsl(180 100% 50% / .2);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
  margin-top: 4rem;
}
.footer__inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer__brand { display: flex; flex-direction: column; gap: .5rem; }
.footer__logo { width: 48px; border-radius: 50%; margin-bottom: .25rem; }
.footer__brand-name {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  color: var(--primary); text-shadow: 0 0 15px var(--primary-glow);
}
.footer__tagline { font-size: .85rem; color: var(--text-muted); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col {
  display: flex; flex-direction: column; gap: .6rem;
}
.footer__col strong { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text); margin-bottom: .25rem; }
.footer__col a { font-size: .85rem; color: var(--text-muted); transition: color var(--transition); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  background: hsl(260 60% 4%);
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer__bottom p { font-size: .8rem; color: var(--text-dim); }
.footer__rgpd-note { color: var(--text-muted) !important; }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════════ */
.legal-page { max-width: 800px; margin: 0 auto; padding: 6rem 1.25rem 4rem; }
.legal-page h1 {
  font-size: 2.2rem; margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.legal-page .subtitle { color: var(--text-muted); margin-bottom: 3rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-family: var(--font-heading); font-size: 1.3rem;
  color: var(--primary); margin-bottom: .75rem;
  border-bottom: 1px solid var(--border); padding-bottom: .5rem;
}
.legal-section p { color: var(--text-muted); line-height: 1.8; margin-bottom: .75rem; font-size: .95rem; }
.legal-section ul { padding-left: 1.25rem; }
.legal-section ul li { color: var(--text-muted); line-height: 1.8; font-size: .95rem; }
.legal-section a { color: var(--accent); text-decoration: underline; }
.legal-back { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 2rem; color: var(--text-muted); font-size: .9rem; }
.legal-back:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__burger { display: flex; }

  .hero { padding: 4rem 0 3rem; text-align: center; }
  .hero__stats { gap: 1rem; }
  .hero__stat-divider { display: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { grid-template-columns: 1fr 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { order: -1; }

  .bot-cta-banner { flex-direction: column; text-align: center; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .products-toolbar { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .footer__links { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-bar__grid { grid-template-columns: 1fr 1fr; }
  .age-gate__card { padding: 2rem 1.25rem; }
}

/* ─── Scroll reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered delays for grids */
.products-grid .product-card:nth-child(2) { transition-delay: .08s; }
.products-grid .product-card:nth-child(3) { transition-delay: .16s; }
.products-grid .product-card:nth-child(4) { transition-delay: .24s; }
.products-grid .product-card:nth-child(5) { transition-delay: .32s; }
.bot-features .bot-feature:nth-child(2) { transition-delay: .08s; }
.bot-features .bot-feature:nth-child(3) { transition-delay: .16s; }
.bot-features .bot-feature:nth-child(4) { transition-delay: .24s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: .1s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: .2s; }
.pricing-grid .pricing-card:nth-child(4) { transition-delay: .3s; }

/* ─── Focus / accessibility ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
