:root {
  --ink: #0e0d0b;
  --bone: #ece7dc;
  --bone-dim: rgba(236, 231, 220, .68);
  --bone-soft: rgba(236, 231, 220, .46);
  --line: rgba(236, 231, 220, .15);
  --line-strong: rgba(236, 231, 220, .28);
  --spectral: linear-gradient(112deg, #35e0c8 0%, #8c64ff 50%, #e8c66a 100%);
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--display);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(236, 231, 220, .025) 1px, transparent 1px) 0 0 / clamp(72px, 8vw, 120px) 100%,
    var(--ink);
  color: var(--bone);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(14, 13, 11, .12), rgba(14, 13, 11, .88));
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--bone);
}

.hub-hero,
.catalogue,
.guide-shell {
  width: min(100% - 32px, 1520px);
  margin-inline: auto;
}

.hub-hero {
  position: relative;
  display: grid;
  min-height: min(620px, 72svh);
  align-content: center;
  padding: clamp(42px, 8vw, 96px) 0 clamp(30px, 6vw, 72px);
}

.hero-rail {
  position: absolute;
  top: clamp(20px, 5vw, 54px);
  bottom: clamp(22px, 4vw, 48px);
  left: 0;
  width: 1px;
  background: var(--spectral);
  opacity: .66;
  transform-origin: top;
  animation: railIn .9s cubic-bezier(.2, .8, .2, 1) both .3s;
}

.eyebrow,
.specimen-index,
.tag-list,
.guide-kicker,
.guide-index a {
  font-family: var(--mono);
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bone-soft);
  font-size: clamp(.72rem, 1.6vw, .86rem);
  text-transform: uppercase;
}

.wordmark {
  width: fit-content;
  margin: 0;
  font-size: clamp(4rem, 17vw, 15.5rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: 0;
  white-space: nowrap;
  background: var(--spectral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wordmarkIn 1s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-subline {
  max-width: 820px;
  margin: clamp(18px, 3vw, 30px) 0 0;
  font-size: clamp(1.35rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  animation: fadeLift .75s cubic-bezier(.2, .8, .2, 1) both .42s;
}

.manifesto {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--bone-dim);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.55;
  animation: fadeLift .75s cubic-bezier(.2, .8, .2, 1) both .58s;
}

.essay-link {
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--bone);
  font-size: .98rem;
  font-weight: 600;
  animation: fadeLift .75s cubic-bezier(.2, .8, .2, 1) both .72s;
}

.essay-link:focus-visible,
.guide-index a:focus-visible,
.site-footer a:focus-visible,
.specimen-card:focus-visible,
.filter-chip:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 2px var(--bone), 0 0 0 5px rgba(236, 231, 220, .18);
}

.catalogue {
  padding: 0 0 clamp(52px, 8vw, 96px);
}

.section-rule {
  height: 1px;
  margin-bottom: clamp(20px, 4vw, 36px);
  background: var(--spectral);
  opacity: .72;
}

.catalogue-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: clamp(18px, 4vw, 32px);
}

.catalogue-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: .92;
  letter-spacing: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--bone-dim);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.filter-chip:hover {
  color: var(--bone);
  border-color: var(--bone-soft);
}

.filter-chip[aria-pressed="true"] {
  border-color: transparent;
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    var(--spectral) border-box;
}

