/* ============================================================
   RAPHABRAS — design system
   Preto profundo + cobre · Bodoni Moda (títulos) + Jost (apoio)
   ============================================================ */

:root {
  --bg: #0B0D11;
  --graphite: #151922;
  --ink: #F2F0EA;
  --soft: #D8D5CF;
  --muted: #9aa1ae;
  --copper: #C88A59;
  --line: #23272d;
  /* seção clara invertida */
  --lt-bg: #F2F0EA;
  --lt-ink: #0B0D11;
  --lt-muted: #55514a;
  --lt-line: #dedad2;

  --serif: 'Bodoni Moda', 'Didot', serif;
  --sans: 'Jost', 'Century Gothic', sans-serif;
  --ease: cubic-bezier(.22, .61, .21, 1);
  --nav-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--copper); color: var(--bg); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* fundo com drift sutil (páginas escuras) */
.atmos {
  position: fixed; inset: -20%;
  pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 60% 45% at 70% 20%, rgba(200, 138, 89, .07), transparent 60%);
  animation: rpbDrift 26s ease-in-out infinite alternate;
}

/* ================= HEADER ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(18px, 4vw, 48px);
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 13, 17, .82);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav-brand {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(12px, 1.05vw, 14px);
  letter-spacing: .42em; text-indent: .42em;
  color: var(--ink); white-space: nowrap;
  display: flex; align-items: center; gap: 2px;
}
.nav-brand .dot { color: var(--copper); font-size: 1.25em; line-height: 0; transform: translateY(-.18em); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft);
  transition: color .25s;
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::before {
  content: ''; position: absolute; left: 50%; bottom: -4px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--copper); transform: translateX(-50%);
}
.nav-cta {
  font-size: 12px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(200, 138, 89, .55);
  padding: 9px 18px; border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--copper); color: var(--bg); border-color: var(--copper); }

/* burger */
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 130;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  margin: 5px auto; transition: transform .35s var(--ease), opacity .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* overlay mobile */
.nav-mobile {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(11, 13, 17, .97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--serif); font-size: clamp(26px, 7vw, 34px);
  color: var(--soft); transition: color .25s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--copper); }
.nav-mobile .nav-cta { font-family: var(--sans); font-size: 13px; margin-top: 14px; }

