/* =============================================================
   LEITON — Importadora de autopartes
   Archetype: Brutalist Grid (adaptado a identidad Leiton: rojo/negro/blanco,
   tipografía condensada, bloques numerados diagonales)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #ffffff;
  --bg-dark:   #0a0a0a;
  --bg-dark-2: #141414;
  --ink:       #0a0a0a;
  --ink-mute:  #58585c;
  --cream:     #f5f5f3;
  --accent:    #e3140b;   /* rojo Leiton */
  --accent-2:  #a10d07;   /* rojo oscuro / hover */
  --line:      rgba(10,10,10,0.14);
  --line-dark: rgba(245,245,243,0.16);

  --display: "Anton", "Barlow Condensed", Impact, sans-serif;
  --kicker-font: "Barlow Condensed", "Inter", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  background: var(--bg-dark);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1; letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: #fff;
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Defensive: split-text elements must never be invisible if reveal JS is stale */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   3. Utilities
   ============================================================= */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.col-span-4 { grid-column: span 12; }
.col-span-6 { grid-column: span 12; }
.col-span-8 { grid-column: span 12; }
@media (min-width: 960px) {
  .col-span-4 { grid-column: span 4; }
  .col-span-6 { grid-column: span 6; }
  .col-span-8 { grid-column: span 8; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.kicker {
  font-family: var(--kicker-font);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75em;
}
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; }
h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 0.98;
}
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.05; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--kicker-font);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: .85em 1.6em;
  border: 2px solid var(--ink);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), transform .2s var(--ease-out);
}
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-dark { border-color: #fff; color: #fff; margin-top: 2.5rem; }
.btn-ghost-dark:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 1.05em 2em; font-size: 1.05rem; }

/* Section number tag — matches Leiton's own social content style */
.section { position: relative; padding: clamp(4rem, 9vw, 7.5rem) var(--gutter); }
.section-tag {
  position: absolute;
  top: 0;
  right: var(--gutter);
  background: var(--accent);
  color: #fff;
  padding: 0.5em 1.1em 0.4em;
  font-family: var(--kicker-font);
  font-weight: 700;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}
.section-tag span { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
.section-tag-dark { background: #fff; color: var(--ink); }

.section-light { background: var(--bg); color: var(--ink); border-top: 1px solid var(--line); }
.section-dark  { background: var(--bg-dark); color: #fff; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-dark .kicker { color: var(--accent); }

/* =============================================================
   6. Sections
   ============================================================= */

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: var(--nav-h);
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: .2rem; }
.nav-logo-mark {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.nav-logo-on { color: var(--accent); }
.nav-logo-sub {
  font-family: var(--kicker-font);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.nav-links { display: none; gap: 2rem; font-family: var(--kicker-font); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.95rem; }
.nav-links a { position: relative; padding-block: .3rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--accent);
  transition: right .3s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }
.nav-cta { display: none; white-space: nowrap; }
.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
}
.nav-burger span { display: block; height: 2px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: flex; flex-direction: column; gap: 0;
  max-height: 0; overflow: hidden;
  background: var(--bg);
  border-top: 1px solid transparent;
  transition: max-height .35s var(--ease-out), border-color .35s;
}
.nav-mobile.is-open { max-height: 400px; border-top-color: var(--line); }
.nav-mobile a {
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line);
  font-family: var(--kicker-font); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
}
.nav-mobile .btn { margin: 1rem var(--gutter); justify-content: center; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--bg-dark);
  color: #fff;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 5rem;
  overflow: clip;
}
.hero-stripes {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-stripes span {
  position: absolute;
  width: 60vw; height: 22vw;
  transform: skewX(-18deg);
  opacity: 0.9;
}
.hero-stripes span:nth-child(1) { background: var(--accent); right: -10vw; bottom: -8vw; }
.hero-stripes span:nth-child(2) { background: #fff; right: -18vw; bottom: 6vw; height: 6vw; opacity: 0.08; }
.hero-stripes span:nth-child(3) { background: var(--accent); right: 4vw; bottom: -18vw; height: 10vw; opacity: 0.35; }

.hero-inner {
  position: relative;
  display: flex; flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
  max-width: 90rem;
  margin-inline: auto;
}
.hero-content { max-width: 34rem; }
@media (min-width: 960px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem);
  }
  .hero-content { max-width: 40rem; }
}
.hero-kicker {
  font-family: var(--kicker-font); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--accent); margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  line-height: 0.96;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.hero-title em { font-style: normal; color: var(--accent); }
