:root {
  --red: #bd0000;
  --red-dark: #8f0000;
  --black: #000000;
  --ink: #0a0a0a;
  --footer: #323232;
  --white: #ffffff;
  --muted: #b5b5b5;
  --line: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Montserrat, system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input {
  font-family: inherit;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 5.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- NAV ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}

.brand-logo:hover {
  transform: scale(1.06) rotate(-8deg);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#topo {
  scroll-margin-top: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.nav-overlay a {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1.15;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-overlay a:hover {
  color: var(--red);
  transform: translateX(8px);
}

/* ---------- BUTTONS ---------- */
.btn-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  isolation: isolate;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.btn-line__inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--red);
  padding: 0.85rem 1.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
  background: transparent;
  overflow: hidden;
  transition: color 0.35s var(--ease);
}

.btn-line__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.btn-line:hover .btn-line__inner,
.btn-line.is-filled .btn-line__inner {
  color: #fff;
}

.btn-line:hover .btn-line__inner::before,
.btn-line.is-filled .btn-line__inner::before {
  transform: scaleX(1);
}

.btn-line__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  transition: background 0.35s ease;
}

.btn-line:hover .btn-line__dot,
.btn-line.is-filled .btn-line__dot {
  background: #fff;
}

.btn-line::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--red);
  display: block;
}

.btn-line.is-filled::after {
  background: #fff;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: visible;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 30%;
  pointer-events: none;
}

.hero__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: clamp(260px, 42vh, 460px);
  object-fit: cover;
  object-position: right bottom;
  pointer-events: none;
  bottom: -8px;
  -webkit-mask-image: linear-gradient(to top, #000 82%, transparent);
  mask-image: linear-gradient(to top, #000 82%, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 7rem 8vw 22vh;
  max-width: 78rem;
  margin-top: -6vh;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7.2vw, 6.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.hero__lead {
  margin: 1.4rem 0 2.2rem;
  max-width: 38rem;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 400;
  line-height: 1.45;
  color: #f2f2f2;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(1.4rem, 5vh, 3rem);
  z-index: 2;
  transform: translateX(-50%);
  color: #fff;
  animation: bob 2.2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 22px;
  height: 22px;
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.55;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 1;
  }
}

/* ---------- PROBLEMS ---------- */
.problems {
  position: relative;
  padding: 6.5rem 6vw 5.5rem;
  background: #000;
}

.problems::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 4vw;
  width: 1px;
  height: 42%;
  background: var(--red);
}

