/* ============================================================
   FASMER SEVEN · Landing v2 — clean & professional
   Blanco dominante, verde institucional, naranja de marca como
   acento de conversión. Tipografía única: Outfit.
   Iconos: Lucide (sprite inline en el HTML).
   ============================================================ */

:root {
  /* Marca */
  --naranja: #F5900B;
  --naranja-deep: #DD7E00;
  --verde: #1E7A3C;
  --verde-deep: #0F3D22;
  --verde-noche: #0A2B17;

  /* Neutros */
  --blanco: #FFFFFF;
  --suave: #F6F8F6;
  --tinta: #15231A;
  --gris: #5C6B61;
  --linea: #E7ECE8;

  --sombra-s: 0 1px 3px rgba(21, 35, 26, .06);
  --sombra-m: 0 10px 30px rgba(21, 35, 26, .08);
  --sombra-l: 0 24px 60px rgba(21, 35, 26, .14);

  --radius: 16px;
  --radius-l: 24px;

  --font: "Outfit", system-ui, -apple-system, sans-serif;

  --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--tinta);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul[role="list"], ol[role="list"] { list-style: none; }

/* Iconos del sprite */
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 2.5rem); }

/* ---------- Accesibilidad ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--verde-deep); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 12px 0; text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--naranja); outline-offset: 3px; border-radius: 4px; }

/* ============ TIPOGRAFÍA ============ */
h1, h2, h3 { line-height: 1.12; letter-spacing: -.022em; text-wrap: balance; font-weight: 700; }

h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h1 em, h2 em { font-style: normal; color: var(--verde); }

.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #A85F00; margin-bottom: .9rem;
}

/* ============ MEDIA (imágenes con fallback automático) ============
   Las <figure data-media> muestran la foto si existe en assets/img/photos/.
   Si el archivo aún no se ha subido, onerror añade .media--pending y se
   muestra un placeholder de marca — el sistema "adopta" la imagen
   automáticamente en cuanto se sube con el nombre correcto. */
.media { position: relative; overflow: hidden; border-radius: var(--radius-l); background: var(--suave); }
.media img { width: 100%; height: 100%; object-fit: cover; }

.media--pending { display: grid; place-items: center; }
.media--pending::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(245, 144, 11, .10), transparent 70%),
    radial-gradient(50% 60% at 80% 85%, rgba(30, 122, 60, .12), transparent 70%),
    var(--suave);
}
.media--pending::after {
  content: "FASMER SEVEN"; position: relative;
  font-size: .72rem; font-weight: 700; letter-spacing: .3em; color: var(--gris);
  border: 1px solid var(--linea); background: rgba(255,255,255,.7);
  padding: .5rem 1rem; border-radius: 100px;
}

.media--hero { aspect-ratio: 8 / 9; box-shadow: var(--sombra-l); }
.media--card { aspect-ratio: 4 / 3; }
.media--tall { aspect-ratio: 4 / 5; box-shadow: var(--sombra-m); }
.media--overlap {
  aspect-ratio: 4 / 3; width: 56%;
  position: absolute; right: -6%; bottom: -10%;
  border: 6px solid var(--blanco); box-shadow: var(--sombra-l);
}
.media--banner { aspect-ratio: 16 / 7; margin-top: clamp(2.5rem, 5vh, 4rem); box-shadow: var(--sombra-m); }

.media__caption {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--verde-deep); font-size: .88rem; font-weight: 600;
  padding: .6rem 1.1rem; border-radius: 100px; box-shadow: var(--sombra-s);
}
.media__caption svg { color: var(--verde); }

/* ============ BOTONES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font); font-weight: 600; text-decoration: none;
  border-radius: 100px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  padding: .85rem 1.7rem; font-size: 1rem; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Texto oscuro sobre naranja: blanco sobre #F5900B da ~2.4:1 y no pasa WCAG AA */
