:root {
  --ink: #eef8f8;
  --ink-2: #d3e6e6;
  --paper: #05090d;
  --paper-2: #071119;
  --surface: #0d1821;
  --surface-2: #122433;
  --line: rgba(162, 221, 220, .2);
  --line-strong: rgba(162, 221, 220, .38);
  --muted: #a9bdc2;
  --teal: #48ded5;
  --copper: #f29a55;
  --gold: #f4cb6c;
  --green: #78c96b;
  --red: #ff776e;
  --blue: #7db7ff;
  --deep: #020407;
  --star: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Atkinson Hyperlegible", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18px 24px, rgba(255, 255, 255, .22) 0 1px, transparent 1.6px) 0 0 / 96px 96px,
    radial-gradient(circle at 70px 56px, rgba(72, 222, 213, .18) 0 1px, transparent 1.7px) 0 0 / 142px 142px,
    linear-gradient(180deg, #04080c 0%, #07121b 45%, #05090d 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
.brand-text strong,
.nav-links a,
.button,
.section-label,
.trust-score,
th {
  font-family: "Nunito Sans", Arial, sans-serif;
}

h1,
h2,
h3,
p,
li,
span,
a,
strong,
td,
th {
  overflow-wrap: anywhere;
}

h1 {
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.18;
  margin: 0 0 .65rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: .45rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 30;
  background: var(--surface);
  color: var(--star);
  padding: .75rem 1rem;
  border: 2px solid var(--teal);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 8, 12, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(72, 222, 213, .42);
  border-radius: 50%;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 0 24px rgba(72, 222, 213, .18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: .05rem;
}

.brand-text strong {
  color: var(--star);
  font-size: .98rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--muted);
  font-size: .78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .25rem;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: .7rem;
  font-weight: 900;
  padding: .62rem .66rem;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--star);
  border-color: var(--line);
  background: rgba(72, 222, 213, .1);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--ink);
  font-weight: 800;
  padding: .65rem .85rem;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 116px));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, .94) 0%, rgba(3, 6, 8, .78) 34%, rgba(3, 6, 8, .28) 72%, rgba(3, 6, 8, .12) 100%),
    linear-gradient(0deg, rgba(5, 9, 13, .54), transparent 34%);
}

.hero-copy {
  position: relative;
  width: min(690px, calc(100% - 2rem));
  margin-left: max(1.25rem, calc((100vw - 1220px) / 2));
  color: var(--star);
  padding: 5rem 0 6rem;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 8.8vw, 8.6rem);
  font-weight: 900;
  line-height: .86;
  margin: 0 0 1.35rem;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 600px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin-bottom: 2rem;
}

.hero-line {
  color: var(--teal);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 700;
}

.hero-actions,
.form-actions,
.filter-bar,
.card-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 46px;
  padding: .78rem 1rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  color: #051012;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  border-color: var(--copper);
  box-shadow: 0 10px 30px rgba(242, 154, 85, .22);
}

.button.secondary,
.filter-button {
  color: var(--ink);
  background: rgba(255, 255, 255, .08);
  border-color: var(--line);
}

.button:hover,
.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--teal);
  background: rgba(72, 222, 213, .12);
  color: var(--star);
}

.intro-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, .7fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem max(1.25rem, calc((100vw - 1220px) / 2));
  background: rgba(2, 4, 7, .96);
  border-bottom: 1px solid var(--line);
}

.intro-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(72, 222, 213, .42);
}

.intro-band strong {
  color: var(--gold);
  display: block;
  margin-bottom: .2rem;
}

.intro-band ul {
  list-style: none;
  padding: 0;
  color: var(--muted);
}

.intro-band li {
  margin: 0;
}

