/* ============ totalBarça Relaunch — style ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #07060a;
  --bg2:       #0c0a11;
  --cream:     #f2ecdf;
  --ink:       #efe9dd;
  --mid:       #9a938a;
  --dim:       #5d5852;
  --rule:      #221f28;
  --garnet:    #e0335c;
  --garnet-d:  #7a1230;
  --blue:      #2e7bd6;
  --blue-d:    #15346b;
  --gold:      #e7b53c;
}

html { scroll-behavior: auto; }
html, body { background: var(--bg); }

body {
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  text-wrap: pretty;
}

::selection { background: var(--garnet); color: #14060c; }

.serif { font-family: 'Cormorant', Georgia, serif; }

.micro {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  font-stretch: 100%;
}

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 90; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- preloader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 200; background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 26px;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
#loader .l-mark { font-size: 64px; font-style: italic; font-weight: 300; color: var(--cream); }
#loader .l-mark .t { color: var(--garnet); }
#loader .l-mark .b { color: var(--blue); }
#loader .l-bar { width: 180px; height: 1px; background: var(--rule); overflow: hidden; }
#loader .l-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--garnet), var(--blue), var(--gold)); transition: width 0.25s ease; }
#loader .micro { color: var(--dim); }

/* ---------- header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 34px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: rgba(7,6,10,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 34px;
  border-bottom-color: var(--rule);
}
.head-mark { height: 15px; display: block; opacity: 0.95; }
.head-cta {
  font-family: 'Archivo', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  color: #1d1505; background: var(--gold); border: none; padding: 11px 22px; cursor: pointer;
  border-radius: 999px; transition: background 0.25s, color 0.25s, transform 0.25s; white-space: nowrap;
}
.head-cta:hover { background: #f0c659; color: #1d1505; transform: translateY(-1px); }

/* ---------- chapter rail ---------- */
.rail {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 95; display: flex; flex-direction: column; gap: 15px; align-items: flex-end;
  padding: 14px 10px; border-radius: 999px;
  background: rgba(7,6,10,0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(242,236,223,0.08);
}
.rail a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.rail .dot { width: 7px; height: 7px; border-radius: 50%; background: #8d8679; transition: background 0.3s, transform 0.3s, box-shadow 0.3s; }
.rail .lbl {
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
  color: var(--gold); opacity: 0; transform: translateX(6px); transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
.rail a:hover .lbl, .rail a.active .lbl { opacity: 1; transform: translateX(0); }
.rail a.active .dot { background: var(--gold); transform: scale(1.5); box-shadow: 0 0 10px rgba(231,181,60,0.55); }
@media (max-width: 900px) { .rail { display: none; } }

/* ---------- reveals ---------- */
[data-reveal] { opacity: 0; transform: translateY(44px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
[data-reveal].inview { opacity: 1; transform: none; }
[data-reveal="2"] { transition-delay: 0.12s; }
[data-reveal="3"] { transition-delay: 0.24s; }
[data-reveal="4"] { transition-delay: 0.36s; }

.mask-line { display: block; overflow: hidden; }
.mask-line > span { display: block; transform: translateY(115%); transition: transform 1s cubic-bezier(.16,.8,.24,1); }
.inview .mask-line > span, .mask-line.inview > span { transform: none; }
.mask-line:nth-child(2) > span { transition-delay: 0.1s; }
.mask-line:nth-child(3) > span { transition-delay: 0.2s; }

/* ---------- hero ---------- */
#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
#confetti { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 420px at 18% 8%, rgba(224,51,92,0.16), transparent 70%),
    radial-gradient(720px 480px at 85% 90%, rgba(46,123,214,0.14), transparent 70%),
    radial-gradient(420px 320px at 70% 12%, rgba(231,181,60,0.07), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; padding: 96px 5vw 0; width: 100%; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; color: var(--gold); margin-bottom: 3.2vh;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }

.hero-title { font-weight: 800; line-height: 0.92; letter-spacing: -0.025em; user-select: none; }
.hero-title .row1 {
  font-size: clamp(64px, 12.5vw, 218px);
  font-stretch: 90%;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cream);
}
.hero-title .row2 {
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic; font-weight: 300; letter-spacing: -0.03em;
  font-size: clamp(70px, 13.5vw, 234px);
  background: linear-gradient(92deg, var(--garnet) 18%, var(--blue) 82%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: 0.08em; padding-bottom: 0.06em;
}

.hero-foot {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
  padding: 4vh 5vw 5.5vh;
}
.hero-sub { max-width: 420px; color: var(--mid); font-size: 20px; line-height: 1.5; font-family: 'Cormorant', serif; font-style: italic; }
.hero-sub strong { color: var(--ink); font-weight: 500; }

.badge { width: 138px; height: 138px; position: relative; flex-shrink: 0; }
.badge svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.badge text { font-family: 'Archivo', sans-serif; font-size: 13px; letter-spacing: 0.26em; font-weight: 500; fill: var(--gold); text-transform: uppercase; }
.badge .core {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant', serif; font-style: italic; font-size: 34px; color: var(--cream);
}
.badge .core .t { color: var(--garnet); } .badge .core .b { color: var(--blue); }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--dim); }
.scroll-cue i { width: 1px; height: 44px; background: linear-gradient(var(--dim), transparent); display: block; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

@media (max-height: 720px) {
  .hero-title .row1 { font-size: clamp(52px, 9.6vw, 150px); }
  .hero-title .row2 { font-size: clamp(56px, 10.4vw, 162px); }
  .hero-eyebrow { margin-bottom: 2vh; }
  .badge { width: 112px; height: 112px; }
  .badge .core { font-size: 27px; }
}

/* ---------- marquee ---------- */
.marquee { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; position: relative; z-index: 2; background: var(--bg); }
.marquee-track { display: flex; width: max-content; animation: marq 30s linear infinite; }
.marquee-chunk { display: flex; align-items: center; gap: 38px; padding: 15px 19px 15px 38px; white-space: nowrap; }
.marquee-chunk span { font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; font-stretch: 100%; color: var(--mid); }
.marquee-chunk span em { font-family: 'Cormorant', serif; font-weight: 400; font-style: italic; text-transform: none; letter-spacing: 0.03em; color: var(--gold); font-size: 19px; }
.marquee-chunk .sep { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sep.g { background: var(--garnet); } .sep.b { background: var(--blue); } .sep.y { background: var(--gold); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- chapters generic ---------- */
.chapter { position: relative; padding: 16vh 5vw; }
.ch-head { display: flex; align-items: baseline; gap: 22px; margin-bottom: 7vh; }
.ch-num {
  font-size: 15px; font-weight: 700; color: var(--gold); letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums;
}
.ch-name { color: var(--mid); }
.ch-head::after { content: ""; flex: 1; height: 1px; background: var(--rule); align-self: center; }

.statement {
  font-family: 'Cormorant', Georgia, serif; font-weight: 300;
  font-size: clamp(40px, 5.6vw, 96px); line-height: 1.04; letter-spacing: -0.025em;
  max-width: 18ch;
}
.statement em { font-style: italic; color: var(--garnet); }
.statement .alt { color: var(--blue); }

/* ---------- ch 01 paper ---------- */
#paper .cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 6vw; margin-top: 8vh; align-items: start; }
#paper .lede { font-family: 'Cormorant', serif; font-size: 21px; line-height: 1.6; color: #c9c2b6; max-width: 56ch; }
#paper .lede p + p { margin-top: 1.2em; }
#paper .lede .pullout { color: var(--gold); font-style: italic; }

.stats { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rule); }
.stat { padding: 26px 26px 22px; border-bottom: 1px solid var(--rule); }
.stat:nth-child(odd) { border-right: 1px solid var(--rule); }
.stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
.stat b {
  display: block; font-size: clamp(40px, 3.6vw, 58px); font-weight: 500; font-stretch: 96%;
  line-height: 1; letter-spacing: -0.01em; color: var(--cream); font-variant-numeric: tabular-nums;
}
.stat b sup { font-size: 0.45em; color: var(--garnet); }
.stat .micro { color: var(--dim); margin-top: 10px; display: block; letter-spacing: 0.2em; }

/* ---------- ch 02 pitch ---------- */
#pitch { padding: 0; }
.pitch-sticky-wrap { height: 280vh; position: relative; }
.pitch-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; background: var(--bg2); }
#pitchCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.pitch-vignette { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(7,6,10,0.85) 100%); }
.pitch-head { position: absolute; top: 0; left: 0; right: 0; padding: 12vh 5vw 0; z-index: 3; }
.pitch-captions { position: absolute; left: 5vw; right: 5vw; bottom: 9vh; z-index: 3; max-width: 560px; }
.pitch-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  font-family: 'Cormorant', serif; font-size: clamp(24px, 2.6vw, 38px); line-height: 1.25; font-weight: 300;
  opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.pitch-cap.on { opacity: 1; transform: none; }
.pitch-cap em { font-style: italic; color: var(--gold); }
.pitch-cap .k { color: var(--garnet); font-style: italic; }
.pitch-progress { position: absolute; left: 5vw; top: 50%; width: 1px; height: 120px; background: var(--rule); transform: translateY(-50%); z-index: 3; }
.pitch-progress i { display: block; width: 100%; background: var(--gold); height: 0%; }

/* ---------- ch 03 years (horizontal) ---------- */
#years { padding: 0; }
.tl-wrap { height: 340vh; position: relative; }
.tl-sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.tl-head { padding: 0 5vw; position: absolute; top: 11vh; left: 0; right: 0; }
.tl-track { display: flex; gap: 7vw; padding: 0 8vw; width: max-content; will-change: transform; align-items: stretch; }
.tl-card { width: min(480px, 64vw); flex-shrink: 0; position: relative; padding-top: 30px; }
.tl-card .yr {
  font-size: clamp(80px, 9vw, 150px); font-weight: 500; font-stretch: 92%; line-height: 0.9; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1.2px var(--dim);
  transition: color 0.5s ease, -webkit-text-stroke-color 0.5s;
}
.tl-card.lit .yr { color: var(--cream); -webkit-text-stroke-color: transparent; }
.tl-card.lit:nth-child(odd) .yr { color: var(--garnet); }
.tl-card.lit:nth-child(even) .yr { color: var(--blue); }
.tl-card h3 { font-family: 'Cormorant', serif; font-weight: 400; font-style: italic; font-size: 27px; margin: 26px 0 12px; letter-spacing: -0.01em; }
.tl-card p { color: var(--mid); font-size: 16px; max-width: 38ch; }
.tl-card::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 1px; background: var(--gold); }
.tl-bar { position: absolute; bottom: 9vh; left: 5vw; right: 5vw; height: 1px; background: var(--rule); }
.tl-bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--garnet), var(--blue)); }

