/* ============================================================
   LYCOS AI TRAINING
   Dark purple throughout. No white, no orange, no shouting.
   violet = live · lilac = pay · lilac-grey = everything you read
   ============================================================ */

:root {
  /* ground — deep purple-black */
  --ink: #0C0714;
  --ink-2: #120B1C;
  --panel: #1A1028;
  --panel-2: #241634;
  --line: #33203F;

  /* text — soft lilac, never white */
  --text: #CBBBDE;
  --text-dim: #A594BE;
  --text-mute: #8878A4;

  /* accent */
  --violet: #8B5CF6;
  --violet-dp: #6D28D9;
  --lilac: #CBA6F7;
  --plum: #3B1D52;
  /* Errors need to read as a problem without leaving the purple family. */
  --rose: #E07FB0;

  /* One family everywhere. Hierarchy comes from weight, size, and colour —
     not from swapping typeface, which is what made the filter bar look like
     three different designs stacked on top of each other. */
  --display: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --body: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --mono: 'Archivo', 'Segoe UI', system-ui, sans-serif;

  /* Shared height for chips and their group label, so the two stay aligned
     no matter how the type changes. Hand-tuned padding drifts; this doesn't. */
  --control-h: 1.75rem;

  --shell: 1240px;
  --ease: cubic-bezier(.16, .84, .28, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
/* Form controls don't inherit type by default, which is how a stray Arial
   creeps back in. */
input, select, textarea, button { font-family: inherit; }
::selection { background: var(--violet); color: var(--ink); }
:focus-visible { outline: 2px solid var(--lilac); outline-offset: 3px; }

.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; position: relative; z-index: 2; }

.skip { position: absolute; left: -9999px; background: var(--violet); color: var(--ink); padding: .7rem 1.1rem; z-index: 999; font-family: var(--body); font-weight: 600; }
.skip:focus { left: 1rem; top: 1rem; }

/* ============================================================
   ATMOSPHERE
   ============================================================ */

.atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bloom { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .55; will-change: transform; }
.bloom--1 { width: 46vw; height: 46vw; left: -8vw; top: -6vw; background: radial-gradient(circle, rgba(139,92,246,.40), transparent 68%); animation: drift-1 28s ease-in-out infinite alternate; }
.bloom--2 { width: 42vw; height: 42vw; right: -6vw; top: 22vh; background: radial-gradient(circle, rgba(59,29,82,.85), transparent 68%); animation: drift-2 34s ease-in-out infinite alternate; }
.bloom--3 { width: 34vw; height: 34vw; left: 30vw; bottom: -12vw; background: radial-gradient(circle, rgba(203,166,247,.18), transparent 68%); animation: drift-3 40s ease-in-out infinite alternate; }
@keyframes drift-1 { to { transform: translate3d(16vw, 12vh, 0) scale(1.25); } }
@keyframes drift-2 { to { transform: translate3d(-14vw, -10vh, 0) scale(1.3); } }
@keyframes drift-3 { to { transform: translate3d(10vw, -14vh, 0) scale(1.18); } }

.grain {
  position: fixed; inset: -120%; z-index: 1; pointer-events: none; opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 700ms steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 20% { transform: translate(-6%,4%); }
  40% { transform: translate(5%,-6%); } 60% { transform: translate(-4%,-5%); }
  80% { transform: translate(6%,5%); } 100% { transform: translate(0,0); }
}

.progress {
  position: fixed; left: 0; top: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--violet), var(--lilac));
  z-index: 200;
}

/* ============================================================
   TYPE — restrained scale
   ============================================================ */

.eyebrow {
  font-family: var(--body); font-weight: 600; font-size: .8125rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--violet); margin: 0 0 .9rem;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--violet); flex: none; }

.section-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.12; letter-spacing: -.01em;
  margin: 0 0 .7rem;
}

.lede { color: var(--text-dim); max-width: 60ch; font-size: .98rem; margin: 0; }

/* ============================================================
   MASTHEAD
   ============================================================ */

.masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform .45s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead.is-solid { background: rgba(12, 7, 20, .88); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.masthead.is-hidden { transform: translateY(-105%); }
.masthead__in { display: flex; align-items: center; gap: 1.6rem; height: 70px; }

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 36px; height: 36px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase; line-height: 1; display: block; }
.brand__sub { font-family: var(--body); font-weight: 600; font-size: .625rem; letter-spacing: .18em; color: var(--text-mute); text-transform: uppercase; display: block; margin-top: .28rem; }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a {
  font-family: var(--body); font-weight: 500; font-size: .875rem; letter-spacing: 0;
  text-decoration: none; color: var(--text-dim);
  position: relative; overflow: hidden; padding: .35rem 0; display: inline-block;
}
.nav a span { display: block; transition: transform .38s var(--ease); }
.nav a span::after { content: attr(data-t); position: absolute; left: 0; top: 100%; color: var(--lilac); }
.nav a:hover span { transform: translateY(-100%); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--text); cursor: pointer; width: 40px; height: 40px; align-items: center; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-size: .875rem; font-weight: 600;
  letter-spacing: 0;
  padding: .85rem 1.4rem;
  border: 1px solid var(--violet);
  background: transparent; color: var(--text);
  text-decoration: none; cursor: pointer; overflow: hidden;
  transition: color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: var(--violet);
  transform: translateY(101%); transition: transform .4s var(--ease); z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: translateY(0); }