.intro-band li::before {
  content: "";
  display: inline-block;
  width: .58rem;
  height: .58rem;
  margin-right: .5rem;
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.section.tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading p,
.page-hero p,
.wide-copy p,
.plain-card p,
.tool-card p,
.lab-card p {
  color: var(--muted);
}

.section-label {
  display: block;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.door-grid,
.tool-grid,
.trust-grid,
.lab-grid,
.source-grid,
.simple-grid,
.world-grid,
.open-grid,
.score-grid {
  display: grid;
  gap: 1rem;
}

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

.door-card,
.tool-card,
.trust-card,
.lab-card,
.source-card,
.plain-card,
.world-card,
.open-card,
.score-card,
.check-card,
.callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 33, 44, .94), rgba(8, 16, 24, .96));
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.door-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  text-decoration: none;
}

.door-card:hover,
.tool-card:hover,
.lab-card:hover,
.world-card:hover,
.open-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-number,
.trust-score,
.mini-label {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.door-card p,
.tool-card p,
.lab-card p,
.world-card p,
.open-card p,
.score-card p,
.plain-card p,
.source-card p {
  color: var(--muted);
}

.door-card .card-arrow {
  margin-top: auto;
  color: var(--teal);
  display: inline-flex;
  justify-content: flex-end;
}

.wide-band {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(2, 4, 7, .98), rgba(13, 31, 39, .9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--star);
  padding-left: max(1.25rem, calc((100vw - 1220px) / 2));
  padding-right: max(1.25rem, calc((100vw - 1220px) / 2));
}

.wide-copy {
  max-width: 840px;
  margin-bottom: 2rem;
}

.table-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 9, 13, .82);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

th,
td {
  padding: .88rem .9rem;
  border-bottom: 1px solid rgba(162, 221, 220, .14);
  border-right: 1px solid rgba(162, 221, 220, .12);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--teal);
  font-size: .76rem;
  line-height: 1.25;
  text-transform: uppercase;
}

td {
  color: var(--ink-2);
  font-size: .92rem;
}

tr:last-child td {
  border-bottom: 0;
}

th:last-child,
td:last-child {
  border-right: 0;
}

th button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: inherit;
}

th button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--teal);
  opacity: .75;
}

.table-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  color: var(--muted);
  font-size: .85rem;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}

.signal::before {
  content: "";
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--muted);
}

.signal.good::before {
  background: var(--green);
}

.signal.watch::before {
  background: var(--gold);
}

.signal.risk::before {
  background: var(--red);
}

.signal.info::before {
  background: var(--blue);
}

.page-hero {
  position: relative;
  min-height: min(720px, calc(100svh - 120px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--deep);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, .94) 0%, rgba(3, 6, 8, .78) 34%, rgba(3, 6, 8, .28) 72%, rgba(3, 6, 8, .12) 100%),
    linear-gradient(0deg, rgba(5, 9, 13, .52), transparent 36%);
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 2rem));
  margin-left: max(1.25rem, calc((100vw - 1220px) / 2));
  padding: 5rem 0 6rem;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3.4rem, 8.4vw, 8rem);
  font-weight: 900;
  line-height: .86;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 740px;
  font-size: 1.13rem;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.filter-bar {
  margin: 0 0 1rem;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  min-height: 40px;
  padding: .55rem .8rem;
}

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

.lab-card,
.tool-card,
.world-card,
.open-card,
.plain-card,
.check-card,
.source-card {
  padding: 1.2rem;
}

.lab-card header,
.world-card header,
.open-card header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.trust-score {
  color: var(--teal);
  font-size: 1.2rem;
  white-space: nowrap;
}

.tag-row {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin: .8rem 0 1rem;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  padding: .2rem .55rem;
}

.fact-list {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}

.fact-list div {
  display: grid;
  gap: .1rem;
}

.fact-list strong {
  color: var(--star);
}

.fact-list span {
  color: var(--muted);
}

.score-breakdown {
  border: 1px solid rgba(162, 221, 220, .18);
  border-radius: var(--radius);
  background: rgba(3, 7, 10, .62);
  padding: .8rem;
  margin-top: 1rem;
}

.score-breakdown-head {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  color: var(--star);
  font-weight: 900;
  margin-bottom: .65rem;
}

.score-breakdown-head span {
  color: var(--teal);
}

.score-breakdown dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .45rem;
  margin: 0;
}

