/* ==========================================================================
   Grupo DLS — Landing Page
   Swiss editorial · pure black & white · Cuberto-inspired
   BEM methodology · single stylesheet
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  --ink: #0b0b0b;
  --snow: #ffffff;

  --mute-light: rgba(11, 11, 11, .5);
  --mute-light-strong: rgba(11, 11, 11, .66);
  --mute-dark: rgba(255, 255, 255, .52);
  --mute-dark-strong: rgba(255, 255, 255, .82);

  --line-light: rgba(11, 11, 11, .13);
  --line-light-strong: rgba(11, 11, 11, .3);
  --line-dark: rgba(255, 255, 255, .16);

  --pad-x: clamp(1.25rem, 5vw, 5.5rem);
  --wrap: 1540px;

  --font-sans: "Switzer", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }

::selection { background: var(--ink); color: var(--snow); }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 2px;
}

/* Reveal helper (only active when JS is present) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Film-grain atmosphere */
.page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

/* ==========================================================================
   Shared typographic blocks
   ========================================================================== */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .85em;
  margin-bottom: clamp(1.4rem, 3vh, 2rem);
  font: 500 clamp(.72rem, .95vw, .82rem)/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--mute-light);
}
.eyebrow::before {
  content: "";
  width: clamp(28px, 4vw, 56px);
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow--light { color: var(--mute-dark); }

.section-head {
  max-width: var(--wrap);
  margin-inline: auto;
  width: 100%;
  padding: clamp(4.5rem, 12vh, 9rem) var(--pad-x) clamp(2.4rem, 6vh, 4.5rem);
}
.section-title {
  margin: 0;
  font: 600 clamp(2.2rem, 6vw, 5.6rem)/.96 var(--font-sans);
  letter-spacing: -.035em;
  color: var(--ink);
}
.section-title--light { color: var(--snow); }
.section-lead {
  max-width: 46ch;
  margin-top: clamp(1.6rem, 3.5vh, 2.4rem);
  font: 400 clamp(1.05rem, 1.5vw, 1.45rem)/1.45 var(--font-sans);
  color: var(--mute-light-strong);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 1.05em 1.7em;
  border: 1px solid currentColor;
  border-radius: 100px;
  font: 500 1rem/1 var(--font-sans);
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}
.btn__label,
.btn__icon { position: relative; z-index: 1; transition: color .45s var(--ease); }
.btn__icon { font-size: 1.1em; transition: transform .45s var(--ease), color .45s; }

.btn--solid {
  background: var(--ink);
  color: var(--snow);
  border-color: var(--ink);
}
.btn--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--snow);
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform .55s var(--ease);
}
.btn--ghost {
  background: transparent;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fff;
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform .55s var(--ease);
}

@media (hover: hover) {
  .btn--solid:hover { color: var(--ink); }
  .btn--solid:hover::before { transform: scale(1.4); }
  .btn--solid:hover .btn__icon { transform: translateX(4px); }
  .btn--ghost:hover { color: #0b0b0b; }
  .btn--ghost:hover::before { transform: scale(1.5); }
}

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  will-change: transform;
}
.has-cursor .cursor { opacity: 1; }
.cursor__dot {
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  transition: width .35s var(--ease), height .35s var(--ease);
}
.cursor__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font: 500 .68rem/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #000;
  opacity: 0;
  white-space: nowrap;
  transition: opacity .25s;
}
.cursor.is-active .cursor__dot { width: 74px; height: 74px; }
.cursor.is-active .cursor__label { opacity: 1; }
.cursor.is-hide .cursor__dot { width: 0; height: 0; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: relative;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1rem, 2.2vw, 1.7rem) var(--pad-x);
  color: var(--snow);
}
.nav__logo { width: clamp(54px, 5.4vw, 64px); }
.nav__cta { padding: 1.2em 2.1em; font-size: clamp(1rem, 1.3vw, 1.15rem); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 7rem);
  padding-top: clamp(1rem, 4vh, 3rem);
  background: var(--ink);
  color: var(--snow);
  overflow: hidden;
}
.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(2rem, 5vh, 3.5rem) var(--pad-x);
}
.hero__eyebrow {
  overflow: hidden;
  margin-bottom: clamp(1.6rem, 4vh, 2.8rem);
}
.hero__eyebrow span {
  display: block;
  font: 500 clamp(.74rem, 1vw, .88rem)/1.4 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mute-dark);
  transform: translateY(110%);
  animation: line-up .9s var(--ease) .05s forwards;
}
.hero__title {
  margin: 0;
  font: 600 clamp(2.4rem, 7.4vw, 8.6rem)/.95 var(--font-sans);
  letter-spacing: -.038em;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: .14em;
  margin-bottom: -.14em;
}
.hero__line > span {
  display: block;
  transform: translateY(120%);
  animation: line-up 1s var(--ease) forwards;
}
.hero__line:nth-child(1) > span { animation-delay: .12s; }
.hero__line:nth-child(2) > span { animation-delay: .20s; }
.hero__line:nth-child(3) > span { animation-delay: .28s; }
.hero__line:nth-child(4) > span { animation-delay: .36s; }
@keyframes line-up { to { transform: translateY(0); } }

