/* ============================================================================
   FluidEQ — site styles

   Every colour, radius, height and easing below is the value the application
   actually uses, lifted from src/renderer/styles/_color.scss, _theme.scss,
   App.scss and Button.scss. The site and the app are meant to read as one
   product, which only works if the numbers are the same numbers.
   ========================================================================= */

/* --- Inter, variable weight axis, latin subset, self-hosted ------------- */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/fonts/inter-latin-wght-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Tokens ------------------------------------------------------------- */

:root {
  /* Surfaces */
  --surface-base: #0b1119;
  --surface-panel: #0e1520;
  --panel-bottom: #0a121b;
  --surface-menu: #0d1723;

  /* The exact colour at the top edge of a card. The app derives this by
     mixing 6% of the teal accent into #142131; that mix is precomputed here
     so a card on the site and a card in the app are the same colour. */
  --panel-top: #132d3a;

  /* Primary — violet-ink family. Every muted text tint derives from
     --primary-lighter, which is why the greys read slightly warm. */
  --primary-dark: #070512;
  --primary-lighter: #d8d2ff;

  /* Secondary — the accent. */
  --secondary-darker: #007f95;
  --secondary-dark: #00a9d6;
  --secondary: #00e5cf;
  --secondary-light: #9cfff4;

  /* Accents. Highlights only, never large fills. */
  --neon-cyan: #00e5ff;
  --neon-lime: #b6ff4a;

  /* Text */
  --text-primary: #eefcfb;
  --text-muted: rgba(216, 210, 255, 0.72);
  --text-faint: rgba(216, 210, 255, 0.56);

  /* Borders */
  --border-panel: rgba(216, 210, 255, 0.14);
  --border-subtle: rgba(216, 210, 255, 0.12);
  --border-field: rgba(156, 255, 244, 0.26);
  --border-field-hover: rgba(156, 255, 244, 0.5);

  /* Geometry */
  --r-xs: 8px;
  --r-s: 10px;
  --r-m: 12px;
  --r-l: 14px;
  --r-xl: 18px;
  --r-pill: 999px;

  --h-sm: 32px;
  --h-md: 38px;
  --h-lg: 46px;

  --shell: 1120px;
  --gutter: clamp(20px, 5vw, 32px);
  --section-y: clamp(64px, 9vw, 116px);

  --ease: 150ms ease;
  --font: 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
}

/* --- Base --------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sticky nav height plus breathing room, so an anchor never lands under it. */
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text-primary);
  /* The application's own body treatment, layer for layer: three cyan-forward
     radials across the top, one faint lime lift from below, over the diagonal
     base ramp. Fixed, so the page scrolls through the ambience rather than
     dragging it along. */
  background:
    radial-gradient(circle at 8% -10%, rgba(0, 229, 255, 0.2), transparent 32%),
    radial-gradient(circle at 46% -18%, rgba(0, 229, 207, 0.15), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(0, 169, 214, 0.18), transparent 36%),
    radial-gradient(circle at 48% 115%, rgba(182, 255, 74, 0.07), transparent 32%),
    linear-gradient(145deg, #04090f 0%, #061019 48%, #04090f 100%);
  background-attachment: fixed;
  background-color: #04090f;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  isolation: isolate;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Soft bloom behind the whole page. Purely decorative, weighted to the
   cyan/teal end of the spectrum palette. You should only notice it if it
   goes missing. */
.bloom {
  position: fixed;
  z-index: -1;
  inset: -10% 12% 40%;
  border-radius: 50%;
  background: conic-gradient(
    from 140deg,
    rgba(0, 229, 255, 0.1),
    rgba(0, 229, 207, 0.09),
    rgba(182, 255, 74, 0.05),
    rgba(0, 169, 214, 0.08),
    rgba(255, 60, 172, 0.035),
    rgba(0, 229, 255, 0.1)
  );
  filter: blur(90px);
  opacity: 0.9;
  pointer-events: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 750;
  letter-spacing: -0.022em;
  line-height: 1.15;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--secondary-light);
  text-decoration-color: rgba(156, 255, 244, 0.35);
  text-underline-offset: 3px;
  transition: color var(--ease), text-decoration-color var(--ease);
}

a:hover {
  color: var(--secondary);
  text-decoration-color: currentColor;
}

/* One focus ring for the whole site, matching the app's focus-ring mixin.
   A box-shadow ring follows whatever radius the element already has, so this
   rule must not set one — doing so squared off the pill buttons and the 18px
   cards the moment they took focus. */
:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0, 229, 207, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Links in prose are the one case with no radius of their own, where the ring
   would otherwise be a hard rectangle. */