/* ---------- ch 04 dispatch ---------- */
#dispatch { background: var(--bg); padding: 14vh 5vw 16vh; }
.menu { margin-top: 8vh; border-top: 1px solid var(--rule); }
.menu-top {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 18px 0; border-bottom: 1px solid var(--rule);
}
.menu-top .micro { color: var(--dim); }
.menu-item {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 36px; align-items: baseline;
  padding: 46px 0; border-bottom: 1px solid var(--rule);
  transition: padding-left 0.35s ease;
}
.menu-item:hover { padding-left: 14px; }
.menu-item .no { font-size: 12px; letter-spacing: 0.22em; font-weight: 600; color: var(--gold); text-transform: uppercase; font-variant-numeric: tabular-nums; }
.menu-item h3 { font-family: 'Cormorant', Georgia, serif; font-weight: 400; font-size: clamp(28px, 2.8vw, 42px); letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 10px; color: var(--cream); }
.menu-item h3 em { font-style: italic; color: var(--garnet); }
.menu-item:nth-child(odd) h3 em { color: var(--blue); }
.menu-item p { color: var(--mid); font-size: 16px; max-width: 54ch; }
.menu-item .tag { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: var(--dim); white-space: nowrap; }

/* ---------- ch 05 refusals ---------- */
#refusals { background: var(--bg); padding-bottom: 10vh; }
.refusal-list { margin-top: 4vh; }
.refusal {
  font-family: 'Cormorant', Georgia, serif; font-weight: 300; font-style: italic;
  font-size: clamp(34px, 5vw, 84px); line-height: 1.18; letter-spacing: -0.02em;
  color: var(--dim); position: relative; display: inline-block;
}
.refusal-row { display: block; margin-bottom: 1.4vh; }
.refusal::after {
  content: ""; position: absolute; left: -1%; right: auto; top: 54%; height: 0.075em; min-height: 3px;
  width: 0; background: var(--garnet); transform: rotate(-1.2deg);
  transition: width 0.7s cubic-bezier(.7,0,.2,1);
}
.refusal.struck::after { width: 102%; }
.keep {
  margin-top: 8vh;
  font-size: clamp(44px, 6.4vw, 110px); font-weight: 600; font-stretch: 90%; text-transform: uppercase;
  line-height: 0.98; letter-spacing: -0.01em;
}
.keep .l1 { color: var(--cream); }
.keep .l2 { background: linear-gradient(92deg, var(--garnet), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.keep .l3 { font-family: 'Cormorant', serif; font-weight: 300; font-style: italic; text-transform: none; color: var(--gold); letter-spacing: -0.02em; }

/* ---------- ch 06 join ---------- */
#join {
  min-height: 92svh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; background: var(--bg2);
  border-top: 1px solid var(--rule);
}
.join-glow { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 460px at 50% 110%, rgba(224,51,92,0.18), transparent 70%),
    radial-gradient(560px 380px at 88% 0%, rgba(46,123,214,0.12), transparent 70%); }
