/* ============================================================
   Titan Pipelines — IMPACT build (v3)
   Vanilla + three.js + GSAP. Brand tokens from colors_and_type.css
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg-0);
  overflow-x: hidden;
}
::selection { background: var(--c-gold); color: #0E0D0B; }

/* WebGL canvas — fixed behind everything */
#gl {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* Film grain */
.grain {
  position: fixed; inset: 0; z-index: 40; pointer-events: none; opacity: 0.045;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2"/><feColorMatrix type="saturate" values="0"/></filter><rect width="300" height="300" filter="url(%23n)" opacity="0.7"/></svg>');
}

/* Scroll progress */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60;
  background: var(--c-gold); transform-origin: 0 50%; transform: scaleX(0);
}

/* ── Cursor ──
   The custom gold dot+ring only appear (and the native OS cursor is only hidden)
   when impact-main.js activates them — it adds `.tp-cursor` to <html> on a fine
   pointer with motion allowed. Gating on that class prevents (a) the native
   cursor showing on top of the custom one, and (b) a stray static dot for
   reduced-motion users, where the JS never runs to position it. */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  html.tp-cursor, html.tp-cursor * { cursor: none !important; }
  html.tp-cursor .cursor-dot {
    display: block; position: fixed; z-index: 100; pointer-events: none;
    width: 6px; height: 6px; border-radius: 50%; background: var(--c-gold);
    transform: translate(-50%, -50%);
  }
  html.tp-cursor .cursor-ring {
    display: block; position: fixed; z-index: 100; pointer-events: none;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(232,160,32,0.5);
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease, border-color .25s ease;
  }
  html.tp-cursor .cursor-ring.is-hover { width: 56px; height: 56px; border-color: var(--c-gold); }
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease;
}
.nav.is-scrolled {
  background: rgba(14,13,11,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 28px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--text-hi); }
.nav-logo img { width: 26px; height: 26px; }
.nav-logo span {
  font-family: var(--f-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--f-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid);
}
.nav-links a:hover { color: var(--c-gold); }
.nav-cta {
  font-family: var(--f-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #0E0D0B !important; background: var(--c-gold);
  padding: 9px 16px; border-radius: 99px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--c-gold-bright); color: #0E0D0B !important; }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ── Layers ── */
main { position: relative; z-index: 1; }
section { position: relative; }

/* ── Hero ── */
/* Pre-intro state: the hero is server-rendered fully visible, but the GSAP
   intro (impact-main.js) starts by hiding it (.from() tweens) — which used
   to paint hero → vanish → replay while the CDN scripts downloaded. Hide it
   from FIRST paint instead, so the intro is the first thing ever seen.
   Scoped to html.js (inline head script — no-JS visitors always see content)
   and to no-preference (reduced-motion visitors skip the intro entirely, so
   they must never be hidden). impact-main.js adds `intro-started` once the
   timeline's own initial states are applied; the head script adds it after
   2.5s as a failsafe if the scripts never arrive. */
@media (prefers-reduced-motion: no-preference) {
  html.js:not(.intro-started) .hero-eyebrow,
  html.js:not(.intro-started) .hero-h1,
  html.js:not(.intro-started) .hero-sub,
  html.js:not(.intro-started) .hero-ctas,
  html.js:not(.intro-started) .hero-ticker { visibility: hidden; }
}
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px 28px 90px;
  max-width: 1500px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold);
  margin-bottom: 3.2vw;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow .rule { display: inline-block; width: 48px; height: 1px; background: var(--c-gold); opacity: .6; }