.filter-chip[aria-pressed="true"] span {
  background: var(--spectral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.catalogue-grid {
  --catalogue-gap: clamp(16px, 2.2vw, 24px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--catalogue-gap);
}

.catalogue-stack {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.catalogue-wing {
  display: grid;
  gap: clamp(16px, 2.8vw, 26px);
  content-visibility: auto;
  contain-intrinsic-block-size: auto 20550px;
}

.wing-header {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.wing-header h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1;
}

.wing-number,
.milestone-number,
.milestone-row p,
.guide-wing h3 {
  font-family: var(--mono);
  text-transform: uppercase;
}

.wing-number {
  margin: 0;
  color: var(--bone-soft);
  font-size: .7rem;
  white-space: nowrap;
}

.milestone-row {
  display: grid;
  grid-template-columns: minmax(16px, 1fr) auto auto minmax(16px, 1fr);
  gap: clamp(10px, 2vw, 18px);
  align-items: center;
  color: var(--bone-soft);
}

.milestone-row::before,
.milestone-row::after {
  height: 1px;
  background: var(--spectral);
  content: "";
  opacity: .58;
}

.milestone-number {
  background: var(--spectral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: .72rem;
}

.milestone-row p {
  margin: 0;
  font-size: clamp(.63rem, 1.1vw, .76rem);
  letter-spacing: .02em;
  white-space: nowrap;
}

.war-threshold {
  position: relative;
  padding: clamp(24px, 4vw, 54px) clamp(14px, 2.5vw, 34px);
  border-block: clamp(8px, 1.2vw, 14px) solid #020202;
  background:
    linear-gradient(90deg, rgba(91, 22, 18, .08), transparent 20% 80%, rgba(91, 22, 18, .08)),
    #050505;
  box-shadow: 0 0 0 1px rgba(132, 46, 35, .2);
  color: rgba(236, 231, 220, .76);
}

.war-threshold::before,
.war-threshold::after {
  background: linear-gradient(90deg, transparent, #9d3c2c, transparent);
  opacity: .72;
}

.war-threshold .milestone-number {
  background: none;
  color: #bd6755;
}

.war-threshold p {
  max-width: 820px;
  color: rgba(236, 231, 220, .72);
  font-family: var(--display);
  font-size: clamp(.88rem, 1.35vw, 1.08rem);
  line-height: 1.5;
  text-transform: none;
  white-space: normal;
}

.catalogue-wing--war {
  padding: clamp(18px, 2.8vw, 34px);
  border: 1px solid rgba(157, 60, 44, .18);
  border-radius: 10px;
  background: linear-gradient(180deg, #050505, rgba(5, 5, 5, .78));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.catalogue-wing--war .wing-header {
  border-bottom-color: rgba(189, 103, 85, .4);
}

.catalogue-wing--war .wing-number {
  color: #bd6755;
}

.velocity-threshold {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 5vw, 66px) clamp(16px, 3vw, 42px);
  border-block: 1px solid rgba(255, 91, 31, .72);
  background:
    repeating-linear-gradient(105deg, transparent 0 8%, rgba(18, 17, 14, .055) 8.2% 8.5%, transparent 8.7% 16%),
    #d8d2c3;
  color: #171510;
  box-shadow: 0 24px 80px rgba(255, 91, 31, .09);
}

.velocity-threshold::before,
.velocity-threshold::after {
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff5b1f 18% 88%, transparent);
  opacity: 1;
  transform-origin: left;
  animation: speedRule 1.1s cubic-bezier(.18, .78, .24, 1) both;
}

.velocity-threshold::after {
  animation-delay: .12s;
}

.velocity-threshold .milestone-number {
  background: none;
  color: #c4380c;
  font-weight: 700;
}

.velocity-threshold p,
.nocturne-threshold p {
  max-width: 830px;
  color: inherit;
  font-family: var(--display);
  font-size: clamp(.92rem, 1.45vw, 1.14rem);
  font-weight: 650;
  line-height: 1.45;
  text-transform: none;
  white-space: normal;
}

.catalogue-wing--velocity,
.catalogue-wing--nocturne {
  padding: clamp(18px, 2.8vw, 34px);
  border-radius: 10px;
}

.catalogue-wing--velocity {
  border: 1px solid rgba(255, 91, 31, .25);
  background:
    linear-gradient(112deg, rgba(255, 91, 31, .08), transparent 24%),
    linear-gradient(180deg, rgba(236, 231, 220, .06), rgba(236, 231, 220, .018));
  box-shadow: 0 32px 90px rgba(255, 91, 31, .07);
}

.catalogue-wing--velocity .wing-header {
  border-bottom-color: rgba(255, 91, 31, .52);
}

.catalogue-wing--velocity .wing-number {
  color: #ff7a3f;
}

.catalogue-wing--velocity .specimen-card::before {
  background: linear-gradient(112deg, #ff5b1f, #ffd0a8 48%, #ff5b1f);
}

.catalogue-wing--velocity .specimen-index {
  border-color: rgba(255, 122, 63, .6);
}

.nocturne-threshold {
  position: relative;
  padding: clamp(28px, 5vw, 62px) clamp(16px, 3vw, 42px);
  border-block: 1px solid rgba(126, 135, 255, .24);
  background:
    radial-gradient(circle at 82% 24%, rgba(153, 166, 255, .12), transparent 26%),
    linear-gradient(110deg, rgba(42, 48, 108, .4), rgba(18, 20, 49, .74));
  color: rgba(235, 232, 255, .84);
  box-shadow: inset 0 0 70px rgba(52, 58, 132, .14);
}

.nocturne-threshold::before,
.nocturne-threshold::after {
  background: linear-gradient(90deg, transparent, rgba(143, 155, 255, .72), transparent);
  opacity: .72;
}

.nocturne-threshold .milestone-number {
  background: none;
  color: #aeb7ff;
}

.nocturne-threshold p {
  font-weight: 500;
}

.catalogue-wing--nocturne {
  border: 1px solid rgba(126, 135, 255, .18);
  background:
    radial-gradient(circle at 74% 0%, rgba(120, 131, 255, .08), transparent 28%),
    linear-gradient(180deg, #0d0e20, rgba(12, 13, 29, .76));
  box-shadow: 0 34px 100px rgba(3, 5, 28, .38);
}

.catalogue-wing--nocturne .wing-header {
  border-bottom-color: rgba(151, 161, 255, .32);
}

.catalogue-wing--nocturne .wing-number {
  color: #aeb7ff;
}

.catalogue-wing--nocturne .specimen-card::before {
  background: linear-gradient(112deg, #7e87ff, #d4d8ff 50%, #78cbd2);
}

.catalogue-wing--nocturne .specimen-index {
  border-color: rgba(174, 183, 255, .5);
  background: rgba(9, 10, 27, .8);
}

.specimen-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(236, 231, 220, .03);
  color: var(--bone);
  opacity: 1;
  transform: none;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.specimen-card.is-intro {
  opacity: 0;
  transform: translateY(18px);
  animation: cardIn .68s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: calc(.72s + (var(--i) * 42ms));
}

.specimen-card::before {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--spectral);
  content: "";
  opacity: 0;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity .24s ease;
}

.specimen-card:hover,
.specimen-card:focus-visible {
  transform: translateY(-4px);
  border-color: transparent;
  background: rgba(236, 231, 220, .048);
}

.specimen-card:hover::before,
.specimen-card:focus-visible::before {
  opacity: 1;
}

.specimen-card.is-hidden,
.specimen-card[hidden] {
  display: none;
}

.specimen-index {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: grid;
  min-width: 42px;
  min-height: 30px;
  place-items: center;
  border: 1px solid rgba(236, 231, 220, .36);
  border-radius: 4px;
  background: rgba(14, 13, 11, .74);
  color: var(--bone);
  font-size: .78rem;
}

.specimen-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(236, 231, 220, .06);
  transition: transform .45s ease;
}

.specimen-card:hover img,
.specimen-card:focus-visible img {
  transform: scale(1.025);
}

.specimen-body {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2vw, 22px);
}

.specimen-title {
  min-height: 2.3em;
  font-size: clamp(1.1rem, 1.45vw, 1.42rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.specimen-concept {
  display: -webkit-box;
  min-height: 3.9em;
  overflow: hidden;
  color: var(--bone-dim);
  font-size: .98rem;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  color: var(--bone-soft);
  font-size: .68rem;
  text-transform: uppercase;
}

.tag-list span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(14, 13, 11, .32);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: min(100% - 32px, 1520px);
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--bone-soft);
  font-size: .92rem;
  text-align: center;
}

.site-footer a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.guide-shell {
  padding: clamp(38px, 7vw, 82px) 0 clamp(54px, 9vw, 100px);
}

.guide-mast {
  display: grid;
  gap: 18px;
  max-width: 1050px;
  padding-bottom: clamp(30px, 6vw, 58px);
}

.guide-kicker {
  margin: 0;
  color: var(--bone-soft);
  font-size: .78rem;
  text-transform: uppercase;
}

.guide-mast h1 {
  width: fit-content;
  margin: 0;
  background: var(--spectral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: 0;
}

.guide-deck {
  max-width: 780px;
  margin: 0;
  color: var(--bone-dim);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.42;
}

.guide-rule {
  height: 1px;
  margin: 0 0 clamp(30px, 5vw, 56px);
  background: var(--spectral);
}

.guide-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
}

.guide-essay {
  max-width: 860px;
}

.guide-essay section {
  padding: clamp(20px, 4vw, 34px) 0;
  border-top: 1px solid var(--line);
}

.guide-essay h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.guide-essay p {
  margin: 0;
  color: var(--bone-dim);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.72;
}

.guide-essay p + p {
  margin-top: 16px;
}

.guide-war-chapter {
  padding-inline: clamp(14px, 2.2vw, 24px);
  border-top-color: rgba(189, 103, 85, .5) !important;
  background: linear-gradient(110deg, rgba(91, 22, 18, .08), transparent 46%);
}

.guide-war-chapter h2::before {
  margin-right: 9px;
  color: #bd6755;
  content: "V /";
  font-family: var(--mono);
  font-size: .42em;
  font-weight: 400;
  vertical-align: .35em;
}

.guide-expansion-chapter {
  padding-inline: clamp(14px, 2.2vw, 24px);
  border-top-color: rgba(255, 91, 31, .46) !important;
  background:
    linear-gradient(110deg, rgba(255, 91, 31, .065), transparent 30%),
    linear-gradient(290deg, rgba(83, 94, 202, .08), transparent 38%);
}

.guide-expansion-chapter h2::before {
  margin-right: 9px;
  color: #aeb7ff;
  content: "VI + VII /";
  font-family: var(--mono);
  font-size: .38em;
  font-weight: 400;
  vertical-align: .4em;
}

.guide-index {
  display: grid;
  gap: 12px;
  align-self: start;
  padding-top: clamp(18px, 4vw, 34px);
  border-top: 1px solid var(--line);
}

.guide-index h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.guide-wing {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.guide-wing + .guide-wing {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.guide-wing h3 {
  margin: 0;
  color: var(--bone-soft);
  font-size: .72rem;
  font-weight: 400;
}

.guide-index ol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: guide;
}

.guide-wing--ii ol {
  counter-reset: guide 25;
}

.guide-wing--iii ol {
  counter-reset: guide 50;
}

.guide-wing--iv ol {
  counter-reset: guide 75;
}

.guide-wing--v ol {
  counter-reset: guide 100;
}

.guide-wing--vi ol {
  counter-reset: guide 125;
}

.guide-wing--vii ol {
  counter-reset: guide 150;
}

.guide-index li {
  counter-increment: guide;
}

.guide-index a {
  display: grid;
  grid-template-columns: 3ch minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--bone-dim);
  font-size: .76rem;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.guide-index a::before {
  content: counter(guide, decimal-leading-zero);
  color: var(--bone-soft);
}

.guide-index a:hover {
  color: var(--bone);
  border-color: transparent;
  background:
    linear-gradient(var(--ink), var(--ink)) padding-box,
    var(--spectral) border-box;
  transform: translateY(-2px);
}

@media (min-width: 760px) {
  .hub-hero,
  .catalogue,
  .guide-shell,
  .site-footer {
    width: min(100% - 56px, 1520px);
  }

  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogue-wing {
    contain-intrinsic-block-size: auto 10875px;
  }

  .catalogue-wing .specimen-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - var(--catalogue-gap)) / 2);
    justify-self: center;
  }

  .catalogue-head {
    grid-template-columns: minmax(250px, .72fr) minmax(360px, 1fr);
  }

  .filter-row {
    justify-content: flex-end;
  }

  .guide-index ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .catalogue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalogue-wing {
    contain-intrinsic-block-size: auto 7600px;
  }

  .catalogue-wing .specimen-card:last-child {
    grid-column: 2;
    width: auto;
    justify-self: stretch;
  }

  .guide-layout {
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: start;
  }

  .guide-index {
    position: sticky;
    top: 24px;
  }

  .guide-index ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-wing li:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 8px) / 2);
    justify-self: center;
  }
}

