/* ============================================================
   INFINITE PARALLEL — base layout + theme token contract
   Every theme in themes.css re-declares these tokens; base.css
   only consumes them. Defaults below = "frytech" machined look.
   ============================================================ */

:root {
  /* surfaces */
  --bg: #08090a;
  --bg-layer: radial-gradient(120% 80% at 78% 18%, rgba(194,74,28,.16), transparent 55%),
              radial-gradient(100% 90% at 12% 100%, rgba(111,125,138,.10), transparent 60%);
  --surface: #131417;
  --surface-2: #181a1e;
  --line: rgba(233,226,213,0.10);
  --line-2: rgba(233,226,213,0.06);

  /* text */
  --text: #ece6da;
  --text-dim: #8e8779;
  --text-faint: #6a6458;

  /* accents */
  --accent: #c24a1c;
  --accent-2: #e2733a;
  --accent-ink: #ffffff;

  /* type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --h-weight: 500;
  --h-transform: none;
  --h-spacing: -0.02em;
  --h-line: 1.04;
  --h-scale: 1;
  --body-size: 16.5px;

  /* details */
  --eyebrow-color: var(--accent-2);
  --eyebrow-spacing: 0.28em;
  --r-s: 3px;   /* buttons, chips */
  --r-m: 3px;   /* cards */
  --r-l: 6px;   /* panels */
  --card-bg: var(--surface);
  --card-border: 1px solid var(--line);
  --card-shadow: none;
  --card-shadow-hover: 0 18px 44px -18px rgba(0,0,0,.6);
  --lift: -4px;

  --btn-radius: var(--r-s);
  --btn-font: var(--font-mono);
  --btn-size: 0.78rem;
  --btn-spacing: 0.16em;
  --btn-transform: uppercase;
  --btn-weight: 500;
  --btn-shadow-h: 0 12px 34px -16px rgba(194,74,28,0.7);
  --ghost-border: rgba(194,74,28,0.35);

  --nav-bg: rgba(8,9,10,0.72);
  --nav-blur: blur(14px) saturate(1.2);
  --nav-border: var(--line);

  --panel-bg: #101113;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  background-image: var(--bg-layer);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
a { color: inherit; }
img { max-width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* fixed overlays each theme can claim (grain, grids, scanlines, stripes) */
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
}

/* canvas fx layer sits behind everything */
.fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.nav, main, .ticker, .foot, .theme-panel { position: relative; z-index: 2; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }

/* ---------- type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--h-weight);
  text-transform: var(--h-transform);
  letter-spacing: var(--h-spacing);
  line-height: var(--h-line);
  margin: 0 0 0.5em;
}
h2 { font-size: calc(clamp(30px, 4.6vw, 46px) * var(--h-scale)); }
.h-note { font-size: 0.45em; color: var(--text-dim); letter-spacing: 0; font-weight: 400; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--eyebrow-color);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--eyebrow-color); vertical-align: middle; margin-right: 10px; }
.fancy { font-style: italic; color: var(--accent-2); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 24px;
  background: var(--nav-bg);
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  border-bottom: 1px solid var(--nav-border);
}
.wordmark {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-decoration: none;
  margin-right: auto;
  white-space: nowrap;
}
.wm-sep { color: var(--accent-2); padding: 0 6px; }
.nav-links { display: flex; gap: 20px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--btn-font);
  font-size: var(--btn-size);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-spacing);
  text-transform: var(--btn-transform);
  text-decoration: none;
  border-radius: var(--btn-radius);
  padding: 12px 22px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-solid {
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: var(--btn-shadow-h); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--ghost-border);
}
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); transform: translateY(-2px); }
.btn-wear {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  padding: 9px 14px;
}
.btn-wear:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* ---------- hero ---------- */
.hero { min-height: 88vh; display: flex; align-items: center; padding: 90px 0 40px; position: relative; }
.hero .wrap { position: relative; z-index: 2; pointer-events: none; }
.hero .wrap > * { pointer-events: auto; }
.rig-shell {
  position: absolute;
  top: 0; right: 0;
  width: 46%;
  max-width: 660px;
  height: 100%;
  z-index: 1;
}
.rig-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
}
.rig-hint {
  position: absolute;
  right: 2px; bottom: 16px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
/* mobile: the rig drops into flow as a band under the hero text */
@media (max-width: 960px) {
  .hero { flex-direction: column; justify-content: center; }
  .rig-shell {
    position: relative;
    width: 100%;
    max-width: none;
    height: 300px;
    margin-top: 6px;
  }
  .rig-hint { right: 16px; }
}
.hero-h {
  font-size: calc(clamp(42px, 7.4vw, 88px) * var(--h-scale));
  margin: 0 0 26px;
}
.hero-sub { max-width: 560px; color: var(--text-dim); margin: 0 0 30px; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.now-wearing {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  margin: 0 0 36px;
}
.now-wearing b { color: var(--accent-2); font-weight: 700; }
.nw-src { color: var(--text-faint); }
.nw-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2); animation: nwpulse 2.2s ease-in-out infinite; }
@keyframes nwpulse { 50% { opacity: .35; } }
.hero-stats { display: flex; gap: 42px; margin: 0; }
.hero-stats dt { font-family: var(--font-display); font-size: 2rem; font-weight: var(--h-weight); line-height: 1; }
.hero-stats dd { margin: 6px 0 0; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); }