.hero-h1 {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3.4rem, 11.5vw, 11.5rem);
  line-height: 0.88; letter-spacing: -0.015em; color: var(--text-hi);
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero-line .ch { display: inline-block; will-change: transform; }
.hero-line.gold { color: var(--c-gold); }
.hero-sub {
  font-family: var(--f-mono); font-size: clamp(0.72rem, 1.4vw, 0.92rem);
  color: var(--text-mid); max-width: 560px; line-height: 1.75;
  margin-top: 3vw;
}
.hero-sub b { color: var(--text-hi); font-weight: 700; }
.hero-ctas { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.btn-solid {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #0E0D0B; background: var(--c-gold);
  padding: 16px 30px; border-radius: 99px;
  box-shadow: 0 0 40px rgba(232,160,32,0.25);
  transition: background .2s ease, box-shadow .2s ease;
  will-change: transform;
}
.btn-solid:hover { background: var(--c-gold-bright); color: #0E0D0B; box-shadow: 0 0 64px rgba(232,160,32,0.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mid);
  padding: 12px 0;
}
.btn-ghost:hover { color: var(--c-gold); }

/* Loss ticker */
.hero-ticker {
  position: absolute; left: 28px; right: 28px; bottom: 26px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  font-family: var(--f-mono); text-transform: uppercase;
}
.hero-ticker .lt-label { font-size: 0.56rem; letter-spacing: 0.14em; color: var(--text-lo); max-width: 340px; line-height: 1.7; }
.hero-ticker .lt-num {
  font-family: var(--f-display); font-weight: 900; letter-spacing: 0;
  font-size: clamp(1.6rem, 3.4vw, 3rem); color: var(--c-danger);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 720px) { .hero-ticker { flex-direction: column; gap: 6px; } }

/* ── Leak (pinned 62%) ── */
#leak { height: 240vh; }
.leak-pin {
  height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 24px;
}
.leak-big {
  font-family: var(--f-display); font-weight: 900; line-height: 0.85;
  font-size: clamp(10rem, 32vw, 30rem);
  color: var(--text-hi); letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.leak-big .pct { color: var(--c-danger); font-size: 0.42em; vertical-align: 0.72em; }
.leak-cap {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 2.4rem); letter-spacing: 0.02em;
  color: var(--text-mid); margin-top: 10px;
}
.leak-cap b { color: var(--c-danger); font-weight: 900; }
.leak-src { font-family: var(--f-mono); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-lo); margin-top: 26px; }

/* ── Fix (pinned word sequence) ── */
#fix { height: 380vh; }
.fix-pin {
  height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: 0 28px;
  max-width: 1500px; margin: 0 auto;
}
.fix-kicker {
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold);
  margin-bottom: 4vh;
}
.fix-stage { position: relative; min-height: 44vh; }
.fix-word { position: absolute; inset: 0; opacity: 0; will-change: transform, opacity, filter; }
.fix-word h2 {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3rem, 10.5vw, 10.5rem); line-height: 0.9;
  letter-spacing: -0.015em; color: var(--text-hi);
}
.fix-word .dot.red { color: var(--c-danger); }
.fix-word .dot.gold { color: var(--c-gold); }
.fix-word .dot.green { color: var(--c-success); }
.fix-word .unit { font-size: 0.42em; vertical-align: 0.62em; letter-spacing: 0; margin-left: 0.08em; }
.fix-word p {
  font-family: var(--f-mono); font-size: clamp(0.68rem, 1.3vw, 0.86rem);
  color: var(--text-mid); margin-top: 24px; max-width: 520px; line-height: 1.75;
}
.fix-steps {
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--text-lo); margin-top: 4vh;
}
.fix-steps .fs-cur { color: var(--c-gold); }
.fix-bar {
  width: 180px; height: 2px; background: rgba(240,237,230,0.1);
  margin-top: 12px; position: relative; overflow: hidden;
}
.fix-bar i { position: absolute; inset: 0; background: var(--c-gold); transform-origin: 0 50%; transform: scaleX(0); }

/* ── AI Receptionist (pinned call transcript) ── */
#agent { height: 320vh; }
.agent-pin { height: 100svh; display: flex; align-items: center; padding: 0 28px; }
.agent-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  max-width: 1240px; margin: 0 auto; width: 100%; align-items: center;
}
@media (max-width: 900px) { .agent-grid { grid-template-columns: 1fr; gap: 36px; } }
.agent-h2 {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.4rem, 5.6vw, 5rem); line-height: 0.92; letter-spacing: -0.015em;
  color: var(--text-hi);
}
.agent-h2 .gold { color: var(--c-gold); }
.agent-sub {
  font-family: var(--f-mono); font-size: clamp(0.7rem, 1.3vw, 0.86rem);
  color: var(--text-mid); line-height: 1.8; margin: 22px 0 18px; max-width: 440px;
}
.agent-call {
  background: rgba(22,20,16,0.82); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px; backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-terminal);
}
.ac-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid);
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.ac-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-success);
  animation: ac-pulse 1.6s ease infinite;
}
@keyframes ac-pulse { 50% { opacity: 0.3; } }
.ac-wave { display: flex; align-items: center; gap: 3px; margin-left: auto; height: 16px; }
.ac-wave i {
  width: 3px; height: 6px; border-radius: 2px; background: var(--c-gold);
  animation: ac-wv 0.9s ease-in-out infinite;
}
.ac-wave i:nth-child(2) { animation-delay: 0.15s; }
.ac-wave i:nth-child(3) { animation-delay: 0.3s; }
.ac-wave i:nth-child(4) { animation-delay: 0.45s; }
.ac-wave i:nth-child(5) { animation-delay: 0.6s; }
@keyframes ac-wv { 50% { height: 15px; } }
@media (prefers-reduced-motion: reduce) { .ac-wave i, .ac-dot { animation: none; } }
.ac-line {
  padding: 13px 16px; border-radius: 12px;
  font-family: var(--f-body); font-size: 0.92rem; line-height: 1.55; max-width: 92%;
}
.ac-line.caller { background: var(--bg-2); border: 1px solid var(--border); color: var(--text-mid); align-self: flex-start; }
.ac-line.ai { background: var(--c-gold-dim); border: 1px solid var(--border-accent); color: var(--text-hi); align-self: flex-end; }
.ac-line.booked {
  font-family: var(--f-mono); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-success); background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25); align-self: center;
}
html.reduced #agent { height: auto; padding: 12vh 0; }