.btn--violet { background: var(--violet); border-color: var(--violet); color: var(--ink); }
.btn--violet::before { background: var(--lilac); }
.btn--violet:hover { color: var(--ink); border-color: var(--lilac); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 76svh;
  display: flex; align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

#threads { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

.hero__in { position: relative; z-index: 2; pointer-events: none; }
.hero__in > * { pointer-events: auto; }

.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08; letter-spacing: -.02em;
  margin: 0 0 1.1rem; max-width: 18ch;
}
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero__title .word > i { display: inline-block; font-style: normal; transform: translateY(110%); animation: drop .9s var(--ease-out) forwards; }
@keyframes drop { to { transform: translateY(0); } }
.accent { color: var(--lilac); }

.hero__lede {
  max-width: 50ch; color: var(--text-dim); margin: 0 0 2rem; font-size: 1rem;
  opacity: 0; animation: fade-in .8s var(--ease) .45s forwards;
}
@keyframes fade-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.hero__row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem 2.4rem;
  opacity: 0; animation: fade-in .8s var(--ease) .6s forwards;
}

.livecount { display: flex; align-items: baseline; gap: .6rem; }
.livecount__n { font-family: var(--display); font-weight: 700; font-size: 1.9rem; line-height: 1; color: var(--lilac); font-variant-numeric: tabular-nums; }
.livecount__l { font-family: var(--body); font-weight: 500; font-size: .875rem; color: var(--text-dim); }

.tip {
  position: absolute; z-index: 5; pointer-events: none;
  background: var(--violet); color: var(--ink);
  padding: .5rem .8rem; max-width: 260px;
  opacity: 0; transform: translateY(8px) scale(.96);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.tip.on { opacity: 1; transform: none; }
.tip__t { font-family: var(--display); font-weight: 700; font-size: .92rem; line-height: 1.15; }
.tip__m { font-family: var(--body); font-weight: 500; font-size: .75rem; margin-top: .2rem; }

/* ============================================================
   BOARD
   ============================================================ */

.board { padding: 3.6rem 0 6rem; position: relative; z-index: 2; }

.filters {
  position: sticky; top: 70px; z-index: 40;
  background: rgba(12, 7, 20, .92);
  backdrop-filter: blur(14px);
  border-block: 1px solid var(--line);
  padding: .9rem 0; margin-bottom: 2rem;
}
.filters__row { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.filters__row + .filters__row { margin-top: .7rem; }

.fgroup { display: flex; align-items: center; gap: .7rem; min-width: 0; }
/* Sentence case, normal tracking, semibold. Reads as a label without shouting. */
.fgroup__label {
  display: inline-flex;
  align-items: center;
  min-height: var(--control-h);
  font-family: var(--body);
  font-weight: 600;
  font-size: .875rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text);
  flex: none;
}

/* Multi-line chip groups: the label sits with the first row, not centred
   against the whole stack. */
.fgroup--wrap { align-items: flex-start; flex: 1 1 100%; }
/* Same box height as a chip, each centring its own text, both starting at the
   top of the group — so the label lines up with the first row exactly. */
.fgroup--wrap .fgroup__label {
  display: inline-flex;
  align-items: center;
  min-height: var(--control-h);
  padding-top: 0;
}
.fgroup--wrap .chips { flex: 1 1 auto; }

/* Chips wrap onto new rows rather than scrolling sideways. */
/* No max-height transition here on purpose: an interrupted one never fires
   transitionend, which would strand the box at a stale height. app.js animates
   the height with the Web Animations API instead, which always cleans up. */
.chips { display: flex; flex-wrap: wrap; gap: .35rem; min-width: 0; }
.chips.is-clamped { overflow: hidden; }

.chips-more {
  flex: none; align-self: flex-start;
  background: none; border: 1px solid var(--line); cursor: pointer;
  font-family: var(--body); font-weight: 600; font-size: .8125rem; letter-spacing: 0;
  color: var(--text-dim);
  padding: .3rem .7rem; white-space: nowrap;
  display: inline-flex; align-items: center; min-height: var(--control-h);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.chips-more:hover { color: var(--lilac); border-color: var(--violet); }

.chip {
  font-family: var(--body); font-weight: 500; font-size: .8125rem; letter-spacing: 0;
  padding: .3rem .7rem; border: 1px solid var(--line);
  background: transparent; color: var(--text-dim);
  cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: var(--control-h);
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--violet); transform: translateY(-2px); }
.chip[aria-pressed="true"] { background: var(--violet); border-color: var(--violet); color: var(--ink); font-weight: 600; }
.chip__n { opacity: .65; font-size: .75rem; }

.search { position: relative; flex: 1 1 230px; max-width: 320px; }
.search input {
  width: 100%; height: var(--control-h);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  color: var(--text); font-family: var(--body); font-size: .875rem;
  padding: 0 0 0 1.6rem; transition: border-color .3s var(--ease);
}
.search input::placeholder { color: var(--text-mute); }
.search input:focus { outline: none; border-bottom-color: var(--violet); }
.search__i { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--text-mute); pointer-events: none; }

