/* ==========================================================================
   Jump Modas — landing de marca (home)
   Portado do concept editorial para a identidade Jump:
   tipografia Sora, vermelho de marca #d6342a e dourado #b8924e.
   O catálogo continua em catalogo.html com styles.css.
   ========================================================================== */

:root {
  --ink: #0a0a0b;
  --paper: #f4f2ef;
  --white: #ffffff;
  --red: #d6342a;
  --red-soft: #e8483d;
  --gold: #b8924e;
  --line: rgba(10, 10, 11, 0.18);
  --muted: #5f5e5b;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--red); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

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

.pointer-glow {
  position: fixed;
  z-index: 20;
  width: 32rem;
  height: 32rem;
  left: var(--pointer-x);
  top: var(--pointer-y);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 52, 42, 0.08), transparent 66%);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(95%, 1480px);
  height: 74px;
  padding: 8px 10px 8px 20px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 22px;
  background: rgba(247, 246, 242, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}
.brand { display: grid; place-items: center start; }
.brand img { height: 34px; width: auto; max-width: 100%; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 4vw, 64px); }
.nav-links a { position: relative; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .35s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* ---------- CTA da loja ---------- */
.store-link {
  min-height: 52px;
  padding: 0 8px 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  width: fit-content;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  transition: background .35s ease, color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.store-link__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.store-link:hover, .store-link:focus-visible { background: var(--red-soft); box-shadow: 0 0 28px rgba(214,52,42,.34); transform: translateY(-2px); }
.store-link:hover .store-link__arrow, .store-link:focus-visible .store-link__arrow { transform: rotate(45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px clamp(22px, 5vw, 78px) 58px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,5,6,.94) 0%, rgba(5,5,6,.78) 45%, rgba(5,5,6,.08) 78%), linear-gradient(0deg, rgba(5,5,6,.7), transparent 44%); }
.hero__noise { position: absolute; inset: 0; z-index: 3; opacity: .08; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E"); }
.hero__image-wrap { position: absolute; z-index: 0; right: 0; top: 0; width: 56%; height: 100%; overflow: hidden; }
.hero__image { width: 100%; height: 100%; object-fit: cover; object-position: 54% 32%; transform: scale(1.06); animation: image-breathe 9s ease-in-out infinite alternate; filter: saturate(.95) contrast(1.05); }
.hero__image-scan { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 94px, rgba(255,255,255,.035) 95px 96px); }
.hero__orbit { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: orbit 24s linear infinite; }
.hero__orbit::after { content: ''; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 22px var(--red); }
.hero__orbit--one { width: 48vw; height: 48vw; right: -8vw; top: -10vw; }
.hero__orbit--one::after { left: 7%; top: 24%; }
.hero__orbit--two { width: 24vw; height: 24vw; right: 26vw; bottom: -12vw; animation-direction: reverse; animation-duration: 17s; }
.hero__orbit--two::after { right: 12%; top: 32%; background: var(--gold); box-shadow: 0 0 22px var(--gold); }
.hero__content { position: relative; z-index: 5; width: min(1030px, 78vw); }
.eyebrow { margin: 0 0 28px; font-size: 11px; line-height: 1; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; animation: reveal-up .9s .15s both; }
.hero__eyebrow span { width: 34px; height: 1px; background: var(--red); }
.hero h1 { margin: 0; max-width: 920px; font-size: clamp(58px, 8.6vw, 138px); font-weight: 300; line-height: .82; letter-spacing: -.06em; text-transform: uppercase; animation: reveal-up 1.1s .25s both; }
.hero__line { display: block; margin-left: clamp(44px, 9vw, 140px); }
.hero__line--accent { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.82); }
.hero__bottom { margin-top: 54px; padding-left: clamp(44px, 9vw, 140px); display: flex; align-items: center; gap: 42px; flex-wrap: wrap; animation: reveal-up 1s .55s both; }
.hero__bottom p { margin: 0; max-width: 390px; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.65; }
.hero__index { position: absolute; z-index: 5; right: clamp(22px, 3vw, 48px); top: 50%; display: flex; gap: 14px; align-items: center; writing-mode: vertical-rl; font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.66); }
.hero__index span:first-child { color: var(--red); font-size: 20px; }
.scroll-cue { position: absolute; z-index: 5; left: clamp(22px, 3vw, 48px); bottom: 30px; display: flex; align-items: center; gap: 14px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 48px; background: linear-gradient(var(--red) 50%, rgba(255,255,255,.2) 50%); background-size: 100% 200%; animation: scroll-line 2s ease infinite; }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; padding: 17px 0; background: var(--red); color: #fff; }
.ticker__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: ticker 28s linear infinite; }
.ticker span { font-size: 13px; letter-spacing: .13em; text-transform: uppercase; }
.ticker b { font-size: 14px; font-weight: 400; }