@media (max-width: 520px) {
  body {
    background: var(--ink);
  }

  .hub-hero,
  .catalogue,
  .guide-shell,
  .site-footer {
    width: min(100% - 24px, 1520px);
  }

  .hub-hero {
    min-height: 620px;
    padding-top: 34px;
  }

  .hero-rail {
    display: none;
  }

  .wordmark {
    font-size: clamp(3rem, 17vw, 4.35rem);
  }

  .filter-row {
    gap: 7px;
  }

  .filter-chip {
    min-height: 36px;
    padding-inline: 10px;
    font-size: .88rem;
  }

  .wing-header {
    display: grid;
    gap: 7px;
  }

  .milestone-row {
    grid-template-columns: auto 1fr;
    gap: 8px;
  }

  .milestone-row::before,
  .milestone-row::after {
    display: none;
  }

  .milestone-row p {
    font-size: .56rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .war-threshold,
  .velocity-threshold,
  .nocturne-threshold {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-inline: 12px;
  }

  .velocity-threshold {
    box-shadow: inset 0 3px #ff5b1f, inset 0 -1px rgba(255, 91, 31, .78);
  }

  .war-threshold p,
  .velocity-threshold p,
  .nocturne-threshold p {
    font-size: .82rem;
    white-space: normal;
  }

  .catalogue-wing--war,
  .catalogue-wing--velocity,
  .catalogue-wing--nocturne {
    margin-inline: -4px;
    padding: 14px 10px 18px;
  }

  .guide-expansion-chapter h2::before {
    display: block;
    margin: 0 0 7px;
    font-size: .46em;
  }

  .specimen-title {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer span[aria-hidden="true"] {
    display: none;
  }
}

@media (min-width: 760px) and (max-width: 1179px) {
  .guide-wing li:last-child {
    grid-column: 1 / -1;
  }
}

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

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

  .specimen-card,
  .specimen-card:hover,
  .specimen-card:focus-visible,
  .specimen-card:hover img,
  .specimen-card:focus-visible img,
  .guide-index a:hover {
    transform: none;
  }
}

@keyframes wordmarkIn {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes railIn {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes speedRule {
  from {
    opacity: 0;
    transform: scaleX(.05) translateX(-25%);
  }
  to {
    opacity: 1;
    transform: scaleX(1) translateX(0);
  }
}
