:root {
  --ink: #0b0c0e;
  --panel: #111318;
  --panel-raised: #181b21;
  --line: #2a2e36;
  --line-soft: #20232a;
  --text: #eeeae1;
  --dim: #b8bbc2;
  --muted: #878c96;
  --amber: #ff9d2e;
  --amber-soft: #ffbb6d;
  --red: #ff5757;
  --display: 'Barlow Condensed', sans-serif;
  --body: 'Manrope', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --page: min(1440px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
}
::selection { background: var(--amber); color: #1b1309; }
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
button, summary { font: inherit; }
.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .034;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  width: var(--page);
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: baseline; gap: 12px; text-decoration: none; }
.brand-mark { font: 700 25px/1 var(--display); letter-spacing: .02em; }
.brand-mark b { color: var(--amber); }
.brand-tag,
.section-label,
.eyebrow,
figcaption,
footer { font-family: var(--mono); text-transform: uppercase; letter-spacing: .16em; }
.brand-tag { font-size: 10px; color: var(--muted); }
nav { display: flex; gap: 28px; margin-left: auto; }
nav a {
  color: var(--dim);
  font: 11px var(--mono);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
nav a:hover { color: var(--amber); }
.eyebrow i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  vertical-align: 1px;
  animation: pulse 1.8s ease-in-out infinite;
}

.hero {
  width: var(--page);
  overflow: hidden;
  min-height: 0;
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: minmax(420px, .86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: clamp(44px, 6vw, 100px);
}
.hero-copy { min-width: 0; }
.eyebrow { margin: 0 0 22px; color: var(--amber-soft); font-size: 11px; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  text-transform: uppercase;
}
.hero-product {
  display: block;
  color: var(--amber);
  font: 700 clamp(64px, 5vw, 88px)/.9 var(--display);
  letter-spacing: -.025em;
  white-space: nowrap;
}
.hero-purpose {
  display: block;
  margin-top: 24px;
  color: var(--text);
  font: 600 clamp(38px, 3.25vw, 52px)/1.04 var(--display);
  letter-spacing: -.012em;
}
.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.8;
  text-wrap: pretty;
}
.hero-amps {
  max-width: 590px;
  margin: 17px 0 0;
  color: var(--muted);
  font: 12px/1.7 var(--mono);
}
.hero-amps b { color: var(--text); font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 14px 18px;
  border-radius: 6px;
  background: var(--amber);
  color: #191108;
  box-shadow: 0 0 30px rgba(255, 157, 46, .14);
  font: 700 18px var(--display);
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255, 157, 46, .27); }
.button:active { transform: translateY(0) scale(.96); }
.button span { font: 20px var(--mono); }
.text-link { color: var(--text); font: 11px var(--mono); text-decoration: none; text-transform: uppercase; }
.text-link span { margin-left: 7px; color: var(--amber); font-size: 15px; }

.hero-carousel { position: relative; min-width: 0; }
.stage-glow {
  position: absolute;
  inset: -24%;
  background: radial-gradient(ellipse, rgba(255, 157, 46, .17), transparent 62%);
  filter: blur(32px);
  pointer-events: none;
}
.carousel-viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #363a43;
  border-radius: 9px;
  background: #0f1013;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .48), inset 0 0 0 1px rgba(255, 255, 255, .02);
  transform: perspective(1500px) rotateY(-2.5deg) rotateX(1deg);
  transition: transform .5s ease;
}
.hero-carousel:hover .carousel-viewport { transform: none; }
.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .55s ease, transform 1.2s ease;
  pointer-events: none;
}
.carousel-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, .1);
  outline-offset: -1px;
}
.carousel-footer {
  min-height: 44px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}
.carousel-caption { color: var(--amber); font: 10px var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.carousel-dots { display: flex; gap: 0; }
.carousel-dots button {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.carousel-dots button::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 8px;
  width: 24px;
  height: 2px;
  background: #555b65;
  transition: background-color .2s ease, transform .2s ease;
}
.carousel-dots button.is-active::before { background: var(--amber); transform: scaleX(1.25); }
.carousel-controls { display: flex; align-items: center; gap: 7px; }
.carousel-count { margin-right: 4px; color: var(--muted); font: 10px var(--mono); }
.carousel-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--panel-raised);
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.carousel-controls button:hover { border-color: var(--amber); color: var(--amber); }
.carousel-controls button:active { transform: scale(.96); }