.btn--primary { background: var(--naranja); color: var(--verde-noche); box-shadow: 0 6px 18px rgba(245, 144, 11, .3); }
.btn--primary:hover { background: #FFA52E; box-shadow: 0 10px 26px rgba(245, 144, 11, .38); }

.btn--outline { border-color: var(--linea); color: var(--tinta); background: var(--blanco); }
.btn--outline:hover { border-color: var(--verde); color: var(--verde); }

.btn--outline-light { border-color: rgba(255,255,255,.45); color: #fff; background: transparent; }
.btn--outline-light:hover { background: #fff; color: var(--verde-deep); }

.btn--ghost { color: var(--tinta); background: transparent; padding: .6rem 1rem; }
.btn--ghost:hover { background: var(--suave); }

.btn--sm { padding: .55rem 1.15rem; font-size: .92rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ============ HEADER ============ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled { border-bottom-color: var(--linea); box-shadow: var(--sombra-s); }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 100%; }

.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand img { border-radius: 50%; width: 42px; height: 42px; object-fit: cover; }
.brand__text { font-weight: 700; font-size: 1.22rem; color: var(--tinta); letter-spacing: -.01em; }
.brand__text em { font-style: normal; color: var(--verde); }

.nav { display: flex; gap: 1.6rem; }
.nav a {
  text-decoration: none; font-weight: 500; font-size: .97rem; color: var(--tinta);
  position: relative; padding: .25rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--verde); border-radius: 2px; transition: width .22s ease;
}
.nav a:hover::after { width: 100%; }
.nav__cta-mobile { display: none; }

.header__actions { display: flex; align-items: center; gap: .6rem; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2.5px; background: var(--tinta); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { padding-top: calc(var(--header-h) + clamp(2.8rem, 7vh, 5rem)); }

.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center; padding-bottom: clamp(3rem, 7vh, 5rem);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--verde-deep); background: var(--suave); border: 1px solid var(--linea);
  padding: .5rem 1.1rem; border-radius: 100px; margin-bottom: 1.6rem;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--verde); box-shadow: 0 0 0 4px rgba(30, 122, 60, .15); }

.hero__sub { font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--gris); max-width: 54ch; margin: 1.4rem 0 2.1rem; }
.hero__sub strong { color: var(--tinta); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.7rem; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 1.3rem; font-size: .94rem; font-weight: 500; color: var(--verde-deep); }
.hero__trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { color: var(--verde); width: 1.05em; height: 1.05em; }

/* Visual del hero: imagen grande + chips flotantes */
.hero__visual { position: relative; }

.hero__chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--blanco); color: var(--tinta); font-size: .85rem;
  border: 1px solid var(--linea); border-radius: 100px;
  padding: .65rem 1.15rem; box-shadow: var(--sombra-m);
  animation: float 7s ease-in-out infinite;
}
.hero__chip svg { color: var(--verde); }
.hero__chip strong { color: var(--verde-deep); }
.hero__chip--frio { top: 7%; left: -5%; }
.hero__chip--envio { bottom: 9%; right: -4%; animation-delay: 1.6s; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--linea); background: var(--blanco);
  overflow: hidden; padding: .85rem 0; white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; animation: marquee 34s linear infinite; will-change: transform; }
.marquee__track span { font-size: 1rem; font-weight: 500; color: var(--gris); letter-spacing: .02em; }
.marquee__track i { color: var(--naranja); font-style: normal; }

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

/* ============ STATS ============ */
.stats { padding: clamp(2.8rem, 6vh, 4.5rem) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1rem 1.2rem; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: var(--linea);
}
.stat strong { display: block; font-size: clamp(2.1rem, 3.4vw, 2.8rem); font-weight: 700; color: var(--verde); line-height: 1.05; margin-bottom: .4rem; letter-spacing: -.02em; }
.stat span { font-size: .92rem; color: var(--gris); }

/* ============ SECCIONES ============ */
.section { padding: clamp(4rem, 9vh, 6.5rem) 0; }
.section--soft { background: var(--suave); }

.section__head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vh, 3.2rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__lead { color: var(--gris); margin-top: 1rem; font-size: 1.06rem; }