.split-word { display: inline-block; }
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.78);
  max-width: 38ch;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Brand mark — mix-blend-mode:screen drops the image's black background
   seamlessly onto the dark hero without needing image editing.
   IMPORTANT: the blend-mode lives on this outer element (not the <img>)
   because the float animation's `transform` makes THIS element the one
   that creates a new stacking context. If mix-blend-mode were on the
   <img> instead, it would only blend against its sibling (the glow)
   inside that isolated context and paint as an opaque box over the
   real hero background — put both on the same element to avoid that. */
.hero-logo-art {
  position: relative;
  flex-shrink: 0;
  width: clamp(240px, 36vw, 400px);
  aspect-ratio: 950 / 840;
  display: flex; align-items: center; justify-content: center;
  animation: heroLogoFloat 6s var(--ease-out) infinite;
  mix-blend-mode: screen;
}
.hero-logo-art::before {
  content: "";
  position: absolute; inset: -12%;
  background: radial-gradient(closest-side, rgba(227,20,11,0.22), transparent 74%);
  filter: blur(28px);
  z-index: 0;
}
.hero-logo-art img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .hero-logo-art { animation: none; } }
@media (min-width: 960px) { .hero-logo-art { width: clamp(280px, 27vw, 440px); } }
.hero .btn-ghost { border-color: #fff; color: #fff; }
.hero .btn-ghost:hover { background: #fff; color: var(--ink); }

.hero-grid-line {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 2.25rem;
  height: 1px; background: rgba(255,255,255,0.14); z-index: 1;
}

/* Mouse-reactive glow — subtle, functional micro-effect (not gated) */
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(
    480px circle at var(--mx, 50%) var(--my, 30%),
    rgba(227, 20, 11, 0.16), transparent 65%
  );
  transition: background 0.4s var(--ease-out);
}

/* Bottom category ticker — fills empty lower space, reinforces catalog */
.hero-ticker {
  position: absolute; left: 0; right: 0; bottom: 4.75rem; z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-ticker-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: heroTicker 32s linear infinite;
  font-family: var(--kicker-font);
  font-weight: 600;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.hero-ticker-track span { padding-inline: 1.1rem; }
.hero-ticker-track span:not(:last-child)::after {
  content: "//"; margin-left: 1.1rem; color: var(--accent); opacity: 0.7;
}
@keyframes heroTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-ticker-track { animation-duration: 90s; } }

/* Scroll cue */
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: 2.9rem; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0.65;
  transition: opacity .25s var(--ease-out);
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-line { width: 1px; height: 34px; background: rgba(255,255,255,0.35); }
.hero-scroll-chevron {
  width: 8px; height: 8px;
  border-right: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
  animation: heroScrollBounce 1.8s var(--ease-out) infinite;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(4px, 4px); }
}
@media (max-width: 719px) { .hero-scroll { display: none; } }

/* ---------- 01 Manifiesto ---------- */
.manifesto { margin-top: 1rem; }
.manifesto-head h2 { margin-bottom: 0; }
.manifesto-body p { margin-bottom: 1.25rem; color: var(--ink-mute); }
.manifesto-body p.lede { color: var(--ink); margin-bottom: 1.5rem; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: .5rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
  max-width: 16ch;
}

