/* ============================================================
   RESELL WATCHDOG — landing styles
   Dark, precise, fintech-grade. Matte black + one electric-blue
   accent. Green reserved STRICTLY for profit/positive figures.
   Type: Space Grotesk (UI) + JetBrains Mono (labels/data).
   Mobile-first. Zero dependencies.
   ============================================================ */

:root {
  /* Palette (from style guide) */
  --bg:       #08090b;              /* page / surface base */
  --surface:  rgba(255,255,255,.025);
  --surface-2:rgba(255,255,255,.04);
  --border:   rgba(255,255,255,.08);
  --divider:  rgba(255,255,255,.05);
  --accent:   #4d8dff;             /* primary — CTAs, links, active */
  --accent-dim: rgba(77,141,255,.14);
  --up:       #37d39b;             /* profit / positive ONLY */
  --up-dim:   rgba(55,211,155,.12);
  --ink:      #f4f6f8;             /* primary text */
  --muted:    #878c95;             /* secondary text */

  /* Radius scale (from guide) */
  --r-pill: 7px;      /* tags / pills */
  --r-btn: 10px;      /* chips / buttons */
  --r-card: 16px;     /* cards / panels */

  --font-ui: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --maxw: 1160px;
  --glow-blue: radial-gradient(closest-side, rgba(77,141,255,.28), transparent 72%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-ui);
  color: var(--ink);
  background-color: var(--bg);
  /* Signature texture: faint 56px dot grid @ ~3% white */
  background-image: radial-gradient(rgba(255,255,255,.028) 1px, transparent 1.4px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
strong { font-weight: 600; color: var(--ink); }

.accent { color: var(--accent); }

/* Mono label utility (from guide: 12/600, uppercase, wide tracking) */
.label {
  display: inline-block; font-family: var(--font-mono); font-weight: 600;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
}
.label.muted { color: var(--muted); }

/* Status dots */
.dot { width: 6px; height: 6px; border-radius: 50%; flex: none; display: inline-block; }
.dot--blue { background: var(--accent); }
.dot--profit { background: var(--up); box-shadow: 0 0 10px rgba(55,211,155,.7); }
.dot--live { width: 7px; height: 7px; background: var(--accent); box-shadow: 0 0 10px rgba(77,141,255,.9); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Buttons (guide: radius 10px) ---------- */
.btn {
  --pad-y: 12px; --pad-x: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-ui); font-weight: 600; font-size: 15px; letter-spacing: -.01em;
  border-radius: var(--r-btn); cursor: pointer; border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn--primary {
  color: #08090b; background: var(--accent); font-weight: 600;
  box-shadow: 0 0 0 1px rgba(77,141,255,.35), 0 10px 30px -8px rgba(77,141,255,.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(77,141,255,.55), 0 16px 38px -8px rgba(77,141,255,.7); background: #5f9bff; }
.btn--secondary {
  color: var(--ink); background: var(--surface); border-color: var(--border);
}
.btn--secondary:hover { border-color: rgba(77,141,255,.5); color: #fff; transform: translateY(-2px); }
.btn--sm { --pad-y: 9px; --pad-x: 16px; font-size: 14px; }
.btn--lg { --pad-y: 15px; --pad-x: 26px; font-size: 16px; }
.btn--xl { --pad-y: 18px; --pad-x: 36px; font-size: 17px; }

/* ---------- Chips (guide: pill radius 9px, mono uppercase, dot) ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--font-mono); font-weight: 500; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Tag / pill ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px; border-radius: var(--r-pill);
  background: var(--accent-dim); border: 1px solid rgba(77,141,255,.28);
  font-family: var(--font-mono); font-weight: 600; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,9,11,.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(8,9,11,.85); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 30px; height: 30px; border-radius: 8px; overflow: hidden; flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__name { font-family: var(--font-mono); font-weight: 600; font-size: 14px; letter-spacing: .26em; color: var(--ink); }

.nav__links { display: none; gap: 30px; }
.nav__links a { font-weight: 500; font-size: 15px; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: none; }

.nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: grid; gap: 2px; padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.nav__mobile.open { max-height: 340px; padding: 10px 20px 20px; border-bottom: 1px solid var(--border); background: rgba(8,9,11,.96); }
.nav__mobile a { padding: 13px 4px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--divider); }
.nav__mobile a.btn { border: 0; color: #08090b; margin-top: 12px; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 26px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -160px; right: -120px; width: 720px; height: 620px;
  pointer-events: none; z-index: 0; background: var(--glow-blue);
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: 40px; }

.hero__title {
  margin: 20px 0 18px; font-weight: 600; letter-spacing: -.03em;
  font-size: clamp(42px, 12vw, 66px); line-height: 1.0;
}
.hero__sub { font-size: clamp(15.5px, 4.2vw, 18px); color: var(--muted); max-width: 520px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.hero__cta .btn { flex: 1 1 auto; }

.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero__trust li { position: relative; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .12em; color: var(--muted); padding-left: 14px; }
.hero__trust li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* Terminal live feed */
.hero__panel { position: relative; z-index: 1; }
.feed { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,.8); }
.feed__bar { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.015); }
.feed__dots { display: inline-flex; gap: 6px; }
.feed__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.14); }
.feed__title { margin-left: 8px; font-family: var(--font-mono); color: var(--muted); font-size: 12.5px; letter-spacing: .04em; }
.feed__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .16em; color: var(--accent); }
.feed__list { padding: 12px; display: grid; gap: 10px; min-height: 340px; align-content: start; }

.alert {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: start;
  padding: 13px 14px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border); border-left: 2px solid var(--accent);
  transform: translateY(-8px); opacity: 0; animation: slideIn .5s forwards;
}
@keyframes slideIn { to { transform: translateY(0); opacity: 1; } }
.alert__tag { grid-column: 1 / 2; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; display: inline-flex; align-items: center; gap: 7px; }
.alert__name { grid-column: 1 / 2; font-size: 14.5px; font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alert__path { grid-column: 1 / 2; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alert__profit { grid-column: 2 / 3; grid-row: 1 / 4; align-self: center; font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--up); padding: 6px 10px; border-radius: var(--r-pill); background: var(--up-dim); white-space: nowrap; }

/* Product chip row */
.chiprow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }

/* Marquee */
.marquee { margin-top: 34px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 40px; width: max-content; animation: scroll 30s linear infinite; }
.marquee__track span { font-family: var(--font-mono); font-weight: 500; font-size: 14px; letter-spacing: .08em; color: var(--muted); white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { padding: 10px 0 4px; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat { padding: 24px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); }
.stat__num { font-family: var(--font-mono); font-size: clamp(28px, 8vw, 38px); font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.stat__label { margin-top: 6px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: .12em; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 68px 0; }
.section__head { max-width: 620px; margin: 0 0 40px; }
.section__head .label { margin-bottom: 14px; }
.section__title { font-size: clamp(28px, 7vw, 40px); font-weight: 600; letter-spacing: -.025em; line-height: 1.08; }
.section__lead { margin-top: 15px; font-size: clamp(15px, 4vw, 17.5px); color: var(--muted); }

/* ---------- Features grid ---------- */
.grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.card {
  padding: 26px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(77,141,255,.35); background: var(--surface-2); }
.card__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(77,141,255,.2); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--muted); }

/* ---------- Past wins ---------- */
.wins__foot { margin-top: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--muted); }
.winspanel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; }
.winspanel__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--divider); }
.winrow { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; padding: 18px 20px; border-bottom: 1px solid var(--divider); }
.winrow:last-child { border-bottom: 0; }
.winrow__name { font-size: 16px; font-weight: 500; color: var(--ink); }
.winrow__path { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.winrow__tag { font-family: var(--font-mono); font-weight: 600; font-size: 12.5px; color: var(--accent); background: var(--accent-dim); padding: 6px 11px; border-radius: var(--r-pill); }
.winrow__profit { font-family: var(--font-mono); font-weight: 600; font-size: 16px; color: var(--up); min-width: 78px; text-align: right; }

/* ---------- Custom bots ---------- */
.bots__inner { display: grid; gap: 40px; align-items: center; }
.bots__copy .section__title { margin-top: 12px; }
.bots__copy .section__lead { margin-bottom: 26px; }
.checklist { list-style: none; display: grid; gap: 13px; margin-bottom: 30px; }
.checklist li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 9px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* Discord mock */
.discord { background: #1a1b1e; border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,.85); }
.discord__head { padding: 15px 18px; background: rgba(255,255,255,.02); color: var(--ink); font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 6px; }
.discord__hash { color: var(--muted); font-size: 20px; }
.discord__body { padding: 16px; display: grid; gap: 18px; }
.dmsg { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; }
.dmsg__avatar { width: 38px; height: 38px; border-radius: 10px; overflow: hidden; display: grid; place-items: center; color: var(--accent); font-size: 20px; background: var(--accent-dim); }
.dmsg__avatar--you svg { width: 100%; height: 100%; }
.dmsg__avatar--bot { border: 1px solid rgba(77,141,255,.3); }
.dmsg__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.dmsg__name { color: var(--ink); font-weight: 600; font-size: 14.5px; }
.dmsg__name--bot { color: var(--accent); }
.badge { font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: .08em; color: #08090b; background: var(--accent); padding: 2px 5px; border-radius: 4px; }
.dmsg__time { font-family: var(--font-mono); color: var(--muted); font-size: 11px; }
.dmsg__text { color: var(--ink); font-size: 14.5px; }
.dmsg__text code { font-family: var(--font-mono); background: rgba(255,255,255,.05); color: var(--accent); padding: 2px 7px; border-radius: 5px; font-size: 13px; }

.alertcard { margin-top: 8px; background: rgba(255,255,255,.02); border: 1px solid var(--border); border-left: 2px solid var(--up); border-radius: 12px; padding: 14px 16px; }
.alertcard__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .1em; color: var(--up); text-transform: uppercase; }
.alertcard__title { color: var(--ink); font-weight: 600; font-size: 15px; margin: 8px 0 10px; }
.alertcard__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.alertcard__path { font-family: var(--font-mono); color: var(--muted); font-size: 12px; }
.alertcard__profit { font-family: var(--font-mono); color: var(--up); font-weight: 600; font-size: 16px; }
.alertcard__cta { margin-top: 12px; font-family: var(--font-mono); color: var(--accent); font-weight: 500; font-size: 12.5px; letter-spacing: .04em; }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 14px; }
.step { padding: 30px 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); }
.step__num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: .1em; color: var(--accent); margin-bottom: 16px; display: inline-block; padding: 6px 10px; border: 1px solid rgba(77,141,255,.3); border-radius: 8px; }
.step h3 { font-size: 19px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- Trust ---------- */
.trust__grid { display: grid; gap: 14px; }
.trust__item { padding: 28px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); }
.trust__item svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 15px; }
.trust__item h3 { font-size: 18px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 8px; }
.trust__item p { color: var(--muted); font-size: 14.5px; }