.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 2rem;
  margin-top: clamp(2.2rem, 5vh, 3.6rem);
  opacity: 0;
  animation: fade-in .9s ease .6s forwards;
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: .8em;
  font: 500 clamp(.75rem, .95vw, .85rem)/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mute-dark-strong);
}
.hero__scroll-line {
  position: relative;
  width: clamp(40px, 6vw, 72px);
  height: 1px;
  background: var(--line-dark);
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--snow);
  transform: translateX(-100%);
  animation: scroll-cue 2.4s var(--ease) infinite;
}
@keyframes scroll-cue {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@keyframes fade-in { to { opacity: 1; } }

.hero__marquee {
  border-top: 1px solid var(--line-dark);
  padding: clamp(.85rem, 1.4vw, 1.15rem) 0;
  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);
}
.hero__track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  font: 500 clamp(.8rem, 1vw, .95rem)/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mute-dark);
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.hero__track .dot { opacity: .4; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Soluções
   ========================================================================== */
.solutions {
  background: var(--snow);
  color: var(--ink);
}
.solutions__list {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}
.solution {
  position: relative;
  display: grid;
  grid-template-columns: clamp(2.4rem, 5vw, 5rem) minmax(0, 1.05fr) minmax(0, 1.5fr);
  gap: clamp(1rem, 2.5vw, 3rem);
  align-items: start;
  padding: clamp(1.7rem, 3.1vw, 2.7rem) var(--pad-x);
  border-top: 1px solid var(--line-light);
}
.solution:last-child { border-bottom: 1px solid var(--line-light); }
.solution__index {
  padding-top: .55em;
  font: 500 clamp(.8rem, 1vw, 1rem)/1 var(--font-mono);
  color: var(--mute-light);
  transition: color .5s;
}
.solution__name {
  margin: 0;
  font: 500 clamp(1.5rem, 3.1vw, 3rem)/1.02 var(--font-sans);
  letter-spacing: -.025em;
  transition: transform .55s var(--ease);
}
.solution__desc {
  max-width: 52ch;
  font: 400 clamp(1rem, 1.25vw, 1.18rem)/1.5 var(--font-sans);
  color: var(--mute-light-strong);
  transition: color .5s;
}
@media (hover: hover) {
  .solution:hover .solution__name { transform: translateX(clamp(.4rem, 1vw, 1rem)); }
}

/* ==========================================================================
   Benefícios
   ========================================================================== */
.benefits {
  background: var(--ink);
  color: var(--snow);
}
.benefits__list {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-bottom: clamp(4rem, 9vh, 7rem);
}
.benefit {
  display: grid;
  grid-template-columns: clamp(64px, 9vw, 120px) minmax(0, .8fr) minmax(0, 1.6fr);
  gap: clamp(1.4rem, 3vw, 3.5rem);
  align-items: start;
  padding: clamp(2.4rem, 4.5vw, 4rem) var(--pad-x);
  border-top: 1px solid var(--line-dark);
}
.benefit:last-child { border-bottom: 1px solid var(--line-dark); }
.benefit__icon { width: clamp(48px, 7vw, 88px); color: var(--snow); }
.benefit__icon svg {
  width: 100%;
  height: auto;
  transition: transform 1.2s var(--ease);
}
.benefit__label {
  padding-top: .5em;
  font: 500 clamp(.92rem, 1.3vw, 1.12rem)/1.3 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.benefit__desc {
  max-width: 40ch;
  font: 400 clamp(1.15rem, 1.9vw, 1.7rem)/1.4 var(--font-sans);
  letter-spacing: -.012em;
  color: var(--mute-dark-strong);
}
.benefit__desc strong { font-weight: 600; color: var(--snow); }
@media (hover: hover) {
  .benefit:hover .benefit__icon svg { transform: rotate(180deg); }
}

/* ==========================================================================
   Elastic dividers (JS-driven)
   ========================================================================== */
.js .solution { border-top: none; }
.js .solution:last-child { border-bottom: none; }
.js .benefit { border-top: none; }
.js .benefit:last-child { border-bottom: none; }

.divider {
  position: relative;
  height: 1px;
  margin: 0;
  list-style: none;
}
.divider__svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  height: 72px;
  transform: translateY(-50%);
  overflow: visible;
  pointer-events: none;
  display: block;
}
.divider__path {
  fill: none;
  stroke-width: 1;
  transition: stroke .3s var(--ease);
}
.divider--light .divider__path { stroke: var(--line-light); }
.divider--dark .divider__path { stroke: var(--line-dark); }
.divider--light.is-bending .divider__path { stroke: rgba(11, 11, 11, .38); }
.divider--dark.is-bending .divider__path { stroke: rgba(255, 255, 255, .5); }

/* ==========================================================================
   Contato / Formulário
   ========================================================================== */
.contact {
  background: var(--snow);
  color: var(--ink);
}
.form {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--pad-x) clamp(4rem, 10vh, 8rem);
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 3vw, 3.4rem) clamp(2rem, 5vw, 5rem);
}
.form__field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.form__field--full { margin-top: clamp(2rem, 4vw, 3rem); }
.form__label {
  margin-bottom: 1rem;
  font: 500 .8rem/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--mute-light);
}
.form__input {
  width: 100%;
  padding: 0 0 .7rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-light-strong);
  color: var(--ink);
  font: 400 clamp(1.1rem, 1.8vw, 1.55rem)/1.3 var(--font-sans);
  letter-spacing: -.01em;
}
.form__input::placeholder { color: rgba(11, 11, 11, .26); }
.form__input:focus { outline: none; }
.form__input--area { min-height: 3.2rem; resize: vertical; }
.form__line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.form__field:focus-within .form__line { transform: scaleX(1); }