/* ---------- 02 Catálogo ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 720px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  background: var(--bg);
  padding: 1.75rem 1.5rem;
  min-height: 200px;
  display: flex; flex-direction: column;
  transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.cat-num {
  font-family: var(--kicker-font); font-weight: 700; color: var(--accent);
  font-size: 0.9rem; margin-bottom: 1.25rem;
  transition: color .25s var(--ease-out);
}
.cat-card h3 { margin-bottom: .6rem; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.cat-card p { font-size: 0.9rem; color: var(--ink-mute); transition: color .25s var(--ease-out); }
.cat-card:hover { background: var(--ink); color: #fff; }
.cat-card:hover .cat-num { color: var(--accent); }
.cat-card:hover p { color: rgba(255,255,255,0.75); }

.cat-card-cta { background: var(--accent); color: #fff; justify-content: center; }
.cat-card-cta h3 { margin-bottom: .5rem; }
.cat-card-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.cat-card-cta a { font-family: var(--kicker-font); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.cat-card-cta:hover { background: var(--ink); }

/* ---------- 03 Marcas ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding-block: 1.25rem;
  margin-bottom: 3rem;
}
.marquee-track {
  display: flex; gap: clamp(2rem, 6vw, 5rem);
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee-track span:nth-child(odd) { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 60s; } }

.brand-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-dark); border: 1px solid var(--line-dark);
}
@media (min-width: 720px) { .brand-grid { grid-template-columns: repeat(5, 1fr); } }
.brand-card {
  background: var(--bg-dark); padding: 1.75rem 1.25rem;
  transition: background .25s var(--ease-out);
}
.brand-card h3 { margin-bottom: .6rem; }
.brand-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.brand-card:hover { background: var(--accent); }
.brand-card:hover p { color: rgba(255,255,255,0.9); }

/* ---------- 04 Comparativa ---------- */
.compare {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 720px) { .compare { grid-template-columns: 1fr auto 1fr; align-items: stretch; } }
.compare-col { border: 2px solid var(--ink); padding: 2rem clamp(1.5rem, 3vw, 2.5rem); }
.compare-good { border-color: var(--ink); }
.compare-bad { border-color: var(--accent); }
.compare-col h3 { margin-bottom: 1.25rem; }
.compare-bad h3 { color: var(--accent); }
.compare-col li { padding-block: .55rem; border-top: 1px solid var(--line); font-size: 0.98rem; display: flex; gap: .6em; align-items: baseline; }
.compare-col li:first-child { border-top: none; }
.compare-good li::before { content: "✓"; color: var(--ink); font-weight: 700; }
.compare-bad li::before { content: "✕"; color: var(--accent); font-weight: 700; }
.compare-vs {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.4rem; color: var(--ink-mute);
  padding-block: .5rem;
}

/* ---------- 05 Por qué Leiton ---------- */
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 720px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .reasons-grid { grid-template-columns: repeat(5, 1fr); } }
.reason-card { background: var(--bg); padding: 1.75rem 1.5rem; transition: background .25s var(--ease-out), color .25s; }
.reason-num { display: block; font-family: var(--display); color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; transition: color .25s; }
.reason-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.reason-card p { font-size: 0.88rem; color: var(--ink-mute); transition: color .25s; }
.reason-card:hover { background: var(--ink); color: #fff; }
.reason-card:hover .reason-num { color: var(--accent); }
.reason-card:hover p { color: rgba(255,255,255,0.75); }

/* ---------- 06 Contenido / redes ---------- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1rem; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-card { border: 1px solid var(--line-dark); overflow: hidden; }
.gallery-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter .4s var(--ease-out), transform .5s var(--ease-out);
}
.gallery-card:hover img { filter: grayscale(0); transform: scale(1.04); }
.gallery-card figcaption { padding: 1.1rem 1.25rem; font-size: 0.92rem; color: rgba(255,255,255,0.72); border-top: 1px solid var(--line-dark); }

/* ---------- 07 Contacto ---------- */
.contact-grid { align-items: start; }
.contact-lede { color: var(--ink-mute); margin: 1.25rem 0 2rem; max-width: 34ch; }
.contact-details { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
.contact-details dt { font-family: var(--kicker-font); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.82rem; color: var(--accent); margin-bottom: .35rem; }
.contact-details dd { color: var(--ink-mute); }
.contact-details a:hover { color: var(--accent); }
.contact-map { min-height: 340px; border: 1px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #fff; padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem; }
.footer-inner {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { margin-top: 1rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col h4 { font-family: var(--kicker-font); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.85rem; color: var(--accent); margin-bottom: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a:hover { color: var(--accent); }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  padding-bottom: 1.25rem; margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}

/* =============================================================
   7. Effects
   ============================================================= */
@keyframes countPulse { from { opacity: 0.4; } to { opacity: 1; } }

/* =============================================================
   8. Responsive tweaks
   ============================================================= */
@media (max-width: 719px) {
  .stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .compare-vs { padding-block: 0; }
}

/* =============================================================
   9. Reduced motion (intrusive only)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition-duration: .01ms; }
  .hero-scroll-chevron { animation: none; }
}