.score-breakdown dl div {
  border: 1px solid rgba(162, 221, 220, .14);
  border-radius: 6px;
  padding: .45rem;
  background: rgba(8, 16, 24, .7);
}

.score-breakdown dt {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.score-breakdown dd {
  color: var(--star);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0;
}

.score-breakdown + .card-links {
  margin-top: .75rem;
}

.last-updated {
  color: var(--muted);
  display: block;
  font-size: .78rem;
  font-weight: 800;
  margin-top: .75rem;
}

.detail-score {
  max-width: 320px;
}

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

.tool-card {
  min-height: 230px;
}

.tool-card .mini-label {
  display: block;
  margin-bottom: .65rem;
  font-size: .78rem;
}

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

.trust-card {
  padding: 1.2rem;
}

.trust-card h3 {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.trust-card h3 span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: .9rem;
}

.checklist {
  display: grid;
  gap: .75rem;
}

.check-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
}

.check-card input {
  width: 22px;
  height: 22px;
  margin-top: .15rem;
  accent-color: var(--teal);
}

.check-status {
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 800;
}

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

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

.score-card {
  padding: 1rem;
}

.score-card strong {
  display: block;
  color: var(--teal);
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .45rem;
}

.score-card span {
  display: block;
  color: var(--star);
  font-weight: 900;
  margin-bottom: .45rem;
}

.score-card p {
  font-size: .88rem;
  margin: 0;
}

.score-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1rem;
}

.score-band span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  padding: .8rem;
  background: rgba(4, 9, 13, .7);
}

.score-band strong {
  color: var(--gold);
}

.score-note {
  max-width: 930px;
  color: var(--ink-2);
  margin: 1rem 0 0;
}

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

.world-card img,
.open-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}

.callout {
  padding: 1.3rem;
  border-color: rgba(244, 203, 108, .35);
  background: linear-gradient(135deg, rgba(244, 203, 108, .12), rgba(72, 222, 213, .08));
}

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

.source-card a,
.card-links a,
.inline-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(72, 222, 213, .35);
}

.source-card a:hover,
.card-links a:hover,
.inline-link:hover {
  color: var(--star);
  border-bottom-color: var(--star);
}

.source-inline {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
  margin-top: .55rem;
}

.source-inline a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(72, 222, 213, .35);
}

.source-inline a:hover {
  color: var(--star);
  border-bottom-color: var(--star);
}

.next-trail {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem 5rem;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(220px, auto) minmax(190px, 1fr);
  gap: 1rem;
  align-items: center;
}

.trail-note {
  color: var(--muted);
  text-align: center;
}

.next-trail .next {
  justify-self: end;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 4, 7, .98);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-copy {
  display: grid;
  gap: .55rem;
}

.footer-inner p {
  color: var(--muted);
  margin: 0;
}

.footer-disclaimer {
  color: var(--ink-2);
  font-size: .86rem;
}

.footer-links {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--teal);
}

.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 48px;
  padding: .75rem .95rem;
  border: 1px solid rgba(72, 222, 213, .55);
  border-radius: 999px;
  background: rgba(0, 102, 105, .88);
  color: var(--star);
  cursor: pointer;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1080px) {
  .door-grid,
  .lab-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(3, 7, 10, .98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 4rem 0 5rem;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .intro-mark {
    display: none;
  }

  .page-hero {
    min-height: min(650px, calc(100svh - 96px));
  }

  .page-hero > div {
    padding: 4rem 0 5rem;
  }

  .trust-grid,
  .world-grid,
  .open-grid,
  .score-grid,
  .score-band,
  .source-grid,
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .next-trail {
    grid-template-columns: 1fr;
  }

  .next-trail .next {
    justify-self: stretch;
  }

  .next-trail .button {
    width: 100%;
  }

  .trail-note {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand-text span {
    display: none;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 11.8vw, 3.35rem);
    line-height: .92;
  }

  .door-grid,
  .lab-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .wide-band {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .table-note {
    display: block;
  }

  .to-top {
    right: .8rem;
    bottom: .8rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