.section__cta {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem;
  background: var(--suave); border: 1px solid var(--linea); border-radius: var(--radius);
  padding: 1.4rem 1.8rem; justify-content: space-between;
}
.section__cta p { color: var(--gris); max-width: 48ch; }

/* ============ FRUTAS ============ */
.fruits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.fruit-card {
  background: var(--blanco); border: 1px solid var(--linea); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fruit-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-m); }
.fruit-card:hover .media img { scale: 1.04; }
.fruit-card .media img { transition: scale .4s ease; }
.fruit-card .media { aspect-ratio: 4 / 3; border-radius: 0; }

.fruit-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.fruit-card h3 { font-size: 1.32rem; margin-bottom: .45rem; }
.fruit-card p { color: var(--gris); font-size: .96rem; margin-bottom: 1rem; }
.fruit-card__tag {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  color: var(--verde-deep); background: rgba(30, 122, 60, .09);
  border-radius: 100px; padding: .35rem .9rem;
}

/* ============ CALIDAD Y ORIGEN ============ */
.quality { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.quality__media { position: relative; padding-bottom: 12%; }
.quality__copy .section__head { margin-bottom: 1.8rem; }

.checklist { display: grid; gap: 1.4rem; }
.checklist li { display: flex; gap: 1.1rem; align-items: flex-start; }
.checklist__icon {
  display: grid; place-items: center; width: 52px; height: 52px; flex-shrink: 0;
  background: var(--blanco); color: var(--verde); border: 1px solid var(--linea);
  border-radius: 14px; box-shadow: var(--sombra-s);
}
.checklist__icon svg { width: 24px; height: 24px; }
.checklist h3 { font-size: 1.14rem; margin-bottom: .25rem; }
.checklist p { color: var(--gris); font-size: .96rem; }

/* ============ PROCESO ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step {
  position: relative; background: var(--blanco); border: 1px solid var(--linea);
  border-radius: var(--radius); padding: 1.8rem 1.6rem 1.7rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sombra-m); }
.step__icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  background: rgba(30, 122, 60, .08); color: var(--verde);
  border-radius: 14px; margin-bottom: 1.1rem;
}
.step__icon svg { width: 24px; height: 24px; }
.step__num {
  position: absolute; top: 1.4rem; right: 1.5rem;
  font-size: .85rem; font-weight: 700; color: #C9D3CC; letter-spacing: .06em;
}
.step h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.step p { color: var(--gris); font-size: .94rem; }

/* ============ CLIENTES ============ */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.audience__card {
  background: var(--blanco); border: 1px solid var(--linea); border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.audience__card:hover { transform: translateY(-4px); box-shadow: var(--sombra-m); }
.audience__icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  background: rgba(245, 144, 11, .1); color: var(--naranja-deep);
  border-radius: 14px; margin-bottom: 1.1rem;
}
.audience__icon svg { width: 24px; height: 24px; }
.audience__card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.audience__card p { font-size: .94rem; color: var(--gris); }

/* ============ FAQ ============ */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--blanco); border: 1px solid var(--linea); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--verde); box-shadow: var(--sombra-s); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600; font-size: 1.06rem; text-align: left;
  padding: 1.2rem 1.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400;
  color: var(--verde); transition: rotate .2s ease; flex-shrink: 0; line-height: 1;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { padding: 0 1.5rem 1.4rem; color: var(--gris); }
.faq details a { color: var(--verde); font-weight: 600; }