/* Every control in the filter bar sits on one height, so the row reads as a
   single strip rather than a ragged line of mismatched boxes. */
.select {
  height: var(--control-h);
  background: transparent; border: 1px solid var(--line); color: var(--text);
  font-family: var(--body); font-weight: 500; font-size: .8125rem; letter-spacing: 0;
  padding: 0 .5rem; cursor: pointer;
}
.select:focus { outline: none; border-color: var(--violet); }
.select option { background: var(--panel); color: var(--text); }

.viewtoggle { display: flex; height: var(--control-h); border: 1px solid var(--line); }
.viewtoggle button {
  background: transparent; border: 0; color: var(--text-dim); cursor: pointer;
  padding: 0 .7rem; font-family: var(--body); font-weight: 500; font-size: .8125rem;
  letter-spacing: 0;
}
.viewtoggle button[aria-pressed="true"] { background: var(--violet); color: var(--ink); font-weight: 600; }

.resetbtn {
  height: var(--control-h);
  background: none; border: 0; cursor: pointer; padding: 0;
  font-family: var(--body); font-weight: 500; font-size: .8125rem; letter-spacing: 0;
  color: var(--text-dim);
}
.resetbtn:hover { color: var(--lilac); }

.tally { font-family: var(--body); font-weight: 500; font-size: .875rem; letter-spacing: 0; color: var(--text-dim); margin: 0 0 1rem; }
.tally b { color: var(--lilac); font-weight: 600; }

/* ============================================================
   INDEX
   ============================================================ */

.index { border-top: 1px solid var(--line); }

.row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 38px;
  align-items: center; gap: 1.4rem;
  padding: 1.15rem .6rem;
  border-bottom: 1px solid var(--line);
  cursor: pointer; isolation: isolate; will-change: transform;
}
.row::before {
  content: ''; position: absolute; inset: 0; background: var(--violet);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease); z-index: -1;
}
.row:hover::before, .row:focus-visible::before { transform: scaleX(1); }
.row:hover, .row:focus-visible { color: var(--ink); }

.row__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(.98rem, 1.4vw, 1.15rem);
  line-height: 1.25; margin: 0;
  transition: transform .45s var(--ease);
}
.row:hover .row__title { transform: translateX(10px); }
.row__sub { font-family: var(--body); font-weight: 400; font-size: .8125rem; color: var(--text-dim); margin-top: .3rem; transition: transform .45s var(--ease) .04s; }
.row:hover .row__sub { transform: translateX(10px); color: rgba(12,7,20,.7); }


.row__pay { font-family: var(--display); font-weight: 700; font-size: clamp(.98rem, 1.3vw, 1.15rem); color: var(--lilac); white-space: nowrap; font-variant-numeric: tabular-nums; }
.row__pay small { font-family: var(--body); font-weight: 400; font-size: .75rem; letter-spacing: 0; color: var(--text-mute); margin-left: .25rem; }
.row:hover .row__pay, .row:hover .row__pay small { color: var(--ink); }

.row__go {
  width: 38px; height: 38px; flex: none; position: relative;
  border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.row__go svg { grid-area: 1 / 1; transition: transform .4s var(--ease); }
.row:hover .row__go { border-color: var(--ink); background: var(--ink); color: var(--lilac); }
.row:hover .row__go svg.a { transform: translateX(34px); }
.row__go svg.b { transform: translateX(-34px); }
.row:hover .row__go svg.b { transform: translateX(0); }

.index.is-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1rem; border-top: 0; }
.index.is-grid .row { grid-template-columns: 1fr; align-items: start; align-content: start; gap: .6rem; border: 1px solid var(--line); padding: 1.3rem; min-height: 190px; }
.index.is-grid .row:hover .row__title, .index.is-grid .row:hover .row__sub { transform: none; }
.index.is-grid .row__go { margin-top: auto; }