.feature-catalog {
  padding: 92px max(24px, calc((100% - min(1440px, calc(100% - 48px))) / 2)) 104px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catalog-intro {
  display: grid;
  grid-template-columns: .38fr 1.62fr;
  align-items: end;
  gap: 5vw;
  margin-bottom: 44px;
}
.section-label { color: var(--amber); font-size: 11px; }
.catalog-intro h2,
.download h2 {
  margin: 0;
  font: 600 clamp(48px, 4.6vw, 70px)/1 var(--display);
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.catalog-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}
.catalog-item {
  overflow: clip;
  border-radius: 10px;
  background: rgba(255, 255, 255, .018);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
  transition-property: background-color, box-shadow;
  transition-duration: .22s;
  transition-timing-function: ease-out;
}
.catalog-item:hover {
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .13);
}
.catalog-item[open] {
  background: var(--panel-raised);
  box-shadow: 0 0 0 1px rgba(255, 157, 46, .48), 0 20px 54px rgba(0, 0, 0, .22);
}
.catalog-item summary {
  min-height: 132px;
  display: grid;
  grid-template-columns: 54px minmax(250px, .8fr) minmax(320px, 1.2fr) 40px;
  grid-template-areas:
    'number title preview toggle'
    'count title preview toggle';
  align-items: center;
  gap: 2px 24px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}
.catalog-item summary::-webkit-details-marker { display: none; }
.catalog-number { grid-area: number; align-self: end; color: var(--amber); font: 11px var(--mono); }
.catalog-count {
  grid-area: count;
  align-self: start;
  color: var(--muted);
  font: 11px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.catalog-title {
  grid-area: title;
  margin: 0;
  font: 600 30px/1.05 var(--display);
  text-transform: uppercase;
}
.catalog-preview {
  grid-area: preview;
  max-width: 620px;
  margin: 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.65;
}
.catalog-toggle { grid-area: toggle; position: relative; width: 40px; height: 40px; justify-self: end; }
.catalog-toggle::before,
.catalog-toggle::after {
  content: '';
  position: absolute;
  top: 19px;
  left: 11px;
  width: 16px;
  height: 1px;
  background: var(--amber);
  transition: transform .25s ease;
}
.catalog-toggle::after { transform: rotate(90deg); }
.catalog-item[open] .catalog-toggle::after { transform: rotate(0); }
.catalog-item[open] summary { min-height: 132px; }
.catalog-item[open] .catalog-title { color: var(--amber-soft); }
.catalog-item ul {
  margin: 0 26px 30px;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 48px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.catalog-item li {
  position: relative;
  padding-left: 17px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.7;
}
.catalog-item li::before { content: '·'; position: absolute; left: 0; color: var(--amber); }

.use-cases {
  width: var(--page);
  margin: 0 auto;
  padding: 90px 0 102px;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.use-case { min-height: 230px; padding: 26px 34px 18px 0; }
.use-case + .use-case { padding-left: 34px; border-left: 1px solid var(--line); }
.use-case > span { color: var(--amber); font: 11px var(--mono); }
.use-case h2 { max-width: 300px; margin: 52px 0 16px; font: 600 37px/1.05 var(--display); text-transform: uppercase; }
.use-case p { max-width: 390px; margin: 0; color: var(--dim); font-size: 14px; line-height: 1.75; }

.setup-guide {
  padding: 92px max(24px, calc((100% - min(1440px, calc(100% - 48px))) / 2)) 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 46% 80% at 5% 10%, rgba(255, 157, 46, .07), transparent 70%),
    var(--panel);
}
.setup-heading {
  display: grid;
  grid-template-columns: .38fr 1.62fr;
  align-items: start;
  gap: 5vw;
}
.setup-heading h2 {
  margin: 0;
  font: 600 clamp(48px, 4.6vw, 70px)/1 var(--display);
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.setup-heading p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.8;
}
.setup-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}
.setup-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 157, 46, .055), transparent 38%),
    rgba(10, 11, 14, .62);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .085), 0 24px 60px rgba(0, 0, 0, .18);
}
.setup-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 116px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber));
  opacity: .7;
}
.setup-card-header { display: flex; align-items: center; gap: 15px; }
.setup-platform-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 157, 46, .1);
  color: var(--amber);
  box-shadow: 0 0 0 1px rgba(255, 157, 46, .25);
  font: 500 10px var(--mono);
  letter-spacing: .1em;
}
.setup-card-header small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font: 9px var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.setup-card-header h3 { margin: 0; font: 600 34px/1 var(--display); text-transform: uppercase; }
.setup-card ol { margin: 26px 0 0; padding: 0; counter-reset: setup-step; list-style: none; }
.setup-card li {
  min-height: 118px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  counter-increment: setup-step;
}
.setup-card li::before {
  content: counter(setup-step, decimal-leading-zero);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel-raised);
  color: var(--amber);
  box-shadow: 0 0 0 1px rgba(255, 157, 46, .22);
  font: 10px var(--mono);
}
.setup-card li b { display: block; color: var(--text); font: 600 20px var(--display); }
.setup-card li p { margin: 7px 0 0; color: var(--dim); font-size: 13px; line-height: 1.7; }
.setup-card li a {
  display: inline-flex;
  margin-top: 9px;
  color: var(--amber-soft);
  font: 10.5px var(--mono);
  text-decoration: none;
  transition: color .2s ease;
}
.setup-card li a:hover { color: var(--amber); }
.setup-footnote {
  margin: 14px 0 0;
  padding: 13px 16px;
  border-radius: 8px;
  background: rgba(255, 157, 46, .055);
  color: var(--muted);
  box-shadow: 0 0 0 1px rgba(255, 157, 46, .14);
  font: 10.5px/1.6 var(--mono);
  text-align: center;
}

