/* Rapide marketing — ink + citrus, cool paper (no purple / cream retail clichés) */
:root {
  --ink: #0c1214;
  --ink-soft: #12262c;
  --paper: #eef2f1;
  --paper-2: #d8ebe6;
  --line: rgba(12, 18, 20, 0.12);
  --muted: #5a676c;
  --citrus: #d6ff3f;
  --citrus-deep: #b8e000;
  --signal: #ff5a1f;
  --teal: #0e7c7b;
  --teal-soft: #b8f2e6;
  --ocean: #023e8a;
  --sand: #ffe8cc;
  --device: #10181b;
  --device-screen: #f4f7f6;
  --font-display: "Syne", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 72rem;
  --header-h: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--citrus);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--ink) !important;
  background: var(--citrus);
  padding: 0.45rem 0.9rem;
  text-decoration: none;
  font-weight: 600;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem var(--space) 1rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer a {
  text-decoration: none;
  padding: 0.75rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 820px) {
  .site-nav {
    display: flex;
  }

  .nav-toggle,
  .nav-drawer {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--citrus);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--citrus-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  outline: 1px solid color-mix(in srgb, var(--paper) 45%, transparent);
}

.btn--ghost:hover {
  background: color-mix(in srgb, var(--paper) 12%, transparent);
}

/* Hero — one composition, brand-first, full-bleed visual */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 70% 35%, rgba(214, 255, 63, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 45% at 15% 80%, rgba(14, 124, 123, 0.35), transparent 50%),
    linear-gradient(160deg, #0c1214 0%, #152026 48%, #0c1214 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 47px,
      rgba(238, 242, 241, 0.04) 47px,
      rgba(238, 242, 241, 0.04) 48px
    );
  animation: hero-breathe 10s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  from {
    filter: saturate(1);
  }
  to {
    filter: saturate(1.15);
  }
}

.hero__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.device {
  position: absolute;
  background: var(--device);
  border: 1px solid rgba(238, 242, 241, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: device-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.device--tablet {
  width: min(52vw, 26rem);
  aspect-ratio: 4 / 3;
  border-radius: 1.1rem;
  padding: 0.65rem;
  top: 14%;
  left: 8%;
  transform: rotate(-6deg);
  animation-delay: 0.15s;
}

.device--caja {
  width: min(38vw, 18rem);
  aspect-ratio: 5 / 4;
  border-radius: 0.75rem;
  padding: 0.55rem;
  right: 6%;
  bottom: 28%;
  transform: rotate(4deg);
  animation-delay: 0.35s;
}

@keyframes device-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.96);
  }
  to {
    opacity: 1;
  }
}

.device--tablet {
  animation-name: device-in-tablet;
}

.device--caja {
  animation-name: device-in-caja;
}

@keyframes device-in-tablet {
  from {
    opacity: 0;
    transform: rotate(-6deg) translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: rotate(-6deg) translateY(0);
  }
}

@keyframes device-in-caja {
  from {
    opacity: 0;
    transform: rotate(4deg) translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: rotate(4deg) translateY(0);
  }
}

.device__screen {
  height: 100%;
  background: var(--device-screen);
  color: var(--ink);
  border-radius: 0.55rem;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.device__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.device__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
}

.device__lines li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.device__lines i {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--paper-2);
}

.device__lines .is-live i {
  background: var(--signal);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.device__lines b {
  font-weight: 600;
}

.device__lines em {
  font-style: normal;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.device__total {
  margin: auto 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.device__hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero__flow-line {
  position: absolute;
  width: min(28vw, 12rem);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--citrus), transparent);
  top: 48%;
  left: 42%;
  transform: rotate(-18deg);
  opacity: 0;
  animation: line-in 1s ease 0.7s forwards;
}

@keyframes line-in {
  to {
    opacity: 0.9;
  }
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) var(--space) clamp(2.5rem, 7vw, 4.5rem);
  background: linear-gradient(to top, rgba(12, 18, 20, 0.92) 0%, rgba(12, 18, 20, 0.55) 55%, transparent 100%);
}