/* ================= SEÇÕES BASE ================= */
.sec { position: relative; z-index: 1; padding: clamp(84px, 14vh, 150px) clamp(20px, 6vw, 72px); }
.inner { max-width: 1080px; margin: 0 auto; }
.eyebrow {
  font-size: 12.5px; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: clamp(18px, 3vh, 30px);
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--copper); }
.h1, .h2 {
  font-family: var(--serif); font-weight: 400;
  line-height: 1.14; letter-spacing: .005em;
  color: var(--ink);
}
.h1 { font-size: clamp(34px, 5.4vw, 64px); }
.h2 { font-size: clamp(27px, 3.8vw, 44px); }
.h2 .em, .h1 .em { font-style: italic; color: var(--copper); }
.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--soft); max-width: 58ch;
  margin-top: clamp(16px, 2.6vh, 26px);
}
.sec-light { background: var(--lt-bg); color: var(--lt-ink); }
.sec-light .h1, .sec-light .h2 { color: var(--lt-ink); }
.sec-light .lead { color: #4b473f; }
.sec-light .eyebrow { color: #a4703f; }
.sec-light .eyebrow::before { background: #a4703f; }

/* linha divisória fina */
.hr { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ================= BOTÕES ================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px;
  border: 1px solid var(--copper); color: var(--copper);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.btn:hover { background: var(--copper); color: var(--bg); transform: translateY(-2px); }
.btn-solid { background: var(--copper); color: var(--bg); }
.btn-solid:hover { background: #d59a68; }
.sec-light .btn { border-color: #a4703f; color: #a4703f; }
.sec-light .btn:hover { background: #a4703f; color: var(--lt-bg); }

/* barra sticky mobile de WhatsApp */
.wa-sticky {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  background: var(--copper); color: var(--bg);
  text-align: center; padding: 15px 18px; border-radius: 12px;
  font-size: 13.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .45);
  transform: translateY(calc(100% + 16px)); transition: transform .45s var(--ease);
}
.wa-sticky.show { transform: translateY(0); }

/* ================= HOME — WORDMARK ================= */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 20px) 5vw clamp(100px, 16vh, 150px);
}
.wordmark {
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: clamp(28px, 7vw, 90px);
  row-gap: clamp(10px, 3.4vh, 34px);
  justify-content: center;
  position: relative;
}
.wm-l {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(44px, 10vw, 118px);
  line-height: 1; color: var(--ink);
  text-align: center;
  opacity: 0; transform: translateY(14px);
}
.wm-l svg { height: .78em; width: auto; display: block; margin: .11em auto 0; }
.wm-l svg path { stroke: var(--copper); stroke-width: 7; fill: none; stroke-linecap: round; }
.wm-dot {
  position: absolute; width: clamp(9px, 1.4vw, 16px); height: clamp(9px, 1.4vw, 16px);
  border-radius: 50%; background: var(--copper); opacity: 0;
}
.wm-dot.tl { top: calc(-1 * clamp(18px, 3.4vh, 34px)); left: calc(-1 * clamp(14px, 2.6vw, 30px)); }
.wm-dot.br { bottom: calc(-1 * clamp(10px, 2vh, 22px)); right: calc(-1 * clamp(20px, 3.4vw, 40px)); }
.wordmark.on .wm-l { animation: rpbRise .9s var(--ease) forwards; }
.wordmark.on .wm-dot { animation: rpbFade 1.1s var(--ease) forwards, rpbPulse 3.2s ease-in-out 1.4s infinite; }

.hero-tagline {
  margin-top: clamp(30px, 6vh, 58px);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 14px; max-width: 94vw;
  font-size: clamp(11px, 1.05vw, 15px); font-weight: 300;
  letter-spacing: .38em; text-transform: uppercase; color: var(--soft);
  opacity: 0; animation: rpbFade 1.2s var(--ease) 1.9s forwards;
}
.hero-tagline .dot { color: var(--copper); }

.hero-cue {
  position: absolute; bottom: clamp(22px, 4vh, 40px); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .4em; text-transform: uppercase; color: var(--muted);
  opacity: 0; animation: rpbFade 1s var(--ease) 2.6s forwards;
  transition: opacity .4s;
}
.hero-cue::after {
  content: ''; width: 1px; height: 34px;
  background: linear-gradient(var(--copper), transparent);
  animation: rpbBob 2.2s ease-in-out infinite;
}
.hero-cue.hide { opacity: 0 !important; }

/* eixo de progresso vertical */
.axis {
  position: fixed; right: clamp(14px, 2.4vw, 30px); top: 50%; transform: translateY(-50%);
  height: 34vh; width: 1px; background: var(--line); z-index: 60;
  opacity: 0; transition: opacity .5s var(--ease);
  pointer-events: none;
}
.axis.show { opacity: 1; }
.axis-dot {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--copper);
  box-shadow: 0 0 12px rgba(200, 138, 89, .8);
}

/* ================= HOME — SIGNIFICADO (sticky) ================= */
.signif { position: relative; height: 300vh; z-index: 1; }
.signif-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding: 0 5vw;
}
.signif-label {
  font-size: 12.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--muted); margin-bottom: clamp(26px, 5vh, 46px);
}
.signif-words { position: relative; height: clamp(80px, 16vw, 150px); width: 100%; }
.signif-word {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 9.4vw, 120px); line-height: 1;
  color: var(--ink); white-space: nowrap;
  opacity: 0; transform: translateY(26px); filter: blur(6px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease);
}
.signif-word .acc { color: var(--copper); font-style: italic; }
.signif-word.active { opacity: 1; transform: translateY(0); filter: blur(0); }
.signif-word.passed { opacity: 0; transform: translateY(-26px); }
.signif-ticks { display: flex; gap: 14px; margin-top: clamp(30px, 6vh, 52px); }
.signif-ticks i {
  width: 26px; height: 2px; background: var(--line); border-radius: 2px;
  transition: background .4s;
}
.signif-ticks i.on { background: var(--copper); }