.download {
  padding: 88px max(24px, calc((100% - min(1440px, calc(100% - 48px))) / 2)) 96px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
  background: radial-gradient(ellipse 60% 120% at 75% 110%, rgba(255, 157, 46, .12), transparent 64%), var(--ink);
}
.download h2 > span { color: var(--amber); font: inherit; }
.download-copy { max-width: 630px; }
.download-copy > p { max-width: 680px; margin: 28px 0 0; color: var(--dim); font-size: 15px; line-height: 1.8; }
.feedback-link { display: inline-flex; gap: 11px; margin-top: 24px; color: var(--amber-soft); font: 12px var(--mono); text-decoration: none; }
.feedback-link span { transition: transform .2s ease; }
.feedback-link:hover span { transform: translate(2px, -2px); }
.download-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
}
.download-link {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 15px 16px 17px;
  border: 0;
  border-radius: 7px;
  background: var(--amber);
  color: #191108;
  box-shadow: 0 12px 34px rgba(255, 157, 46, .16);
  text-decoration: none;
  transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.download-link:hover { transform: translateX(4px); background: #ffad4e; box-shadow: 0 16px 42px rgba(255, 157, 46, .28); }
.download-link:active { transform: translateX(2px) scale(.96); }
.download-link b { display: block; font: 600 21px var(--display); }
.download-link small { display: block; margin-top: 3px; color: rgba(25, 17, 8, .68); font: 10px var(--mono); text-transform: uppercase; }
.download-link strong { color: #191108; font: 19px var(--mono); }
.windows-icon { width: 24px; height: 24px; display: grid; grid-template: 1fr 1fr / 1fr 1fr; gap: 2px; }
.windows-icon i { background: #191108; }
.mac-icon { position: relative; width: 25px; height: 25px; color: transparent; }
.mac-icon::before { content: '●'; position: absolute; left: 3px; top: -6px; color: #191108; font-size: 29px; }
.mac-icon::after { content: '◆'; position: absolute; left: 12px; top: -2px; color: var(--amber); font-size: 10px; transform: rotate(20deg); transition: color .22s ease; }
.download-link:hover .mac-icon::after { color: #ffad4e; }
.download-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
  color: var(--amber-soft);
  font: 10px/1.55 var(--mono);
  letter-spacing: .04em;
}
.download-facts span { padding: 4px 14px; text-align: center; }
.download-facts span + span { border-left: 1px solid var(--line); }
.download-actions > p { grid-column: 1 / -1; margin: 4px 0 0; color: var(--muted); font: 10px/1.6 var(--mono); text-align: center; }

footer {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  border-top: 1px solid var(--line-soft);
}
footer a { text-decoration: none; transition: color .2s ease; }
footer a:hover { color: var(--amber); }
.footer-social { display: flex; align-items: center; gap: 7px; }
.social-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .018);
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.social-link svg { width: 16px; height: 16px; display: block; fill: currentColor; }
.social-link:hover {
  border-color: rgba(255, 157, 46, .48);
  background: rgba(255, 157, 46, .08);
  color: var(--amber);
  transform: translateY(-2px);
}
.social-link:active { transform: translateY(0) scale(.94); }

a:focus-visible,
button:focus-visible,
summary:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes pulse { 50% { opacity: .3; } }

@media (max-width: 1080px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding: 76px 0 84px; }
  .hero-copy { max-width: 820px; }
  .hero-carousel { width: min(960px, 96%); margin-left: auto; }
  .catalog-intro { grid-template-columns: 150px 1fr; }
  .setup-heading { grid-template-columns: 150px 1fr; }
  .download { grid-template-columns: 1fr; gap: 42px; }
  .download-actions { max-width: 720px; padding-top: 0; }
}

@media (max-width: 720px) {
  :root { --page: calc(100% - 32px); }
  .site-header { height: 64px; }
  .brand-tag { display: none; }
  .hero { padding: 58px 0 68px; gap: 46px; }
  .hero-product { font-size: clamp(44px, 13.4vw, 64px); }
  .hero-purpose { margin-top: 20px; font-size: clamp(29px, 9vw, 43px); line-height: 1.06; }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-carousel { width: 100%; }
  .carousel-viewport { transform: none; }
  .carousel-footer { grid-template-columns: 1fr auto; gap: 12px; }
  .carousel-dots { display: none; }
  .carousel-controls { justify-self: end; }
  .feature-catalog { padding-top: 68px; padding-bottom: 78px; }
  .catalog-intro { display: block; margin-bottom: 36px; }
  .catalog-intro h2 { margin-top: 24px; font-size: 43px; line-height: 1.04; }
  .download h2 { margin-top: 0; font-size: 43px; line-height: 1.04; }
  .catalog-list { grid-template-columns: 1fr; gap: 10px; }
  .catalog-item[open] { grid-column: auto; }
  .catalog-item summary,
  .catalog-item[open] summary {
    min-height: 184px;
    grid-template-columns: 32px minmax(0, 1fr) 40px;
    grid-template-areas:
      'number count toggle'
      'title title title'
      'preview preview preview';
    gap: 0 12px;
    padding: 22px;
  }
  .catalog-number,
  .catalog-count { align-self: center; line-height: 1; }
  .catalog-title { margin-top: 24px; font-size: 28px; }
  .catalog-preview { display: block; margin-top: 12px; font-size: 14px; }
  .catalog-item summary:hover { padding: 22px; }
  .catalog-item ul { margin: 0 22px 26px; padding-top: 21px; grid-template-columns: 1fr; gap: 10px; }
  .catalog-item li { font-size: 14px; }
  .use-cases { padding: 68px 0 76px; }
  .use-case-grid { display: block; margin-top: 36px; }
  .use-case { min-height: 0; padding: 25px 0 30px; border-bottom: 1px solid var(--line); }
  .use-case + .use-case { padding-left: 0; border-left: 0; }
  .use-case h2 { margin: 35px 0 12px; font-size: 33px; }
  .setup-guide { padding-top: 68px; padding-bottom: 76px; }
  .setup-heading { display: block; }
  .setup-heading h2 {
    max-width: 100%;
    margin-top: 24px;
    font-size: clamp(29px, 9vw, 40px);
    line-height: 1.04;
    text-wrap: wrap;
  }
  .setup-heading p { font-size: 14px; }
  .setup-platforms { grid-template-columns: 1fr; margin-top: 36px; }
  .setup-card { padding: 22px; }
  .setup-card li { min-height: 0; }
  .setup-footnote { text-align: left; }
  .download { padding-top: 68px; padding-bottom: 76px; gap: 36px; }
  .download-actions { grid-template-columns: 1fr; }
  .download-facts { grid-column: 1; grid-template-columns: 1fr; gap: 7px; }
  .download-facts span { padding: 2px 0; text-align: left; }
  .download-facts span + span { border-left: 0; }
  .download-actions > p { grid-column: 1; text-align: left; }
  footer { min-height: 0; padding: 24px 0; flex-wrap: wrap; justify-content: center; text-align: center; }
  .footer-social { width: 100%; justify-content: center; order: 2; }
  .footer-copyright { order: 1; }
  .footer-email { order: 3; }
  .footer-product { display: none; }
}

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