/* ---------- Join ---------- */
.joincard { position: relative; overflow: hidden; text-align: center; padding: 60px 28px; border-radius: 20px; background: rgba(255,255,255,.025); border: 1px solid var(--border); }
.joincard__glow { position: absolute; inset: -60% 0 auto -10%; height: 460px; background: var(--glow-blue); pointer-events: none; }
.joincard > * { position: relative; z-index: 1; }
.joincard__title { font-size: clamp(26px, 7vw, 40px); font-weight: 600; letter-spacing: -.025em; line-height: 1.1; margin: 14px auto 16px; max-width: 620px; }
.joincard__sub { color: var(--muted); font-size: clamp(15px, 4vw, 17px); max-width: 560px; margin: 0 auto 30px; }
.joincard__sub em { color: var(--ink); font-style: normal; font-weight: 600; }
.joincard__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 26px; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .1em; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq__inner { max-width: 780px; }
.accordion { display: grid; gap: 12px; }
.acc { border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; background: var(--surface); transition: border-color .2s; }
.acc.open { border-color: rgba(77,141,255,.4); }
.acc__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--font-ui); font-size: 16px; font-weight: 500; letter-spacing: -.01em; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acc__icon { flex: none; width: 18px; height: 18px; position: relative; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .28s ease, opacity .28s; }
.acc__icon::before { top: 8px; left: 1px; width: 16px; height: 2px; }
.acc__icon::after { left: 8px; top: 1px; width: 2px; height: 16px; }
.acc.open .acc__icon::after { transform: scaleY(0); opacity: 0; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc__a p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 48px 0 40px; }
.footer__inner { display: grid; gap: 26px; }
.footer__brand p { margin-top: 16px; color: var(--muted); font-size: 14px; max-width: 360px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.footer__links a { font-weight: 500; color: var(--muted); font-size: 14.5px; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { display: grid; gap: 8px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--divider); font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--muted); }
.footer__disclaimer { opacity: .85; }

/* ---------- Mobile sticky CTA ---------- */
.mobilecta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
  display: flex; align-items: center; justify-content: center;
  padding: 15px; border-radius: var(--r-btn); font-weight: 600; font-size: 15px; color: #08090b;
  background: var(--accent); box-shadow: 0 0 0 1px rgba(77,141,255,.4), 0 14px 34px -8px rgba(77,141,255,.6);
  transform: translateY(160%); transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.mobilecta.show { transform: translateY(0); }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .trust__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__cta .btn { flex: 0 0 auto; }
  .footer__inner { grid-template-columns: 1fr auto; align-items: start; }
  .footer__bottom { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .mobilecta { display: none; }

  .hero { padding: 80px 0 40px; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .bots__inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .section { padding: 96px 0; }
  .brand__name { font-size: 15px; }
}

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