/* =========================================================
   Resistance Band Collar — F2 Training System
   Modern, mobile-first, premium athletic
   ========================================================= */

:root {
  --bg: #0a0d12;
  --bg-alt: #0f141b;
  --surface: #161c25;
  --surface-2: #1c2330;
  --ink: #f4f6f8;
  --ink-dim: #9aa4b0;
  --ink-faint: #6b7480;
  --line: #232b37;
  --line-2: #2c3543;
  --accent: #ff5b1f;
  --accent-2: #ffb800;
  --accent-soft: rgba(255, 91, 31, .15);
  --good: #29d391;
  --hot: #e53935;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25);
  --shadow: 0 14px 40px rgba(0, 0, 0, .4);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, .55);

  --maxw: 1200px;
  --maxw-narrow: 880px;
  --gutter: clamp(16px, 4vw, 32px);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(16px, 1.04vw, 17.5px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: var(--accent-2); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
button { font: inherit; }
::selection { background: var(--accent); color: #0a0d12; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(72px, 10vw, 130px); }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.section-head-left { text-align: left; margin-inline: 0; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { color: var(--ink-dim); margin: 0; font-size: 1.05rem; }

.prose { color: var(--ink-dim); max-width: 65ch; margin: 32px auto; }
.prose.center { text-align: center; }
.center { text-align: center; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-family: var(--font); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-2);
  margin: 0 0 16px;
}
.eyebrow-hot { color: var(--hot); }
.word-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.word-mark { white-space: nowrap; }

/* ---------- a11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #0a0d12;
  padding: 10px 14px; border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  min-height: 44px;
  white-space: nowrap;
  letter-spacing: -.005em;
}
.btn-sm  { padding: 9px 16px;  font-size: .9rem; min-height: 38px; }
.btn-lg  { padding: 16px 28px; font-size: 1.02rem; }
.btn-xl  { padding: 20px 38px; font-size: 1.12rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff7a3d);
  color: #0a0d12;
  box-shadow: 0 8px 24px rgba(255, 91, 31, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 91, 31, .45);
  color: #0a0d12;
}
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-glass {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  border-color: rgba(255, 255, 255, .14);
}
.btn-glass:hover { background: rgba(255, 255, 255, .14); color: var(--ink); }
.btn:active { transform: translateY(0); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 13, 18, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-family: var(--font-display); }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 14px rgba(255, 91, 31, .4);
}
.brand-name { font-size: 1rem; letter-spacing: -0.02em; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: var(--ink-dim); font-weight: 600; font-size: .92rem; }
.primary-nav a:hover { color: var(--ink); }
.primary-nav .btn { color: #0a0d12; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink);
  margin: 4px 0; transition: transform .2s, opacity .2s;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: clamp(620px, 95vh, 920px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(80px, 12vw, 140px);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(.42) saturate(1.1);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 80% 20%, rgba(255, 91, 31, .22), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(255, 184, 0, .12), transparent 65%),
    linear-gradient(180deg, rgba(10, 13, 18, .55) 0%, rgba(10, 13, 18, .85) 75%, var(--bg) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: .35;
  background-image:
    radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 920px;
}
.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto 32px;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.hero-stats {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  padding: 0; margin: 56px 0 0;
}
.hero-stats li {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.hero-stats span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-faint);
  font-weight: 600;
}

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 14px;
  display: grid; place-items: center;
}
.scroll-cue span {
  width: 4px; height: 8px;
  background: var(--ink);
  border-radius: 2px;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(-8px); opacity: 0; }
  50% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================
   VIDEO FRAME (native lazy iframe wrapper)
   ========================================================== */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-frame.vertical { aspect-ratio: 9 / 16; }

/* ==========================================================
   PRODUCT LINEUP
   ========================================================== */
.lineup {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lineup-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
}
.lineup-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.lineup-card.featured {
  border-color: rgba(255, 91, 31, .35);
  box-shadow: 0 0 0 1px rgba(255, 91, 31, .2), 0 14px 40px rgba(0, 0, 0, .35);
}
.lineup-card .badge {
  position: absolute; top: 16px; right: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a0d12;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.lineup-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #0a0d12;
  overflow: hidden;
}
.lineup-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.lineup-card:hover img { transform: scale(1.05); }
.lineup-body {
  padding: 24px 22px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.lineup-body h3 { margin: 0 0 8px; }
.lineup-body p { color: var(--ink-dim); margin: 0 0 18px; flex: 1; }

.link-arrow {
  color: var(--accent-2);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .95rem;
}
.link-arrow span { transition: transform .2s ease; display: inline-block; }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover span { transform: translateX(4px); }

/* ==========================================================
   FEATURE ROWS (alternating)
   ========================================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-media { order: 2; }

.feature-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.feature-row:hover .feature-media img { transform: scale(1.04); }

.feature-copy h3 { margin: 4px 0 14px; }
.feature-copy > p { color: var(--ink-dim); margin: 0 0 20px; font-size: 1.05rem; }

.check {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.check li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
}
.check li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-2));
}
.check li::after {
  content: "";
  position: absolute; left: 5px; top: 11px;
  width: 8px; height: 4px;
  border-left: 2px solid #0a0d12;
  border-bottom: 2px solid #0a0d12;
  transform: rotate(-45deg);
}

/* ==========================================================
   HISTORY TIMELINE
   ========================================================== */
.timeline {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  counter-reset: tl;
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.timeline-item.reverse .timeline-media { order: -1; }

.timeline-side h3 { margin: 14px 0 16px; }
.timeline-side p { color: var(--ink-dim); margin: 0; }

.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0a0d12;
  background: var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: .08em;
}

.timeline-media .video-frame { aspect-ratio: 16 / 9; }

/* ==========================================================
   SYSTEM SECTION (vertical video in phone frame)
   ========================================================== */
.system-section {
  background:
    radial-gradient(800px 500px at 50% 30%, rgba(255, 91, 31, .12), transparent 60%),
    var(--bg);
}
.phone-frame {
  max-width: 360px;
  margin: 0 auto;
  padding: 14px;
  background: linear-gradient(160deg, #1c2330, #0a0d12);
  border: 1px solid var(--line-2);
  border-radius: 40px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.phone-frame .video-frame {
  border-radius: 28px;
  border-color: var(--line-2);
}

/* ==========================================================
   BENTO (latest)
   ========================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000;
  isolation: isolate;
}
.bento-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .3s ease;
  filter: brightness(.75);
}
.bento-item:hover img { transform: scale(1.05); filter: brightness(.55); }
.bento-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .85) 100%);
}
.bento-overlay h3 { margin: 0; color: var(--ink); font-size: 1.2rem; }
.bento-overlay .eyebrow { margin-bottom: 6px; }
.bento-overlay .link-arrow { margin-top: 10px; display: inline-flex; }
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-large h3 { font-size: 1.6rem; }

a.bento-item { display: block; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-container { max-width: var(--maxw-narrow); }
.faq {
  display: grid; gap: 12px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  cursor: pointer; font-weight: 700;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem; line-height: 1;
  color: var(--accent);
  transition: transform .25s ease;
  font-weight: 400;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; color: var(--ink-dim); }

.resources {
  margin: 48px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}
.resources h3 { margin: 0 0 18px; font-size: 1.1rem; }
.resources ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.resources a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}
.resources li:last-child a { border-bottom: 0; }
.resources a:hover { color: var(--accent); }
.play-dot {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 91, 31, .4);
  flex-shrink: 0;
  position: relative;
}
.play-dot::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--accent);
  margin-left: 2px;
}

/* ==========================================================
   FINAL CTA BAND
   ========================================================== */
.cta-band {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.3) saturate(1.2);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 400px at 50% 50%, rgba(255, 91, 31, .25), transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}
.cta-band-inner { position: relative; max-width: 760px; }
.cta-band-inner h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 18px;
}
.cta-band-sub {
  color: var(--ink-dim);
  font-size: 1.1rem;
  margin: 0 0 32px;
}
.fine {
  margin-top: 20px;
  color: var(--ink-faint);
  font-size: .85rem;
  letter-spacing: .04em;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { max-width: 320px; }
.footer-tag { color: var(--ink-dim); margin: 12px 0 0; font-size: .92rem; }
.footer-grid h4 { margin: 0 0 14px; color: var(--ink-dim); }
.footer-grid nav { display: grid; gap: 10px; }
.footer-grid nav a { color: var(--ink); font-size: .95rem; font-weight: 500; }
.footer-grid nav a:hover { color: var(--accent); }
.copyright {
  text-align: center;
  color: var(--ink-faint);
  font-size: .85rem;
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ==========================================================
   REVEAL ON SCROLL
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1000px) {
  .lineup { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 280px 280px 280px;
  }
  .bento-large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 880px) {
  .feature-row,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-row.reverse .feature-media,
  .timeline-item.reverse .timeline-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; max-width: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(10, 13, 18, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 20px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .primary-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav .btn { margin-top: 10px; align-self: flex-start; }
  .site-header.open .primary-nav {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .site-header.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }
  .bento-large { grid-column: span 1; }
  .hero-stats { gap: 24px; }
  .hero-stats li { flex: 1 1 40%; }
  .scroll-cue { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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