.form__chips {
  margin: clamp(2.4rem, 5vw, 3.6rem) 0 0;
  padding: 0;
  border: none;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.3rem;
}
.chip { position: relative; display: inline-flex; }
.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.chip__face {
  display: inline-flex;
  padding: .82em 1.5em;
  border: 1px solid var(--line-light-strong);
  border-radius: 100px;
  font: 400 clamp(1rem, 1.25vw, 1.2rem)/1 var(--font-sans);
  transition: background .35s var(--ease), color .35s, border-color .35s, transform .35s var(--ease);
}
.chip input:checked + .chip__face {
  background: var(--ink);
  color: var(--snow);
  border-color: var(--ink);
}
.chip input:focus-visible + .chip__face { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (hover: hover) {
  .chip:hover .chip__face { transform: translateY(-3px); border-color: var(--ink); }
}

.form__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-top: clamp(2.6rem, 5vw, 4rem);
}
.form__submit { padding: 1.2em 2.1em; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.form__status {
  font: 400 .95rem/1.4 var(--font-mono);
  color: var(--mute-light);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s, transform .4s;
}
.form__status.is-visible { opacity: 1; transform: none; }
.form__status--ok { color: var(--ink); }
.form__status--ok::before { content: "✓ "; }
.form__status--error { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vh, 7rem) var(--pad-x) clamp(2rem, 4vh, 3rem);
  background: var(--ink);
  color: var(--snow);
}
.site-footer > * {
  max-width: var(--wrap);
  margin-inline: auto;
}
.site-footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
  border-bottom: 1px solid var(--line-dark);
}
.site-footer__headline {
  margin: 0;
  font: 600 clamp(2.2rem, 6vw, 5.6rem)/.96 var(--font-sans);
  letter-spacing: -.035em;
}