/* ================= HOME — PILARES ================= */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(40px, 7vh, 70px);
}
.pillar { border-top: 1px solid var(--line); padding-top: 26px; }
.pillar .n {
  font-family: var(--serif); font-style: italic;
  color: var(--copper); font-size: 15px; letter-spacing: .12em;
}
.pillar h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(21px, 2.2vw, 26px); margin: 14px 0 10px;
}
.pillar p { font-size: 16.5px; font-weight: 400; color: var(--muted); max-width: 36ch; }

/* ================= PÁGINAS INTERNAS ================= */
.page-hero {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + clamp(64px, 12vh, 130px)) clamp(20px, 6vw, 72px) clamp(56px, 9vh, 100px);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { color: var(--soft); }

/* cards numerados (problema / método / escopo) */
.cards3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 264px), 1fr));
  gap: clamp(22px, 3vw, 40px); margin-top: clamp(38px, 6vh, 64px);
}
.card {
  background: var(--graphite); border: 1px solid var(--line);
  border-radius: 14px; padding: clamp(24px, 3vw, 36px);
  transition: transform .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(200, 138, 89, .45); }
.card .n { font-family: var(--serif); font-style: italic; color: var(--copper); font-size: 15px; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 2vw, 23px); margin: 12px 0 10px; line-height: 1.3; }
.card p { font-size: 16px; font-weight: 400; color: var(--muted); }
.card ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.card ul li { font-size: 15.5px; font-weight: 400; color: var(--soft); padding-left: 22px; position: relative; }
.card ul li::before { content: ''; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.card .card-note { margin-top: 18px; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--copper); }

/* níveis de serviço — dois cards lado a lado */
.levels { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(22px, 3vw, 40px); margin-top: clamp(38px, 6vh, 64px); }
.levels .card.featured { border-color: rgba(200, 138, 89, .55); }

/* ticker de plataformas */
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.ticker-track { display: flex; gap: 54px; width: max-content; animation: rpbTicker 30s linear infinite; }
.ticker-track span {
  font-size: 14px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 54px; white-space: nowrap;
}
.ticker-track span::after { content: '•'; color: var(--copper); }

/* timeline (como começamos) */
.timeline {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(26px, 3.4vw, 44px); margin-top: clamp(38px, 6vh, 64px);
}
.tl-step { position: relative; border-top: 1px solid var(--line); padding-top: 24px; }
.tl-n {
  position: absolute; top: -14px; left: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--copper); color: var(--copper);
  display: grid; place-items: center;
  font-size: 13px; font-family: var(--serif); font-style: italic;
}
.tl-step h4 { font-family: var(--serif); font-weight: 500; font-size: 19px; margin-bottom: 8px; }
.tl-step p { font-size: 16px; font-weight: 400; color: var(--muted); }
.tl-step .when {
  display: inline-block; margin-top: 14px;
  font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--copper);
}

/* case — número grande */
.case-hero-num {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(64px, 11vw, 150px); line-height: 1; color: var(--ink);
}
.case-hero-num .u { font-size: .34em; color: var(--copper); font-style: italic; }
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(22px, 3vw, 40px); margin-top: clamp(38px, 6vh, 60px);
}
.stat { border-left: 1px solid var(--copper); padding-left: 20px; }
.stat b { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 40px); color: var(--ink); }
.stat span { font-size: 15px; font-weight: 400; color: var(--muted); }

/* citação editorial */
.quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(21px, 2.6vw, 30px); line-height: 1.5; color: var(--soft);
  max-width: 30em; margin: 0 auto; text-align: center;
}
.quote .mark { color: var(--copper); }