/* ---------- Base de seção ---------- */
.section { padding: 130px clamp(24px, 5.2vw, 84px); }
.section-label { display: flex; gap: 18px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.section-label span:first-child { color: var(--red); }
.section-label--light { border-color: rgba(255,255,255,.18); }

[data-reveal] { opacity: 0; transform: translateY(42px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.75,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Manifesto ---------- */
.manifesto { display: grid; grid-template-columns: minmax(100px, .45fr) 2.4fr .8fr; gap: clamp(30px, 6vw, 110px); align-items: start; }
.manifesto .section-label { writing-mode: vertical-rl; border-bottom: 0; padding: 0; justify-self: start; }
.manifesto__statement h2 { margin: 0; max-width: 980px; font-weight: 300; font-size: clamp(40px, 5.6vw, 92px); line-height: 1; letter-spacing: -.045em; }
.manifesto__statement h2 em { display: block; margin-top: 16px; color: var(--red); font-style: normal; font-weight: 300; }
.manifesto__aside { align-self: end; padding-top: 80px; }
.manifesto__aside p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.signature { display: block; margin-top: 44px; font-size: 22px; font-weight: 300; letter-spacing: -.02em; }

/* ---------- Tecnologia ---------- */
.technology { min-height: 900px; display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(50px, 8vw, 140px); align-items: center; background: var(--ink); color: var(--white); }
.tech-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.tech-visual::before, .tech-visual::after { content: ''; position: absolute; border-radius: 50%; }
.tech-visual::before { inset: 8%; border: 1px dashed rgba(255,255,255,.2); animation: orbit 30s linear infinite; }
.tech-visual::after { inset: 22%; background: radial-gradient(circle at 42% 34%, rgba(214,52,42,.7), #7b0d16 34%, #12080a 67%); filter: blur(1px); box-shadow: 0 0 100px rgba(214,52,42,.18); animation: pulse 5s ease-in-out infinite; }
.tech-visual__ring { position: absolute; inset: 14%; z-index: 2; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; transform: rotateX(66deg) rotateZ(-12deg); box-shadow: 0 0 36px rgba(255,255,255,.06); }
.tech-visual__core { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; }
.tech-visual__core span, .tech-visual__core small { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.tech-visual__core strong { font-size: clamp(66px, 8vw, 132px); line-height: .9; letter-spacing: -.07em; font-weight: 300; }
.tech-visual__tag { position: absolute; z-index: 4; padding: 9px 13px; border: 1px solid rgba(255,255,255,.24); background: rgba(10,10,11,.52); backdrop-filter: blur(10px); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.tech-visual__tag--a { left: 0; top: 32%; }
.tech-visual__tag--b { right: 2%; top: 19%; }
.tech-visual__tag--c { right: 0; bottom: 24%; }
.technology__content h2 { margin: 62px 0 32px; font-size: clamp(42px, 4.6vw, 76px); font-weight: 300; line-height: 1; letter-spacing: -.045em; }
.technology__content h2 span { color: var(--red); }
.technology__intro { max-width: 600px; color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; }
.specs { margin-top: 58px; border-top: 1px solid rgba(255,255,255,.18); }
.specs article { display: grid; grid-template-columns: 45px 1fr 1.2fr; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.specs article > span { color: var(--red); font-size: 10px; }
.specs h3 { margin: 0; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.specs p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.5; }

/* ---------- Movimento ---------- */
.movement { position: relative; overflow: hidden; padding-bottom: 180px; }
.movement::before { content: 'JUMP'; position: absolute; left: -1vw; top: 190px; z-index: 0; color: rgba(0,0,0,.035); font-size: 30vw; font-weight: 700; letter-spacing: -.1em; line-height: 1; }
.movement__header { position: relative; z-index: 1; margin-top: 70px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; }
.movement__header h2 { margin: 0; font-size: clamp(52px, 7.2vw, 112px); font-weight: 300; line-height: .88; letter-spacing: -.055em; text-transform: uppercase; }
.movement__header h2 em { color: var(--red); font-style: normal; font-weight: 300; text-transform: none; }
.movement__header p { margin: 0 0 10px; color: var(--muted); line-height: 1.7; max-width: 420px; }
.editorial-grid { position: relative; z-index: 1; margin-top: 110px; min-height: 1050px; }
.editorial-card { position: absolute; margin: 0; overflow: hidden; background: #d7d5cf; box-shadow: 0 30px 70px rgba(0,0,0,.1); }
.editorial-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.75,.2,1), filter .7s ease; }
.editorial-card:hover img { transform: scale(1.045); filter: saturate(1.12); }
.editorial-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 62%, rgba(0,0,0,.72)); }
.editorial-card figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; display: flex; align-items: end; justify-content: space-between; color: #fff; }
.editorial-card figcaption span { font-size: 26px; font-weight: 300; letter-spacing: -.02em; }
.editorial-card figcaption small { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.editorial-card--one { left: 0; top: 0; width: 35%; height: 650px; }
.editorial-card--one img { object-position: center 30%; }
.editorial-card--two { left: 40%; top: 170px; width: 29%; height: 650px; }
.editorial-card--three { right: 0; top: 10px; width: 25%; height: 520px; }
.editorial-note { position: absolute; right: 3%; top: 610px; width: 24%; }
.editorial-note__mark { display: block; color: var(--red); font-size: 110px; font-weight: 600; line-height: .8; }
.editorial-note p { font-size: 22px; font-weight: 300; line-height: 1.35; letter-spacing: -.02em; }

/* ---------- Caminhos (loja · WhatsApp · revenda) ---------- */
.paths { background: var(--paper); border-top: 1px solid var(--line); }
.paths__grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 38px 32px 32px;
  min-height: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(0,0,0,.09); border-color: rgba(10,10,11,.3); }
.path-card__num { font-size: 10px; font-weight: 600; letter-spacing: .2em; color: var(--red); }
.path-card h3 { margin: 0; font-size: 27px; font-weight: 300; line-height: 1.1; letter-spacing: -.03em; }
.path-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.path-card__go { margin-top: auto; display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.path-card__go i { font-style: normal; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.path-card:hover .path-card__go i { transform: translateX(6px); }
.path-card--store { background: var(--ink); color: var(--white); border-color: var(--ink); }
.path-card--store p { color: rgba(255,255,255,.6); }
.path-card--store .path-card__num { color: #fff; }
.path-card--whats .path-card__num { color: #1c8c4d; }
.path-card--whats:hover { border-color: rgba(28,140,77,.5); }

/* ---------- Fechamento ---------- */
.closing { position: relative; height: min(900px, 100svh); min-height: 720px; display: grid; place-items: center; overflow: hidden; color: #fff; }
.closing__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 33%; }
.closing__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,4,5,.88), rgba(4,4,5,.28) 62%, rgba(4,4,5,.55)), linear-gradient(0deg, rgba(4,4,5,.62), transparent 50%); }
.closing__content { position: relative; z-index: 2; width: min(90%, 1200px); }
.closing__content h2 { margin: 0 0 50px; font-size: clamp(66px, 10vw, 156px); font-weight: 300; line-height: .84; letter-spacing: -.07em; text-transform: uppercase; }
.closing__content h2 span { color: var(--red); }
.store-link--light { background: #fff; color: var(--ink); border-color: #fff; }
.store-link--light .store-link__arrow { background: var(--red); color: #fff; }
.store-link--light:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); box-shadow: 0 0 32px rgba(184,146,78,.3); }
.closing__side { position: absolute; z-index: 2; right: 28px; top: 50%; margin: 0; writing-mode: vertical-rl; font-size: 10px; letter-spacing: .22em; }

/* ---------- Footer ---------- */
.site-footer { min-height: 330px; padding: 76px clamp(24px, 5vw, 80px) 36px; display: grid; grid-template-columns: 1fr 1fr auto; grid-template-rows: 1fr auto; gap: 30px; background: var(--ink); color: #fff; }
.footer-brand { font-size: clamp(50px, 7vw, 112px); font-weight: 600; line-height: .75; letter-spacing: -.07em; }
.footer-brand span { color: var(--red); font-size: .45em; vertical-align: top; }
.footer-about { max-width: 300px; margin: 0; color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.6; }
.footer-about a { color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.3); }
.footer-about a:hover { color: var(--red); border-color: var(--red); }
.footer-links { display: flex; flex-direction: column; gap: 16px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 8px; transition: color .25s ease, border-color .25s ease; }
.footer-links a:hover { color: var(--red); border-color: var(--red); }
.site-footer small { grid-column: 1 / -1; color: rgba(255,255,255,.34); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.floating-store { position: fixed; z-index: 45; right: 24px; bottom: 24px; min-height: 58px; border-radius: 999px; box-shadow: 0 10px 40px rgba(214,52,42,.32); }
.floating-store .store-link__arrow { width: 42px; height: 42px; }

@keyframes image-breathe { to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { transform: scale(1.06); filter: blur(3px); } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-line { 0% { background-position: 0 100%; } 100% { background-position: 0 -100%; } }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .site-header { grid-template-columns: 145px 1fr auto; }
  .nav-links { display: none; }
  .manifesto { grid-template-columns: 60px 1fr; }
  .manifesto__aside { grid-column: 2; padding-top: 10px; max-width: 520px; }
  .technology { grid-template-columns: 1fr; }
  .tech-visual { width: min(80vw, 620px); margin: 0 auto; }
  .movement__header { grid-template-columns: 1fr; }
  .editorial-grid { min-height: 1200px; }
  .editorial-card--one { width: 47%; height: 630px; }
  .editorial-card--two { left: 52%; width: 41%; height: 610px; }
  .editorial-card--three { top: 690px; width: 42%; height: 480px; }
  .editorial-note { top: 860px; left: 50%; right: auto; width: 44%; }
  .paths__grid { grid-template-columns: 1fr; }
  .path-card { min-height: 0; }
}

@media (max-width: 700px) {
  .pointer-glow { display: none; }
  .site-header { top: 10px; width: calc(100% - 20px); height: 66px; padding-left: 12px; grid-template-columns: 120px 1fr; }
  .brand img { height: 28px; }
  .header-cta { justify-self: end; min-height: 44px; padding-left: 14px; font-size: 9px; gap: 8px; }
  .header-cta .store-link__arrow { width: 32px; height: 32px; }
  .hero { min-height: 920px; padding: 130px 20px 90px; align-items: flex-end; }
  .hero::after { background: linear-gradient(0deg, rgba(5,5,6,.96) 12%, rgba(5,5,6,.78) 54%, rgba(5,5,6,.14) 100%); }
  .hero__image-wrap { width: 100%; height: 64%; top: 0; }
  .hero__image { object-position: 57% 23%; }
  .hero__content { width: 100%; }
  .hero h1 { font-size: clamp(50px, 16vw, 78px); line-height: .86; }
  .hero__line { margin-left: 28px; }
  .hero__bottom { margin-top: 36px; padding-left: 28px; flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero__bottom p { font-size: 13px; }
  .hero__index { display: none; }
  .scroll-cue { left: 8px; bottom: 24px; }
  .section { padding: 88px 20px; }
  .manifesto { display: block; }
  .manifesto .section-label { writing-mode: initial; border-bottom: 1px solid var(--line); margin-bottom: 56px; }
  .manifesto__statement h2 { font-size: clamp(38px, 11vw, 58px); }
  .manifesto__aside { padding-top: 44px; }
  .technology { padding-top: 70px; }
  .tech-visual { width: 100%; }
  .tech-visual__tag { font-size: 7px; padding: 7px 9px; }
  .technology__content h2 { margin-top: 44px; }
  .specs article { grid-template-columns: 30px 1fr; }
  .specs p { grid-column: 2; }
  .movement__header { margin-top: 48px; gap: 34px; }
  .movement__header h2 { font-size: 15vw; }
  .editorial-grid { margin-top: 70px; min-height: 0; display: grid; gap: 18px; }
  .editorial-card { position: relative; inset: auto; width: 100%; height: 540px; }
  .editorial-card--two { width: 86%; margin-left: auto; }
  .editorial-card--three { width: 76%; height: 460px; }
  .editorial-note { position: relative; inset: auto; width: 78%; margin: 30px 0 0 auto; }
  .closing { min-height: 760px; }
  .closing__image { object-position: 58% center; }
  .closing__content h2 { font-size: 16vw; line-height: .86; }
  .closing__side { display: none; }
  .site-footer { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 440px; }
  .site-footer small { grid-column: 1; }
  .floating-store { right: 14px; bottom: 14px; min-height: 52px; padding-left: 17px; }
  .floating-store .store-link__arrow { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