.badge-dock {
  position: relative;
  flex: none;
  width: clamp(118px, 14vw, 170px);
  aspect-ratio: 1;
}
.badge {
  position: fixed;
  bottom: clamp(1.5rem, 4vw, 3rem);
  right: max(var(--pad-x), calc(50vw - var(--wrap) / 2));
  z-index: 90;
  display: grid;
  place-items: center;
  width: clamp(118px, 14vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--snow);
  transition: color .35s var(--ease);
}
.badge.is-docked {
  position: absolute;
  inset: 0;
}
.badge.badge--on-light { color: var(--ink); }
.badge::before {
  content: "";
  position: absolute;
  inset: 28%;
  border: 1px solid currentColor;
  opacity: .22;
  border-radius: 50%;
}
.badge__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}
.badge__ring text {
  font: 500 12.5px var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  fill: currentColor;
}
.badge__arrow {
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  transition: transform .45s var(--ease);
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (hover: hover) {
  .badge:hover .badge__ring { animation-duration: 7s; }
  .badge:hover .badge__arrow { transform: translate(3px, -3px); }
}

.site-footer__companies {
  padding: clamp(2.6rem, 6vh, 4.5rem) 0;
  border-bottom: 1px solid var(--line-dark);
}
.site-footer__sub {
  margin-bottom: clamp(1.6rem, 3.5vh, 2.4rem);
  font: 500 .78rem/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--mute-dark);
}
.companies {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2.2rem, 6vw, 5.5rem);
}
.company { display: inline-flex; }
.company__mark {
  display: block;
  background: rgba(255, 255, 255, .55);
  transition: background .4s, transform .4s var(--ease);
}
.company__mark--dls {
  width: 80px; height: 30px;
  -webkit-mask: url("assets/empresas/dls.svg") center / contain no-repeat;
          mask: url("assets/empresas/dls.svg") center / contain no-repeat;
}
.company__mark--elleven {
  width: 140px; height: 30px;
  -webkit-mask: url("assets/empresas/elleven.svg") center / contain no-repeat;
          mask: url("assets/empresas/elleven.svg") center / contain no-repeat;
}
.company__mark--rovily {
  width: 168px; height: 28px;
  -webkit-mask: url("assets/empresas/rovily.svg") center / contain no-repeat;
          mask: url("assets/empresas/rovily.svg") center / contain no-repeat;
}
.companies__seal { margin-left: auto; }
.gptw {
  width: clamp(58px, 6.5vw, 74px);
  height: auto;
  display: block;
}
@media (hover: hover) {
  .company:hover .company__mark { background: var(--snow); transform: translateY(-3px); }
}

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: clamp(2rem, 4vh, 3rem);
}
.site-footer__logo { width: 44px; }
.site-footer__legal {
  font: 400 .85rem/1.4 var(--font-mono);
  color: var(--mute-dark);
}
.socials { display: flex; flex-wrap: wrap; gap: clamp(1rem, 2.5vw, 2rem); }
.social {
  position: relative;
  font: 400 .92rem/1 var(--font-sans);
  color: var(--mute-dark);
  transition: color .3s;
}
.social::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
@media (hover: hover) {
  .social:hover { color: var(--snow); }
  .social:hover::after { transform: scaleX(1); transform-origin: left; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .solution {
    grid-template-columns: auto 1fr;
    grid-template-areas: "idx name" "desc desc";
    row-gap: 1.1rem;
    column-gap: 1.4rem;
  }
  .solution__index { grid-area: idx; }
  .solution__name  { grid-area: name; }
  .solution__desc  { grid-area: desc; }

  .benefit {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .benefit__label { padding-top: 0; }
}

@media (max-width: 760px) {
  .form__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero {
    min-height: 0;
  }
  .hero__inner { flex: initial; justify-content: flex-start; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .site-footer__cta { flex-direction: column; align-items: flex-start; }
  .chips { gap: .6rem; }
  .chip__face { padding: .62em 1.1em; font-size: .95rem; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__eyebrow span,
  .hero__line > span { transform: none !important; }
  .hero__foot { opacity: 1 !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__marquee, .badge__ring { display: revert; }
}