/* listas para quem é / não é */
.fit2 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(24px, 3.4vw, 44px); margin-top: clamp(36px, 6vh, 60px);
}
.fit-col { border: 1px solid var(--line); border-radius: 14px; padding: clamp(24px, 3vw, 36px); }
.fit-col.yes { border-color: rgba(200, 138, 89, .5); }
.fit-col h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; margin-bottom: 18px; }
.fit-col ul { list-style: none; display: grid; gap: 13px; }
.fit-col li { font-size: 16px; font-weight: 400; color: var(--soft); padding-left: 26px; position: relative; }
.fit-col li::before { position: absolute; left: 0; font-size: 13px; }
.fit-col.yes li::before { content: '✓'; color: var(--copper); }
.fit-col.no li::before { content: '✕'; color: var(--muted); }
.fit-col.no li { color: var(--muted); }

/* FAQ acordeão */
.faq { max-width: 760px; margin-top: clamp(36px, 6vh, 56px); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 22px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(17px, 2vw, 21px); color: var(--ink);
}
.faq-q .pm {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--copper); font-size: 17px;
  transition: transform .35s var(--ease), background .25s, color .25s;
}
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--copper); color: var(--bg); border-color: var(--copper); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 22px; font-size: 16.5px; font-weight: 400; color: var(--muted); line-height: 1.7; max-width: 62ch; }

/* sobre — retrato */
.about-grid {
  display: grid; grid-template-columns: minmax(240px, 380px) 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
  margin-top: clamp(38px, 6vh, 64px);
}
.portrait {
  border-radius: 14px; overflow: hidden; position: relative;
  border: 1px solid var(--line);
}
.portrait img { filter: grayscale(.25) contrast(1.04); width: 100%; }
.portrait::after {
  content: ''; position: absolute; right: 14px; bottom: 14px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--copper);
  animation: rpbPulse 3.2s ease-in-out infinite;
}
.about-bio p { font-size: clamp(15.5px, 1.3vw, 17.5px); color: var(--soft); max-width: 58ch; }
.about-bio p + p { margin-top: 18px; }
.about-loc {
  margin-top: 26px;
  font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.about-loc .dot { color: var(--copper); }

/* CTA final de página */
.cta-end { text-align: center; }
.cta-end .h2 { max-width: 22em; margin: 0 auto; }
.cta-end .lead { margin-left: auto; margin-right: auto; text-align: center; }
.cta-end .btn { margin-top: clamp(28px, 5vh, 44px); }
.cta-tag {
  font-size: 12px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 20px; display: block;
}

/* ================= FOOTER ================= */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding: clamp(40px, 7vh, 64px) clamp(20px, 6vw, 72px);
  display: flex; flex-wrap: wrap; gap: 26px 44px;
  align-items: center; justify-content: space-between;
}
.footer-brand {
  font-size: 12px; font-weight: 400; letter-spacing: .4em; text-indent: .4em;
  color: var(--soft); display: flex; align-items: center;
}
.footer-brand .dot { color: var(--copper); margin-left: 2px; }
.footer-line { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px 26px; list-style: none; }
.footer-links a {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); transition: color .25s;
}
.footer-links a:hover { color: var(--copper); }

/* ================= REVEAL ================= */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--rv-delay, 0s);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ================= KEYFRAMES ================= */
@keyframes rpbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rpbRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rpbPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 138, 89, .45); }
  50% { box-shadow: 0 0 0 9px rgba(200, 138, 89, 0); }
}
@keyframes rpbBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(7px); opacity: .55; }
}
@keyframes rpbDrift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 2%, 0) scale(1.06); }
}
@keyframes rpbTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================= RESPONSIVO ================= */
@media (max-width: 1024px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-burger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 320px; }
}
@media (max-width: 640px) {
  .wa-sticky { display: block; }
  .signif-word { white-space: normal; text-align: center; font-size: clamp(38px, 13vw, 54px); }
  .wm-l { font-size: clamp(40px, 14vw, 64px); }
  .axis { display: none; }
}

/* ================= MOVIMENTO REDUZIDO ================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .wm-l, .wm-dot, .hero-tagline, .hero-cue { opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .signif-word { transition: none; }
}