a:not([class]):focus-visible {
  border-radius: var(--r-xs);
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border: 1px solid var(--border-field);
  border-radius: var(--r-s);
  background: var(--surface-menu);
  color: var(--secondary-light);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --- Panel: the app's panel-surface mixin ------------------------------- */

.panel {
  border: 1px solid var(--border-panel);
  border-radius: var(--r-xl);
  background: linear-gradient(
    180deg,
    var(--panel-top) 0%,
    var(--panel-bottom) 62%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 20px 48px rgba(0, 0, 0, 0.2);
}

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  min-height: var(--h-md);
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--r-s);
  font: inherit;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--ease),
    filter var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease),
    color var(--ease);
}

.btn--primary {
  color: #03110f;
  border: 1px solid rgba(156, 255, 244, 0.38);
  background: var(--secondary);
  box-shadow:
    0 8px 22px rgba(0, 229, 207, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn--primary:hover {
  color: #03201d;
  background: var(--secondary-light);
  box-shadow:
    0 11px 28px rgba(0, 229, 207, 0.2),
    0 0 24px rgba(0, 229, 207, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn--primary:active {
  color: #03201d;
  background: var(--secondary-dark);
  transform: translateY(0);
}

/* The teal ring is invisible on a teal button, so the primary CTA takes the
   white variant the app uses for the same reason. */
.btn--primary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}

.btn--ghost {
  color: var(--secondary-light);
  border: 1px solid rgba(156, 255, 244, 0.3);
  border-radius: var(--r-pill);
  background: rgba(7, 5, 18, 0.42);
}

.btn--ghost:hover {
  color: #fff;
  border-color: rgba(156, 255, 244, 0.7);
  background: rgba(0, 229, 207, 0.14);
}

/* Disabled, from the app's own [aria-disabled='true'] treatment. Used while
   the signed build is not on sale yet: the primary CTA stays exactly where it
   is and keeps its size, so the page still reads as the sales page it is —
   it simply cannot be pressed.

   pointer-events:none also stops .btn--primary:hover from firing, which would
   otherwise light the button up on a control that does nothing. */
.btn:disabled,
.btn[aria-disabled='true'] {
  color: rgba(216, 210, 255, 0.6);
  border-color: rgba(216, 210, 255, 0.08);
  background: rgba(7, 5, 18, 0.85);
  box-shadow: none;
  transform: none;
  filter: none;
  cursor: default;
  pointer-events: none;
}

.btn--sm {
  min-height: var(--h-sm);
  padding: 6px 14px;
  border-radius: var(--r-xs);
  font-size: 0.875rem;
}

.btn--lg {
  min-height: var(--h-lg);
  padding: 12px 26px;
  font-size: 1.0625rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* --- Nav ---------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(13, 23, 35, 0.72);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  transition: border-color var(--ease), background var(--ease);
}

.nav.is-stuck {
  border-bottom-color: var(--border-subtle);
  background: rgba(13, 23, 35, 0.88);
}

.nav__inner {
  display: flex;
  height: 64px;
  align-items: center;
  gap: 20px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
}

.nav__brand svg {
  width: 28px;
  height: 28px;
  flex: none;
}

.nav__wordmark {
  font-size: 1.0625rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  margin-left: auto;
  gap: 28px;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__buy {
  flex: none;
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
  }

  .nav__buy {
    margin-left: auto;
  }
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(56px, 9vw, 104px);
  padding-bottom: clamp(36px, 5vw, 56px);
  text-align: center;
}

.hero__eyebrow {
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--border-field);
  border-radius: var(--r-pill);
  background: rgba(0, 229, 207, 0.06);
  color: var(--secondary-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__title {
  font-size: clamp(3.25rem, 11vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  /* Lifted from the icon's own wave gradient, so the wordmark and the mark
     beside it are the same two colours. */
  background: linear-gradient(180deg, #eefcfb 30%, #9cfff4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  margin-top: 20px;
  color: var(--text-primary);
  font-size: clamp(1.375rem, 3.6vw, 2.125rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero__sub {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

/* Sits directly under the disabled CTA and carries the price, so the offer is
   still legible even though it cannot be taken yet. */
.hero__soon {
  color: var(--secondary-light);
  font-size: 0.9375rem;
  font-weight: 700;
}

.hero__free {
  color: var(--text-faint);
  font-size: 0.9375rem;
  text-decoration: none;
}

.hero__free:hover {
  color: var(--secondary-light);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 28px;
  color: var(--text-faint);
  font-size: 0.875rem;
}

.hero__meta span {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero__meta span + span::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

/* Once the row wraps, a leading separator dot lands at the start of the second
   line looking like a bullet nobody asked for. Below this width the gap alone
   separates the items. */
@media (max-width: 560px) {
  .hero__meta span + span::before {
    display: none;
  }
}

/* --- Screenshots -------------------------------------------------------- */

.shot {
  padding-bottom: var(--section-y);
}

.shot__frame {
  margin: 0;
  padding: 8px;
  overflow: hidden;
}

.shot__frame img {
  width: 100%;
  border-radius: calc(var(--r-xl) - 9px);
}

/* --- Sections ----------------------------------------------------------- */

.section {
  padding-bottom: var(--section-y);
}

.section__head {
  max-width: 62ch;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.section__head h2 {
  font-size: clamp(1.75rem, 4.2vw, 2.5rem);
}

.section__head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section__foot {
  margin-top: 28px;
  color: var(--text-faint);
  font-size: 0.9375rem;
}

/* --- Feature grid ------------------------------------------------------- */

.grid {
  display: grid;
  gap: 18px;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 30vw, 300px), 1fr));
}

.card {
  padding: 26px 24px 28px;
}

.card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--border-field);
  border-radius: var(--r-m);
  background: rgba(0, 229, 207, 0.08);
  color: var(--secondary);
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
}

.card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* --- Euphoria beat ------------------------------------------------------ */

.euphoria {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.euphoria__copy h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.125rem);
}

.euphoria__copy p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

@media (max-width: 860px) {
  .euphoria {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- How it works ------------------------------------------------------- */

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  list-style: none;
}

.step {
  position: relative;
  padding-right: 12px;
}

.step__n {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--border-field);
  border-radius: 50%;
  background: rgba(0, 229, 207, 0.08);
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 750;
}

/* The thin teal connector. Drawn from the circle's own centreline out to the
   next step, and dropped entirely once the steps stack. */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 54px;
  right: -8px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 229, 207, 0.45),
    rgba(0, 229, 207, 0.06)
  );
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
}

.step p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

@media (max-width: 780px) {
  .step:not(:last-child)::after {
    display: none;
  }
}

/* --- Pricing ------------------------------------------------------------ */

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.pricing {
  display: flex;
  justify-content: center;
}

.pricing__card {
  width: 100%;
  max-width: 460px;
  padding: 34px 32px;
  /* One teal halo on the page, and it belongs here. */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 20px 48px rgba(0, 0, 0, 0.2),
    0 0 60px rgba(0, 229, 207, 0.07);
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing__amount {
  font-size: clamp(2.75rem, 7vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing__unit {
  color: var(--text-faint);
  font-size: 0.9375rem;
}

.pricing__list {
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing__list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing__list li + li {
  margin-top: 12px;
}

.pricing__list li::before {
  content: '';
  position: absolute;
  top: 0.42em;
  left: 4px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: rotate(-45deg);
}

.pricing__warn {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-m);
  background: rgba(10, 20, 31, 0.62);
  color: var(--text-faint);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* GPL notice: muted, but sitting directly under the buy button where it
   cannot be missed. This is a licence requirement, not a footnote. */
.pricing__gpl {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-faint);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* --- Requirements ------------------------------------------------------- */

.requirements {
  padding: 32px;
}

.requirements h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
}

.requirements dl {
  display: grid;
  margin: 26px 0 0;
  gap: 20px 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.requirements dt {
  margin-bottom: 6px;
  color: var(--secondary-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.requirements dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* --- FAQ ---------------------------------------------------------------- */

.faq {
  display: grid;
  gap: 12px;
}

.faq__item {
  overflow: hidden;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color var(--ease);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  color: var(--secondary-light);
}

/* Chevron. Two borders on a rotated square — no icon file for one glyph. */
.faq__item summary::after {
  content: '';
  width: 9px;
  height: 9px;
  flex: none;
  border-right: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 150ms ease;
}

.faq__item[open] summary::after {
  transform: translateY(2px) rotate(-135deg);
}

.faq__body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.faq__body p + p {
  margin-top: 14px;
}

.faq__body strong {
  color: var(--text-primary);
}

/* --- Footer ------------------------------------------------------------- */

.footer {
  padding-bottom: 56px;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--section-y);
}

.license {
  padding: 32px;
}

.license__head {
  max-width: 46ch;
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  font-weight: 750;
}

.license__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.license__same-place {
  max-width: 78ch;
  margin-top: 16px;
  color: var(--text-faint);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.license__note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
  max-width: 78ch;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.license__warranty {
  max-width: 78ch;
  margin-top: 14px;
  color: var(--text-faint);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.footer__cols {
  display: grid;
  gap: 32px;
  margin-top: 48px;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
}

@media (max-width: 780px) {
  .footer__cols {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer__col h3 {
  margin-bottom: 16px;
  color: var(--secondary-light);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Leads the attribution column, so the first thing read there is who wrote
   FluidEQ rather than whose fork it started from. */
.footer__lead {
  max-width: 68ch;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__col li {
  color: var(--text-faint);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer__col li + li {
  margin-top: 10px;
}

.footer__legal {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-faint);
  font-size: 0.8125rem;
}

/* --- Reveal on scroll --------------------------------------------------- */

/* Gated on .js so that with scripting off, or if site.js fails to load, the
   page is simply visible rather than permanently blank. */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Printing never scrolls, so the observer would never fire and the page would
   come out blank below the fold. */
@media print {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