.brand-hero {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--citrus);
  opacity: 0;
  transform: translateY(0.6rem);
  animation: copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.hero h1 {
  margin: 0 0 0.85rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.hero__lede {
  margin: 0 0 1.5rem;
  max-width: 36ch;
  color: color-mix(in srgb, var(--paper) 78%, transparent);
  opacity: 0;
  animation: copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}

@keyframes copy-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .device--tablet {
    width: 70vw;
    top: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    animation-name: device-in-tablet-m;
  }

  .device--caja {
    width: 46vw;
    right: 6%;
    bottom: 36%;
  }

  .hero__flow-line {
    display: none;
  }

  @keyframes device-in-tablet-m {
    from {
      opacity: 0;
      transform: translateX(-50%) rotate(-4deg) translateY(1.5rem);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) rotate(-4deg) translateY(0);
    }
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section h2 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section__lede {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.125rem;
}

.section__lede strong {
  color: var(--ink);
  font-weight: 600;
}

.section__inner--narrow h2 {
  max-width: 22ch;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
}

.section--odoo {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(214, 255, 63, 0.35), transparent 55%),
    linear-gradient(135deg, #dff7f2 0%, var(--paper) 55%, #fff4e6 100%);
  border-bottom: 1px solid var(--line);
}

.section--odoo .section__lede strong {
  color: var(--ink);
}

.odoo-points {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .odoo-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.odoo-points li {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border-top: 3px solid var(--teal);
}

.odoo-points li:nth-child(2) {
  border-top-color: var(--signal);
}

.odoo-points li:nth-child(3) {
  border-top-color: var(--ocean);
}

.odoo-points strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.odoo-points span {
  color: var(--muted);
  font-size: 0.98rem;
}

.section--marquee {
  background:
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(14, 124, 123, 0.45), transparent 50%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(214, 255, 63, 0.18), transparent 45%),
    var(--ink);
  color: var(--paper);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.section--marquee .section__lede {
  color: color-mix(in srgb, var(--paper) 70%, transparent);
  margin-bottom: 2rem;
}

.section--marquee h2 {
  color: var(--citrus);
  max-width: 16ch;
}

.brands-slider {
  margin-top: 1.5rem;
  width: 100%;
}

.brands-slider__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brands-slider__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.brand-slide {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 9.5rem;
  min-height: 6.5rem;
  padding: 0.85rem 0.75rem;
  background: #fff;
  color: #0c1214;
  border: 0;
}

.brand-slide img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.brand-slide span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.15;
}

.brand-slide--toyota img,
.brand-slide--hyundai img,
.brand-slide--odoo img {
  filter: none;
}

.brand-slide--toyota {
  background: #111;
  color: #fff;
}

.brand-slide--toyota img {
  filter: invert(1);
}

.brand-slide--danone {
  background: #0055a5;
  color: #fff;
}

.brand-slide--hyundai {
  background: #002c5f;
  color: #fff;
}

.brand-slide--hyundai img {
  filter: invert(1);
}

.brand-slide--odoo {
  background: #0e7c7b;
  color: #fff;
}

.brand-slide--odoo img {
  filter: invert(1);
}

.section--who {
  background: linear-gradient(180deg, #fff8ef 0%, var(--paper) 100%);
}

.who-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.who-list li {
  padding: 1.1rem 0 1.1rem 0.85rem;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--citrus);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.who-list li:nth-child(2) {
  border-left-color: var(--teal);
}

.who-list li:nth-child(3) {
  border-left-color: var(--signal);
}

.who-list li:nth-child(4) {
  border-left-color: var(--ocean);
}

.section--flow {
  background:
    radial-gradient(ellipse 55% 70% at 85% 20%, rgba(255, 90, 31, 0.28), transparent 50%),
    linear-gradient(160deg, #0c1214 0%, #0e3d3c 48%, #12262c 100%);
  color: var(--paper);
}

.section--flow .section__lede {
  color: color-mix(in srgb, var(--paper) 72%, transparent);
}

.flow-steps {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 860px) {
  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.flow-steps li {
  display: grid;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 2px solid var(--citrus);
}

.flow-steps__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--citrus);
}

.flow-steps strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.flow-steps span:last-child {
  color: color-mix(in srgb, var(--paper) 70%, transparent);
  font-size: 0.98rem;
}

.section--clients {
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(14, 124, 123, 0.18), transparent 50%),
    linear-gradient(180deg, #e8f6f4 0%, var(--paper) 70%);
  border-top: 1px solid var(--line);
}

.section--clients h2 {
  max-width: 14ch;
}

.client-grid {
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .client-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.client-grid__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1.15rem 1.1rem;
  background: rgba(255, 255, 255, 0.85);
  border-left: 4px solid var(--teal);
}

.client-grid__item--jck {
  border-left-color: var(--ocean);
}

.client-grid__item--padma {
  border-left-color: #9b2226;
}

.client-grid__item--startech {
  border-left-color: #4cc9f0;
}

.client-grid__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.client-grid__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  padding: 0.2rem;
}

.client-grid__mono {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #1d3557;
  color: #a8dadc;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.client-grid__mono--jade {
  background: #0b6e4f;
  color: #d8f3dc;
  font-size: 0.7rem;
}

.client-grid__place {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.section--includes {
  background:
    linear-gradient(135deg, #cfece7 0%, var(--paper-2) 45%, #ffe8cc 100%);
}

.section__inner--split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .section__inner--split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.include-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.include-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.include-list li:first-child {
  border-top: 1px solid var(--line);
}

.section--train {
  background:
    radial-gradient(ellipse 55% 80% at 100% 50%, rgba(255, 90, 31, 0.18), transparent 50%),
    linear-gradient(120deg, rgba(214, 255, 63, 0.5), transparent 45%),
    var(--paper);
}

.train-note {
  margin: 1.75rem 0 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section--contact {
  background: var(--ink);
  color: var(--paper);
}

.section--contact .section__lede {
  color: color-mix(in srgb, var(--paper) 72%, transparent);
}

.contact-form {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form__full,
  .contact-form__actions {
    grid-column: 1 / -1;
  }
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(238, 242, 241, 0.22);
  background: rgba(238, 242, 241, 0.06);
  color: var(--paper);
  padding: 0.85rem 0.95rem;
  font: inherit;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--citrus);
  outline-offset: 1px;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--paper) 50%),
    linear-gradient(135deg, var(--paper) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form option {
  color: var(--ink);
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
  color: var(--citrus);
  min-height: 1.4em;
}

.contact-alt {
  margin: 1.75rem 0 0;
  color: color-mix(in srgb, var(--paper) 65%, transparent);
}

.contact-alt a {
  color: var(--citrus);
  font-weight: 600;
}

.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--paper) 55%, transparent);
  border-top: 1px solid rgba(238, 242, 241, 0.1);
  padding: 1.75rem 0 2.5rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
  justify-content: space-between;
}

.site-footer .brand-mark {
  color: var(--paper);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__grid,
  .device,
  .device--tablet,
  .device--caja,
  .hero__flow-line,
  .brand-hero,
  .hero h1,
  .hero__lede,
  .hero__cta,
  .device__lines .is-live i {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .brands-slider__viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .brands-slider__track {
    transform: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