/* ---------- ticker ---------- */
.ticker {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  position: relative;
}
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 3; pointer-events: none; opacity: 1;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.ticker-track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: tickmove 40s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track .sep { color: var(--accent-2); }
@keyframes tickmove { to { transform: translateX(-100%); } }

/* ---------- sections ---------- */
.work, .studio, .contact { padding: 96px 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--r-m);
  box-shadow: var(--card-shadow);
  padding: 22px 22px 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(var(--lift)); box-shadow: var(--card-shadow-hover); border-color: var(--accent); }
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.card-num { color: var(--accent-2); font-weight: 700; }
.card-domain { color: var(--text-faint); }
.card-title { font-size: calc(1.42rem * var(--h-scale)); margin: 0 0 10px; }
.card-desc { font-size: 0.92rem; color: var(--text-dim); margin: 0 0 16px; flex: 1; }
.card-desc em { color: var(--text); }
.card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0 0 18px;
}
.card-tags li {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 4px 9px;
}
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  transition: color .2s var(--ease);
}
.card-link:hover { color: var(--accent-2); }

/* ---------- studio ---------- */
.studio-lead { max-width: 620px; color: var(--text-dim); margin: 0 0 40px; }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
}
.cap { background: var(--panel-bg); padding: 26px 24px; transition: background .3s var(--ease); }
.cap:hover { background: var(--surface-2); }
.cap h3 { font-size: calc(1.05rem * var(--h-scale)); margin: 0 0 8px; }
.cap p { font-size: 0.88rem; color: var(--text-dim); margin: 0; }

/* ---------- contact ---------- */
.contact { text-align: center; padding-bottom: 130px; }
.contact h2 { font-size: calc(clamp(34px, 5.4vw, 60px) * var(--h-scale)); }
.contact-cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.foot-mark { letter-spacing: 0.3em; font-weight: 700; color: var(--text-dim); }
#footTheme { color: var(--accent-2); }

/* ---------- theme switcher ---------- */
.theme-toggle { position: relative; }
.theme-panel {
  position: fixed;
  top: 64px;
  right: 18px;
  z-index: 70;
  width: 300px;
  max-height: min(78vh, 620px);
  display: flex;
  flex-direction: column;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.55);
  padding: 14px;
}
.tp-title {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 2px 4px 10px;
}
.tp-list { display: flex; flex-direction: column; gap: 4px; overflow-y: auto; min-height: 0; flex: 1; }
.tp-entry { display: flex; gap: 4px; align-items: stretch; }
.tp-entry .tp-item { flex: 1; }
.tp-copy {
  flex: none;
  width: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  color: var(--text-dim);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.tp-copy:hover { color: var(--accent-2); border-color: var(--accent-2); }
.tp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-s);
  color: var(--text);
  font-family: var(--font-body);
  padding: 9px 10px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.tp-item:hover { background: var(--surface-2); }
.tp-item[aria-selected="true"] { border-color: var(--accent); }
.tp-sw { display: flex; gap: 3px; flex: none; }
.tp-sw i { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); }
.tp-name { font-size: 0.86rem; font-weight: 600; line-height: 1.2; display: block; }
.tp-src { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--text-faint); text-transform: uppercase; }
.tp-random {
  width: 100%;
  margin-top: 10px;
  background: transparent;
  border: 1px dashed var(--line);
  border-radius: var(--r-s);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px;
  cursor: pointer;
}
.tp-random:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* ---------- theme panel extras ---------- */
.tp-row { display: flex; gap: 8px; margin-top: 8px; }
.tp-row button {
  flex: 1;
  background: transparent;
  border: 1px dashed var(--line);
  border-radius: var(--r-s);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px;
  cursor: pointer;
}
.tp-row button:hover, .tp-row button[aria-pressed="true"] { color: var(--accent-2); border-color: var(--accent-2); }