.empty { padding: 5rem 1rem; text-align: center; border-bottom: 1px solid var(--line); }
.empty h3 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; margin: 0 0 .6rem; }
.empty p { color: var(--text-dim); margin: 0 0 1.4rem; font-size: .92rem; }

.skeleton { height: 74px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.skeleton::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(203,187,222,.05), transparent); animation: sweep 1.3s linear infinite; }
@keyframes sweep { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* ============================================================
   SHEET
   ============================================================ */

.sheet { border: 0; padding: 0; background: transparent; max-width: 660px; width: min(100% - 2rem, 660px); color: var(--text); }
.sheet::backdrop { background: rgba(6, 3, 11, .86); backdrop-filter: blur(6px); }
.sheet__in { position: relative; background: var(--panel); border: 1px solid var(--violet); padding: 2.2rem; max-height: 86vh; overflow-y: auto; }
.sheet[open] .sheet__in { animation: sheet-in .45s var(--ease-out); }
@keyframes sheet-in { from { opacity: 0; transform: translateY(32px) scale(.98); } to { opacity: 1; transform: none; } }

.sheet__close { position: absolute; right: 1rem; top: 1rem; background: none; border: 1px solid var(--line); color: var(--text-dim); width: 36px; height: 36px; cursor: pointer; transition: all .3s var(--ease); }
.sheet__close:hover { background: var(--violet); border-color: var(--violet); color: var(--ink); transform: rotate(90deg); }
.sheet__title { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.15; margin: .6rem 0 .3rem; }
.sheet h4 { font-family: var(--body); font-weight: 600; font-size: .8125rem; letter-spacing: .02em; text-transform: uppercase; color: var(--violet); margin: 1.6rem 0 .45rem; }
.sheet p { margin: 0; color: var(--text-dim); font-size: .93rem; }
/* Label/value rows rather than equal-width columns. Values here range from
   "$45/hr" to "Remote (Worldwide)", and equal columns leave the short ones
   stranded next to a gap while the long ones crowd their neighbour. */
.facts { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.fact {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.fact__k { color: var(--text-mute); font-size: .8125rem; font-weight: 500; }
.fact__v { color: var(--text); font-size: .875rem; font-weight: 500; }
.sheet__cta { margin-top: 2rem; display: flex; gap: .7rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer { border-top: 1px solid var(--line); padding: 2.4rem 0; position: relative; z-index: 2; }
.footer__in { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; }
.footer__note { font-family: var(--body); font-weight: 400; font-size: .8125rem; color: var(--text-dim); }
.footer__links { display: flex; gap: 1.4rem; }
.footer__links a { font-family: var(--body); font-weight: 500; font-size: .8125rem; color: var(--text-dim); text-decoration: none; }
.footer__links a:hover { color: var(--lilac); }

.banner { background: var(--plum); color: var(--text); position: relative; z-index: 3; font-family: var(--body); font-size: .8125rem; border-bottom: 1px solid var(--violet); }
.banner__in { display: flex; align-items: center; gap: 1rem; padding: .6rem 0; flex-wrap: wrap; }
.banner button { background: var(--violet); border: 0; color: var(--ink); font-family: var(--body); font-weight: 600; font-size: .75rem; padding: .32rem .7rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(30px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
  .row { grid-template-columns: 1fr auto; gap: 1rem; }
  .row__go { display: none; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 70px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: .8rem 1.25rem 1.4rem;
    transform: translateY(-130%);
    /* A percentage transform is relative to the panel's own height, so a short
       menu does not travel far enough and its opaque bottom edge lands back on
       the masthead — covering the logo and swallowing taps. visibility makes
       the closed state genuinely inert whatever the height works out to be. */
    visibility: hidden;
    pointer-events: none;
    transition: transform .45s var(--ease), visibility 0s linear .45s;
  }
  .nav.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: transform .45s var(--ease), visibility 0s;
  }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; }
  /* Not sticky on small screens — an expanded chip group would otherwise pin
     most of the viewport behind the filter bar. */
  .filters { position: static; }
  .row { grid-template-columns: 1fr auto; gap: .5rem .8rem; padding: 1rem .3rem; }
  .row__pay { justify-self: end; }
  .sheet__in { padding: 1.5rem; }
  /* Narrow screens: stack the label above its value rather than squeezing
     both into two columns. */
  .fact { grid-template-columns: 1fr; gap: .2rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .grain, .bloom { display: none; }
  .hero__title .word > i { transform: none; }
  .hero__lede, .hero__row { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}