/* ── Proof ── */
#proof { padding: 20vh 0 14vh; overflow: hidden; }
.proof-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1200px; margin: 0 auto 12vh; padding: 0 28px;
}
.stat {
  padding: 34px 26px; background: rgba(22,20,16,0.5);
  border: 1px solid var(--border); backdrop-filter: blur(6px);
}
.stat .s-num {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem); line-height: 1; color: var(--text-hi);
  font-variant-numeric: tabular-nums;
}
.stat .s-num em { font-style: normal; color: var(--c-gold); }
.stat .s-cap {
  font-family: var(--f-mono); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mid);
  margin-top: 14px; line-height: 1.8;
}
@media (max-width: 820px) { .proof-stats { grid-template-columns: 1fr; } }

.marquee { display: flex; overflow: hidden; user-select: none; gap: 0; }
.marquee + .marquee { margin-top: 10px; }
.marquee-track {
  display: flex; flex-shrink: 0; align-items: center; gap: 42px; padding-right: 42px;
  animation: mq 36s linear infinite;
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.8rem); letter-spacing: 0.01em;
  white-space: nowrap; color: var(--text-hi);
}
.marquee.rev .marquee-track { animation-direction: reverse; color: transparent; -webkit-text-stroke: 1px rgba(240,237,230,0.28); }
.marquee-track .sep { color: var(--c-gold); -webkit-text-stroke: 0; font-size: 0.6em; }
@keyframes mq { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── Plans ── */
#plans { padding: 10vh 28px 16vh; max-width: 1240px; margin: 0 auto; }
.plans-head { margin-bottom: 7vh; }
.sec-eyebrow {
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.sec-eyebrow .rule { width: 48px; height: 1px; background: var(--c-gold); opacity: .6; }
.plans-head h2, .book-h2 {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 6.4rem); line-height: 0.9; letter-spacing: -0.015em;
  color: var(--text-hi);
}
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; perspective: 1200px; }
@media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr; } }
.plan {
  position: relative; padding: 34px 30px 30px; border-radius: 14px;
  background: rgba(22,20,16,0.72); border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: border-color .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d; will-change: transform;
  display: flex; flex-direction: column; gap: 0;
}
.plan:hover { border-color: var(--border-accent); box-shadow: var(--shadow-card-hover); }
.plan.hot { border-color: var(--border-strong); box-shadow: var(--shadow-popular); }
.plan .p-pop {
  position: absolute; top: -11px; left: 30px;
  font-family: var(--f-mono); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--c-gold); color: #0E0D0B; padding: 4px 12px; border-radius: 99px;
}
.plan .p-tag {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.7rem; line-height: 1; color: var(--text-hi);
}
.plan .p-line {
  font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-mid); margin-top: 10px; line-height: 1.8;
}
.plan .p-price {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: 1; color: var(--c-gold);
  margin-top: 26px;
}
.plan .p-price small { font-size: 0.38em; color: var(--text-mid); font-weight: 700; letter-spacing: 0.04em; }
.plan .p-setup { font-family: var(--f-mono); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-lo); margin-top: 8px; }
.plan ul { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 11px; }
.plan ul li {
  font-family: var(--f-body); font-size: 0.88rem; color: var(--text-mid);
  padding-left: 20px; position: relative; line-height: 1.5;
}
.plan ul li::before { content: '→'; position: absolute; left: 0; color: var(--c-gold); font-family: var(--f-mono); font-size: 0.8rem; }
.plans-note {
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-lo); margin-top: 40px; line-height: 2;
}
.plans-note a { color: var(--c-gold); }