.section-title {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 900px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-title .accent {
  display: block;
  color: var(--red);
  font-style: italic;
  font-weight: 700;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.problem-card {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.problem-card img {
  height: 64px;
  width: auto;
  margin: 0 auto 1.4rem;
  object-fit: contain;
}

.problem-card h3 {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 700;
}

.problem-card p {
  margin: 0;
  color: #cfcfcf;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 400;
}

/* ---------- SOLUTIONS ---------- */
.solutions {
  position: relative;
  padding: 6.5rem 6vw 5.5rem;
  background: #000 url("../img/bg-solucoes.webp") right center / cover no-repeat;
}

.solutions .section-title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto 4.2rem;
}

.solutions-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem 1.5rem;
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
  justify-items: center;
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.solution-card h3 {
  margin: 1rem 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.solution-card img {
  height: 42px;
  width: auto;
  object-fit: contain;
  margin-inline: auto;
}

.solution-card ul {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  color: #c8c8c8;
  font-size: 0.92rem;
  line-height: 1.7;
}

.solution-card .btn-line {
  margin-right: -48px;
}

/* ---------- CLIENTS ---------- */
.clients {
  background: #000;
  padding: 4.5rem 0 3.5rem;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee + .marquee {
  margin-top: 2.4rem;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee.is-reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 48s;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track img {
  height: 38px;
  width: auto;
  max-width: 150px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.72;
  filter: brightness(1.05);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.marquee-track img:hover {
  opacity: 1;
  transform: scale(1.06);
}

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

/* ---------- PROJECTS ---------- */
.projects {
  padding: 5.5rem 0 0;
  background: #000;
}

.projects-head {
  padding: 0 8vw 2.4rem;
}

.projects-head h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.projects-head h2 span {
  color: var(--red);
}

.projects-head p {
  margin: 0.7rem 0 0;
  color: #ddd;
  font-size: 1.02rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: #757575;
}

.project-card {
  position: relative;
  aspect-ratio: 9 / 7;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: #757575;
  display: block;
  width: 100%;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.06);
}

.project-card__tint {
  position: absolute;
  inset: 0;
  background: rgba(189, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.project-card:hover .project-card__tint,
.project-card:focus-visible .project-card__tint {
  opacity: 1;
}

.project-card__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: var(--red);
  display: flex;
  align-items: flex-end;
  padding: 0 1.15rem 1.15rem;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.project-card:hover .project-card__bar,
.project-card:focus-visible .project-card__bar {
  transform: translateY(0);
}

.project-card__bar span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.project-card__plus {
  position: absolute;
  right: 1.1rem;
  bottom: calc(28% - 18px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.45s var(--ease);
  z-index: 2;
}

.project-card:hover .project-card__plus,
.project-card:focus-visible .project-card__plus {
  opacity: 1;
  transform: scale(1);
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 7rem 6vw;
  background: #000 url("../img/bg-cta.webp") left center / cover no-repeat;
  text-align: center;
}

.cta h2 {
  margin: 0 auto;
  max-width: 18ch;
  font-size: clamp(1.9rem, 4.4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.cta p {
  margin: 1.3rem 0 2rem;
  color: #ddd;
  font-size: 0.95rem;
}

.cta .btn-line.is-filled .btn-line__inner {
  color: #fff;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--footer);
  padding: 3.4rem 8vw 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3rem;
}

.footer-brand img {
  width: min(280px, 70vw);
  height: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.1rem;
  color: #9a9a9a;
  font-size: 0.82rem;
}

.footer-social a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-whatsapp {
  justify-self: end;
  text-align: right;
}

.footer-whatsapp h3 {
  margin: 0 0 0.7rem;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-whatsapp a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-whatsapp a:hover {
  color: var(--red);
}

.footer-bar {
  height: 8px;
  background: var(--red);
  width: 86%;
  margin-left: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-top: 1.1rem;
}

.contact-form .sr-only,
.contact-form label:nth-of-type(3),
.contact-form__status,
.contact-form .btn-line {
  grid-column: 1 / -1;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form textarea {
  resize: none;
  min-height: 88px;
  height: 88px;
}

.contact-form .btn-line {
  align-self: start;
  justify-self: start;
  margin-top: 0.15rem;
}

.contact-form .btn-line:disabled {
  opacity: 0.55;
  pointer-events: none;
}

.contact-form__status {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: #cfcfcf;
}

.contact-form__status:empty {
  display: none;
}

.contact-form__status.is-ok {
  color: #7dce9a;
}

.contact-form__status.is-error {
  color: #ff8a8a;
}

.whatsapp-fab {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease);
}

.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2s ease-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1.25rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: auto;
  flex-shrink: 0;
  background: #111;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: visible;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.45s var(--ease);
}

.modal.is-open .modal__dialog {
  transform: none;
}

.modal.is-service .modal__dialog,
.modal__dialog--form {
  display: block;
  grid-template-columns: none;
  max-width: 560px;
  width: min(560px, 100%);
}

.modal.is-service .modal__media,
.modal.is-service .modal-nav {
  display: none;
}

.modal__media {
  background: #5c5c5c;
  min-height: 280px;
  max-height: 72vh;
  overflow: hidden;
}

.modal__media img {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.modal__body {
  padding: 2.2rem 2rem 4.25rem;
}

.modal__dialog--form .modal__body,
.modal.is-service .modal__body {
  padding: 2.2rem 2rem 1.6rem;
}

.modal__body .cat {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.modal__body h3 {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.modal__body p {
  margin: 0 0 0.9rem;
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-nav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}

.modal-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
}

.modal-nav button:hover {
  border-color: var(--red);
  color: var(--red);
}

body.is-locked {
  overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .solutions-grid,
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problems::after {
    display: none;
  }

  .hero__bg {
    object-position: 72% 30%;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero__content {
    padding: 6.2rem 1.35rem 22vh;
    margin-top: 0;
  }

  .hero h1 {
    white-space: normal;
  }

  .hero__bg {
    object-position: 80% 22%;
    opacity: 0.7;
  }

  .hero__line {
    display: none;
  }

  .hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 3px;
    background: var(--red);
    box-shadow: 0 0 28px 8px rgba(189, 0, 0, 0.75);
    pointer-events: none;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 70%);
    pointer-events: none;
  }

  .problems,
  .solutions {
    padding: 4.5rem 1.35rem;
  }

  .solutions {
    background: #000 url("../img/bg-solucoes-mobile.webp") right center / cover no-repeat;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-whatsapp {
    text-align: left;
    justify-self: start;
  }

  .modal {
    padding: 0.85rem;
  }

  .modal__dialog {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    max-height: none;
  }

  .modal.is-service .modal__dialog,
  .modal__dialog--form {
    height: auto;
  }

  .modal__media {
    height: 36vh;
    max-height: 240px;
    min-height: 160px;
  }

  .modal__media img {
    max-height: 240px;
  }

  .modal__body {
    padding: 1.35rem 1.2rem 4.25rem;
  }

  .modal__dialog--form .modal__body,
  .modal.is-service .modal__body {
    padding: 1.6rem 1.2rem 1.35rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .modal-nav {
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 3;
  }

  .footer-bar {
    width: 100%;
  }

  .btn-line::after {
    width: 28px;
  }

  .solution-card .btn-line {
    margin-right: -28px;
  }
}

@media (max-width: 540px) {
  .solutions-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 4.5rem 1.35rem;
  }

  .marquee-track {
    gap: 2.6rem;
  }

  .marquee-track img {
    height: 28px;
  }
}

.js [data-reveal],
.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
}

.js [data-reveal].is-in,
.js [data-stagger] > *.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal],
  .js [data-stagger] > * {
    opacity: 1;
    transform: none;
  }

  .hero__bg {
    transform: none;
  }
}