/* ---------- theatre (theme-switch ceremonies) ---------- */
#theatre { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
#theatre .th-fade { position: absolute; inset: 0; opacity: 0; transition: opacity 0.16s ease; }
#theatre .th-black { position: absolute; inset: 0; background: #000; }
#theatre .th-crtline {
  position: absolute; left: 0; right: 0; top: 50%; height: 3px;
  background: #fff;
  box-shadow: 0 0 22px #fff, 0 0 60px rgba(255,255,255,.6);
  animation: crtline 0.32s ease forwards;
}
@keyframes crtline { 0% { transform: scaleX(1); } 70% { transform: scaleX(0.35); opacity: 1; } 100% { transform: scaleX(0); opacity: 0; } }
#theatre .th-bios {
  position: absolute; inset: 0; background: #000;
  color: #c0c0c0;
  font: 14px/1.8 "Courier New", monospace;
  padding: 44px 48px;
}
#theatre .th-bios .bl { white-space: pre-wrap; min-height: 1.8em; }
#theatre .th-bios .bar {
  margin-top: 20px; width: min(420px, 70%); height: 16px;
  border: 1px solid #808080; position: relative; overflow: hidden;
}
#theatre .th-bios .bar i {
  position: absolute; inset: 0; width: 0;
  background: repeating-linear-gradient(90deg, #000080 0 14px, #1084d0 14px 16px);
  transition: width 0.8s steps(12);
}
#theatre .th-ops {
  position: absolute; left: 0; right: 0; top: 0; height: 100%;
  background:
    linear-gradient(rgba(53,224,101,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,48,64,.05) 1px, transparent 1px),
    repeating-linear-gradient(180deg, transparent 0 2px, rgba(0,0,0,.25) 2px 3px),
    #060409;
  background-size: 48px 48px, 48px 48px, auto, auto;
  transform: translateY(-100%);
  animation: opsweep 0.68s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}
#theatre .th-ops::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: #35e065;
  box-shadow: 0 0 18px #35e065, 0 0 44px rgba(53,224,101,.5);
}
#theatre .th-ops::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px;
  background: #ff3040;
  box-shadow: 0 0 14px rgba(255,48,64,.8);
}
@keyframes opsweep { to { transform: translateY(100%); } }
#theatre .th-vs { position: absolute; inset: 0; background: #fff; opacity: 0; animation: vsflash 0.5s steps(1); }
@keyframes vsflash { 0%, 40% { opacity: 0; } 10%, 30%, 60% { opacity: 1; } 20%, 50%, 100% { opacity: 0; } }
main.shake { animation: ipshake 0.45s linear; }
@keyframes ipshake {
  10% { transform: translate(-6px, 3px); } 30% { transform: translate(5px, -4px); }
  50% { transform: translate(-4px, 2px); } 70% { transform: translate(3px, -2px); }
  90% { transform: translate(-2px, 1px); }
}

/* ---------- idle screensaver ---------- */
.saver-cv { position: fixed; inset: 0; z-index: 95; width: 100%; height: 100%; }

/* ---------- a11y utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }

/* ---------- mobile nav ---------- */
.nav-burger { display: none; font-size: 1rem; padding: 10px 14px; }
@media (max-width: 700px) {
  .nav-burger { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px 20px;
    background: var(--nav-bg);
    backdrop-filter: var(--nav-blur);
    -webkit-backdrop-filter: var(--nav-blur);
    border-bottom: 1px solid var(--nav-border);
  }
  .nav.menu-open .nav-links { display: flex; }
}
.foot-link { color: var(--text-dim); }
.foot-link:hover { color: var(--accent-2); }

/* ---------- peak lightbox ---------- */
.card-peak {
  background: transparent;
  border: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  transition: color .2s var(--ease);
}
.card-peak:hover { color: var(--accent-2); }
.peak[hidden] { display: none; }
.peak {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.peak.on { opacity: 1; }
.peak figure {
  position: relative;
  margin: 0;
  max-width: min(1100px, 92vw);
  transform: scale(0.94);
  transition: transform .25s var(--ease);
}
.peak.on figure { transform: scale(1); }
.peak img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.peak figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
.peak-close {
  position: absolute;
  top: -14px; right: -14px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel-bg);
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
}
.peak-close:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 10px);
  z-index: 96;
  background: var(--panel-bg);
  border: 1px solid var(--accent);
  border-radius: var(--r-s);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.toast.on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hero { min-height: 74vh; }
  .hero-stats { gap: 26px; }
  .theme-panel { right: 10px; left: 10px; width: auto; }
}

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