/* ── Book ── */
#book {
  min-height: 92svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 12vh 24px;
}
.book-h2 { font-size: clamp(3rem, 9.5vw, 9rem); }
.book-h2 .gold { color: var(--c-gold); }
.book-sub {
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mid);
  margin: 4vh 0 5vh; line-height: 2.2;
}
.btn-mega {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.2rem, 2.6vw, 2rem); letter-spacing: 0.04em;
  color: #0E0D0B; background: var(--c-gold);
  padding: 26px 54px; border-radius: 99px;
  box-shadow: 0 0 80px rgba(232,160,32,0.3);
  transition: background .2s ease, box-shadow .2s ease;
  will-change: transform;
}
.btn-mega:hover { background: var(--c-gold-bright); color: #0E0D0B; box-shadow: 0 0 120px rgba(232,160,32,0.5); }

/* ── Footer ── */
footer {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; padding: 30px 28px;
  border-top: 1px solid var(--border);
  font-family: var(--f-mono); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-lo);
}
footer nav { display: flex; gap: 22px; }
footer a { color: var(--text-mid); }
footer a:hover { color: var(--c-gold); }

/* ── Mobile ── */
@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav.is-scrolled { padding: 10px 18px; }
  .nav-logo span { font-size: 0.9rem; }
  .nav-cta { padding: 12px 18px; }

  #hero { padding: 96px 20px 48px; }
  .hero-eyebrow { margin-bottom: 22px; font-size: 0.56rem; letter-spacing: 0.16em; }
  .hero-h1 { font-size: clamp(3rem, 16.5vw, 4.4rem); }
  .hero-sub { margin-top: 26px; max-width: 100%; }
  .hero-ctas { margin-top: 28px; gap: 16px; }
  .btn-solid { padding: 15px 24px; font-size: 0.95rem; }
  .hero-ticker { position: static; margin-top: 44px; }
  .hero-ticker .lt-label { max-width: 100%; }

  .leak-pin { padding: 0 20px; }
  .leak-big { font-size: clamp(6.5rem, 38vw, 10rem); }
  .leak-src { padding: 0 10px; line-height: 1.9; }

  .fix-pin { padding: 0 20px; }
  .fix-stage { min-height: 58vh; }
  .fix-word h2 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .fix-word p { margin-top: 18px; }

  .agent-pin { padding: 0 20px; }
  .agent-grid { gap: 26px; }
  .agent-h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .agent-sub { margin: 14px 0 12px; }
  .agent-call { padding: 18px; gap: 10px; }
  .ac-line { font-size: 0.84rem; padding: 11px 13px; }

  #proof { padding: 14vh 0 10vh; }
  .proof-stats { padding: 0 20px; margin-bottom: 9vh; }
  .stat { padding: 26px 20px; }

  #plans { padding: 8vh 20px 12vh; }
  .plans-grid { gap: 14px; }
  .plan { padding: 28px 22px 24px; }

  #book { padding: 10vh 20px; }
  .btn-mega { padding: 20px 34px; font-size: 1.15rem; }
  .book-sub { padding: 0 6px; }

  footer { padding: 24px 20px; gap: 14px; }
  footer nav { gap: 16px; }
}

/* Short landscape phones: pinned scenes need vertical room */
@media (max-height: 480px) {
  .leak-big { font-size: clamp(4rem, 30vh, 8rem); }
  .fix-word h2 { font-size: clamp(2rem, 22vh, 4rem); }
  .agent-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ac-line { font-size: 0.74rem; padding: 8px 10px; }
  .agent-h2 { font-size: clamp(1.6rem, 14vh, 2.4rem); }
  .agent-sub { display: none; }
}

/* ── Reveal defaults (JS animates in) ── */
[data-reveal] { opacity: 0; transform: translateY(40px); }
html.reduced [data-reveal] { opacity: 1; transform: none; }
html.reduced .fix-word { position: relative; opacity: 1; margin-bottom: 8vh; }
html.reduced #fix, html.reduced #leak { height: auto; padding: 12vh 0; }
html.reduced .hero-line .ch { transform: none !important; }