.join-inner { position: relative; z-index: 2; padding: 14vh 5vw; max-width: 1100px; margin: 0 auto; width: 100%; }
.join-title {
  font-family: 'Cormorant', serif; font-weight: 300; letter-spacing: -0.03em;
  font-size: clamp(46px, 7vw, 116px); line-height: 1.02; margin-bottom: 2.5vh;
}
.join-title em { font-style: italic; color: var(--gold); }
.join-sub { color: var(--mid); font-size: 17px; max-width: 46ch; margin-bottom: 7vh; }

.join-form { display: flex; align-items: flex-end; gap: 26px; border-bottom: 1px solid #3a3542; padding-bottom: 16px; transition: border-color 0.3s; }
.join-form:focus-within { border-color: var(--gold); }
.join-input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none; color: var(--cream);
  font-family: 'Cormorant', serif; font-weight: 300; font-size: clamp(24px, 3.4vw, 44px); letter-spacing: -0.01em;
}
.join-input::placeholder { color: #4a4550; font-style: italic; }
.join-btn {
  background: none; border: none; cursor: pointer; color: var(--cream);
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 700; font-family: 'Archivo', sans-serif;
  display: inline-flex; align-items: center; gap: 12px; padding: 10px 0; white-space: nowrap;
}
.join-btn .arr { display: inline-block; transition: transform 0.3s; font-size: 20px; line-height: 0; }
.join-btn:hover { color: var(--garnet); }
.join-btn:hover .arr { transform: translateX(6px); }
.join-note { margin-top: 22px; color: var(--dim); font-size: 13.5px; font-family: 'Cormorant', serif; font-style: italic; }
.join-confirm { display: none; }
.join-wrap.done .join-form, .join-wrap.done .join-note { display: none; }
.join-wrap.done .join-confirm { display: block; }
.join-confirm .big { font-family: 'Cormorant', serif; font-style: italic; font-size: clamp(30px, 4vw, 52px); color: var(--gold); margin-bottom: 14px; }
.join-confirm p { color: var(--mid); max-width: 50ch; }

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--rule); background: var(--bg); }
.foot-marquee { overflow: hidden; padding: 5vh 0 4vh; }
.foot-track { display: flex; width: max-content; gap: 70px; align-items: center; animation: marq 24s linear infinite; }
.foot-track img { height: clamp(32px, 4.2vw, 56px); display: block; opacity: 0.8; }
.foot-track .fm-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding: 26px 5vw 40px; color: var(--dim);
}
.foot-bottom .micro { letter-spacing: 0.24em; }
.foot-bottom .visca { font-family: 'Cormorant', serif; font-style: italic; font-size: 15px; color: var(--mid); }
.foot-bottom .visca .g { color: var(--garnet); } .foot-bottom .visca .bl { color: var(--blue); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  body { font-size: 16px; }
  .chapter { padding: 12vh 6vw; }
  .site-head { padding: 16px 20px; }
  .site-head.scrolled { padding: 12px 20px; }
  #paper .cols { grid-template-columns: 1fr; gap: 7vh; }
  #paper .lede { font-size: 19px; }
  .hero-inner { padding: 0 6vw; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 26px; padding: 4vh 6vw 7vh; }
  .badge { display: none; }
  .scroll-cue { display: none; }
  .statement { font-size: clamp(36px, 9.4vw, 64px); max-width: none; }
  .stat { padding: 20px 18px 16px; }
  .stat b { font-size: 38px; }
  .menu-item { grid-template-columns: 1fr; gap: 10px; padding: 36px 0; }
  .menu-item:hover { padding-left: 0; }
  .menu-item .tag { order: 3; }
  .tl-card { width: min(420px, 76vw); }
  .tl-card .yr { font-size: clamp(64px, 17vw, 110px); }
  .pitch-cap { font-size: clamp(20px, 5.4vw, 28px); }
  .pitch-progress { display: none; }
  .refusal { font-size: clamp(30px, 8.6vw, 56px); }
  .keep { font-size: clamp(38px, 10vw, 72px); }
  .join-inner { padding: 12vh 6vw; }
  .join-title { font-size: clamp(40px, 11vw, 72px); }
  .join-form { flex-direction: column; align-items: stretch; gap: 18px; }
  .join-input { font-size: clamp(22px, 6.4vw, 32px); }
  .marquee-chunk { gap: 22px; padding: 13px 11px 13px 22px; }
  .marquee-chunk span { font-size: 11px; letter-spacing: 0.22em; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding-bottom: 32px; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .stat:nth-child(odd) { border-right: none; }
  .stat:nth-child(3) { border-bottom: 1px solid var(--rule); }
  .head-cta { padding: 10px 16px; font-size: 10px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .mask-line > span, .pitch-cap, .refusal::after { transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .mask-line > span { transform: none; }
  .marquee-track, .foot-track, .badge svg, .scroll-cue i { animation: none !important; }
  .refusal.struck::after { width: 102%; }
}