/* ============ CTA FINAL ============ */
.cta-panel {
  display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(2rem, 4vw, 4rem);
  background: linear-gradient(135deg, var(--verde-deep) 0%, var(--verde-noche) 100%);
  color: #fff; border-radius: 28px; padding: clamp(2.2rem, 5vw, 4rem);
  position: relative; overflow: clip; box-shadow: var(--sombra-l);
}
.cta-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(34rem 22rem at 100% 0%, rgba(245, 144, 11, .14), transparent 60%);
}
.cta-panel > * { position: relative; }
.cta-panel h2 { color: #fff; margin-bottom: 1rem; }
.cta-panel h2 em { color: #FFB938; font-style: normal; }
.cta-panel__copy > p { color: rgba(255,255,255,.78); max-width: 46ch; margin-bottom: 1.8rem; }
.cta-panel__btns { display: flex; flex-wrap: wrap; gap: .9rem; }

.cta-panel__info { font-style: normal; border-left: 1px solid rgba(255,255,255,.15); padding-left: clamp(1.5rem, 3vw, 3rem); align-self: center; }
.cta-panel__info h3 { font-size: 1.1rem; color: #FFB938; margin-bottom: 1.1rem; }
.cta-panel__info p { display: flex; gap: .7rem; font-size: .94rem; color: rgba(255,255,255,.78); margin-bottom: 1rem; }
.cta-panel__info p svg { margin-top: .2rem; color: #FFB938; }
.cta-panel__info strong { color: #fff; }

/* ============ FOOTER ============ */
.footer { background: var(--verde-noche); color: rgba(255,255,255,.72); padding: clamp(3rem, 6vh, 4.5rem) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding-bottom: 2.5rem; }

.brand--footer .brand__text { color: #fff; }
.brand--footer .brand__text em { color: #FFB938; }
.footer__brand p { font-size: .94rem; margin: 1.1rem 0 1.3rem; max-width: 38ch; }
.footer__social { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 600; color: #fff; font-size: .92rem; }
.footer__social svg { width: 18px; height: 18px; }
.footer__social:hover { color: #FFB938; }

.footer__col h3 { font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #FFB938; margin-bottom: 1.1rem; }
.footer__col a { display: block; text-decoration: none; font-size: .94rem; padding: .3rem 0; }
.footer__col a:hover { color: #fff; }
.footer__col p { font-size: .9rem; margin-top: .8rem; }

.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.4rem;
  font-size: .85rem; color: rgba(255,255,255,.5);
}

/* ============ WHATSAPP FLOTANTE ============ */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  display: grid; place-items: center; width: 56px; height: 56px;
  background: #25D366; color: #fff; border-radius: 50%;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.07); box-shadow: 0 14px 32px rgba(37, 211, 102, .5); }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; translate: 0 22px; transition: opacity .55s ease, translate .55s ease; }
.reveal.is-visible { opacity: 1; translate: 0 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 540px; margin-inline: auto; width: 100%; }
  .hero__chip--frio { left: 2%; }
  .hero__chip--envio { right: 2%; }
  .fruits { grid-template-columns: repeat(2, 1fr); }
  .quality { grid-template-columns: 1fr; }
  .quality__media { max-width: 560px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.6rem; }
  .stat:nth-child(3)::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
    flex-direction: column; gap: 0; background: var(--blanco);
    border-bottom: 1px solid var(--linea); box-shadow: var(--sombra-m);
    padding: .6rem 1.25rem 1.2rem;
    translate: 0 -130%; transition: translate .3s ease;
  }
  .nav.is-open { translate: 0 0; }
  .nav a { padding: .85rem 0; font-size: 1.06rem; border-bottom: 1px solid var(--linea); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav__cta-mobile { display: block; font-weight: 700; color: var(--naranja-deep); }

  .burger { display: flex; }
  .header__actions .btn--ghost { display: none; }
  .header__actions .btn--primary { display: none; }

  .hero { padding-top: calc(var(--header-h) + 2rem); }
  .hero__ctas .btn { width: 100%; }
  .hero__chip { font-size: .78rem; padding: .5rem .9rem; }

  .fruits { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .media--banner { aspect-ratio: 4 / 3; }
  .media--overlap { width: 62%; right: 0; }

  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel__info { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.6rem; }
  .cta-panel__btns .btn { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .section__cta { flex-direction: column; align-items: flex-start; }
}

/* ============ MOTION SAFETY ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; translate: 0 0; }
  .marquee__track { animation: none; }
}
