:root {
  color-scheme: dark;
  --color-bg: #080C10;
  --color-surface: #0D1117;
  --color-border: #1C2333;
  --color-accent-hot: #FF2D6B;
  --color-accent-ice: #00D4FF;
  --color-accent-dim: #1E3A5F;
  --color-text: #E8EDF2;
  --color-muted: #6B7A8D;
  --color-success: #00FF87;
  --font-display: "Space Grotesk", Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background:
    radial-gradient(circle, rgba(232, 237, 242, .06) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, rgba(255, 45, 107, .16), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(0, 212, 255, .12), transparent 34rem),
    linear-gradient(180deg, #080C10 0%, #0A0F16 46%, #080C10 100%);
  background-size: 28px 28px, auto, auto, auto;
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 45, 107, .08), transparent 24%, transparent 76%, rgba(0, 212, 255, .06)),
    linear-gradient(180deg, rgba(8, 12, 16, 0), var(--color-bg));
  opacity: .78;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 max(24px, 6vw);
  border-bottom: 1px solid rgba(255, 45, 107, .45);
  background: rgba(8, 12, 16, .85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 45, 107, .42);
}

.brand,
.nav,
.hero-actions,
.tech-badges,
.diagram-topline,
.app-titlebar,
.window-dots,
.app-status,
.metric-band,
.terminal-head,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .08em;
}

.brand em {
  color: var(--color-muted);
  font-style: normal;
}

.brand-mark {
  width: 32px;
  height: 18px;
  clip-path: polygon(0 0, 46% 0, 46% 100%, 0 100%, 0 0, 58% 0, 100% 0, 100% 100%, 58% 100%);
  background: linear-gradient(90deg, var(--color-accent-hot) 0 48%, transparent 48% 55%, var(--color-accent-ice) 55% 100%);
}

.nav {
  gap: 24px;
}

.nav a {
  position: relative;
  padding: 9px 0;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: .8rem;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent-ice);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity .2s ease;
}

.nav a:hover {
  color: var(--color-text);
}

.nav a:hover::after {
  opacity: 1;
}

.nav a[aria-current="page"] {
  color: var(--color-text);
}

.nav a[aria-current="page"]::after {
  opacity: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 78px 0 52px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-accent-ice);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.055em;
}

h1 span {
  color: var(--color-accent-hot);
}

h2 {
  margin-bottom: 16px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -.015em;
}

.lead {
  max-width: 680px;
  color: #B9C3D1;
  font-size: 1.08rem;
  line-height: 1.58;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 2px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.button.primary,
.download-link {
  border: 1px solid var(--color-accent-hot);
  color: #080C10;
  background: var(--color-accent-hot);
}

.button.primary:hover,
.download-link:hover {
  box-shadow: 0 0 20px rgba(255, 45, 107, .4);
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  background: transparent;
}

.button.secondary:hover {
  border-color: var(--color-accent-ice);
  color: var(--color-text);
}

.tech-badges {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tech-badges span {
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-muted);
  background: var(--color-surface);
  font-family: var(--font-mono);
  font-size: .75rem;
  transition: border-color .2s ease, color .2s ease;
}

.tech-badges span:hover {
  border-color: var(--color-accent-ice);
  color: var(--color-text);
}

.hero-diagram,
.expanded-diagram,
.app-window,
.download-terminal {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-surface);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .42);
}

.hero-diagram {
  padding: 18px 18px 20px;
  min-width: 0;
}

.diagram-topline,
.terminal-head {
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 14px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
}

.diagram-topline strong {
  color: var(--color-success);
}

.route-svg {
  width: 100%;
  height: auto;
  border: 1px solid rgba(28, 35, 51, .82);
  border-radius: 2px;
  background:
    radial-gradient(circle, rgba(232, 237, 242, .055) 1px, transparent 1px),
    #0A0F16;
  background-size: 28px 28px;
}

.grid-lines path {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 1;
}

.link path {
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 8 10;
}

.allow-link path {
  stroke: var(--color-accent-ice);
  filter: url(#glowIce);
  animation: dash 6s linear infinite;
}

.allow-link.dimmed path {
  opacity: .58;
}

.block-link path {
  stroke: var(--color-accent-hot);
  animation: dash 8s linear infinite reverse;
}

.node text {
  fill: var(--color-text);
  font-family: var(--font-mono);
  font-weight: 800;
  text-anchor: middle;
  font-size: 15px;
}

.local-node circle:not(.pulse) {
  fill: #081A24;
  stroke: var(--color-accent-ice);
  stroke-width: 2;
}

.local-node .pulse {
  fill: rgba(0, 212, 255, .16);
  stroke: rgba(0, 212, 255, .45);
  stroke-width: 1;
  animation: pulse 2.6s ease-in-out infinite;
}

.endpoint circle {
  fill: #111A28;
  stroke-width: 2;
}

.endpoint.allow circle,
.endpoint.allow rect {
  stroke: var(--color-accent-ice);
}

.endpoint.block circle,
.endpoint.block rect {
  stroke: var(--color-accent-hot);
}

.endpoint rect {
  fill: #0A0F16;
  stroke-width: 1;
  rx: 2;
}

.endpoint.allow .badge-text {
  fill: var(--color-accent-ice);
  font-size: 11px;
}

.endpoint.block .badge-text {
  fill: var(--color-accent-hot);
  font-size: 11px;
}

.endpoint .x {
  stroke: var(--color-accent-hot);
  stroke-width: 4;
  stroke-linecap: square;
}

.app-band {
  padding: 32px 0 78px;
  overflow-x: clip;
}

.app-window {
  min-width: 900px;
  overflow: hidden;
  transform: perspective(1200px) rotateX(3deg) rotateY(-3deg);
  transform-origin: center;
}

.app-titlebar {
  justify-content: space-between;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--color-border);
  background: #161B22;
  font-family: var(--font-mono);
  font-size: .78rem;
}

.window-dots {
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-muted);
}

.window-dots span:first-child {
  background: var(--color-accent-hot);
}

.window-dots span:nth-child(2) {
  background: var(--color-accent-ice);
}

.app-titlebar code {
  color: var(--color-success);
  font-family: var(--font-mono);
}

.app-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 410px;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 14px;
  border-right: 1px solid var(--color-border);
  background: #0A0E14;
}

.app-sidebar svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  stroke: var(--color-muted);
  fill: none;
  stroke-width: 1.8;
}

.app-sidebar svg:first-child {
  border-color: var(--color-accent-ice);
  stroke: var(--color-accent-ice);
}

.app-main {
  padding: 26px;
}

.app-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 22px;
}

.app-heading h2 {
  margin-bottom: 0;
}

.app-heading span {
  color: var(--color-success);
  font-family: var(--font-mono);
  font-size: .72rem;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.region-card {
  position: relative;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: #101620;
  overflow: hidden;
}

.region-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent-hot);
}

.region-card.is-allowed::before {
  background: var(--color-success);
}

.region-card code {
  display: block;
  margin-bottom: 26px;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
}

.region-card strong {
  display: block;
  color: var(--color-muted);
  font-weight: 600;
}

.region-card span {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 4px 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
  color: var(--color-accent-hot);
  font-family: var(--font-mono);
  font-size: .65rem;
  opacity: .48;
  transition: opacity .2s ease;
}

.region-card.is-allowed span {
  color: var(--color-success);
}

.region-card:hover span {
  opacity: 1;
}

.app-status {
  gap: 20px;
  min-height: 38px;
  padding: 0 18px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: .72rem;
}

.app-status span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--color-success);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 calc((100vw - min(1220px, calc(100vw - 48px))) / -2) 72px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.metric-band div {
  min-height: 150px;
  padding: 28px 24px;
  border-right: 1px solid var(--color-border);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: .9;
}

.metric-band span {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.map-copy h2,
.release-spec h2 {
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  border-top: 1px dashed var(--color-border);
}

.timeline article {
  position: relative;
  min-height: 210px;
  padding: 24px 8px 0;
}

.timeline article span {
  position: absolute;
  top: -24px;
  left: 0;
  z-index: -1;
  color: var(--color-accent-dim);
  font-family: var(--font-mono);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.timeline article::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 15px 0 50px;
  border: 2px solid var(--color-accent-ice);
  border-radius: 50%;
  background: var(--color-bg);
  box-shadow: 0 0 18px rgba(0, 212, 255, .28);
}

.timeline p,
.map-copy p,
.feature-card p,
.site-footer,
.table-row span,
.definition-grid dt {
  color: var(--color-muted);
  line-height: 1.56;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .8fr);
  gap: 46px;
  align-items: center;
}

.expanded-diagram {
  padding: 18px;
}

.terminal-head span {
  animation: softBlink 1.8s ease-in-out infinite;
}

.terminal-head strong {
  color: var(--color-accent-ice);
}

.console-log {
  margin: 14px 0 0;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: #A9F5C8;
  background: #070A0F;
  font-family: var(--font-mono);
  font-size: .78rem;
  line-height: 1.7;
  overflow-x: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-surface);
}

.feature-card.large {
  grid-column: span 2;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 18px;
  width: 3px;
  height: 74px;
  background: var(--color-accent-hot);
}

.feature-card.accent-ice::before { background: var(--color-accent-ice); }
.feature-card.accent-green::before { background: var(--color-success); }

.feature-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 56px;
  stroke: var(--color-muted);
  fill: none;
  stroke-width: 1.7;
}

.feature-card.accent-ice svg { stroke: var(--color-accent-ice); }
.feature-card.accent-hot svg { stroke: var(--color-accent-hot); }
.feature-card.accent-green svg { stroke: var(--color-success); }

.connections-section {
  padding-top: 58px;
}

.source-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .62fr);
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.source-copy {
  max-width: 760px;
}

.source-copy h2 {
  text-transform: uppercase;
}

.source-copy p {
  color: var(--color-muted);
  line-height: 1.58;
}

.source-terminal {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-surface);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .34);
}

.source-terminal pre {
  margin: 0 0 22px;
  color: #B8C7D9;
  font-family: var(--font-mono);
  font-size: .88rem;
  line-height: 1.75;
  overflow-x: auto;
}

.technical-table {
  border-top: 1px solid var(--color-border);
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.table-head {
  padding: 12px 0;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
}

.table-row strong {
  font-weight: 700;
}

.release-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 42px;
  align-items: start;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 34px 0 0;
}

.definition-grid div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.definition-grid dt {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.definition-grid dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 800;
}

.download-terminal {
  padding: 24px;
}

.download-terminal pre {
  margin: 0 0 22px;
  color: #B8C7D9;
  font-family: var(--font-mono);
  font-size: .88rem;
  line-height: 1.75;
  overflow-x: auto;
}

.download-link {
  width: 100%;
  font-family: var(--font-mono);
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 44px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--color-accent-hot), var(--color-accent-ice)) 1;
  font-size: .9rem;
}

.site-footer span:first-child {
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .08em;
}

.downloads-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 56px;
  align-items: center;
  min-height: calc(78vh - 72px);
  padding: 84px 0 54px;
}

.downloads-hero h1 {
  max-width: 760px;
}

.downloads-hero-clean {
  grid-template-columns: minmax(0, 860px);
  min-height: calc(56vh - 72px);
}

.download-card {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(16, 22, 32, .96), rgba(10, 15, 22, .96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .36);
}

.download-meta {
  margin: 0;
}

.download-meta dd {
  margin: 0;
  color: #B9C3D1;
  line-height: 1.56;
}

.downloads-section {
  padding-top: 56px;
}

.download-list {
  display: grid;
  gap: 18px;
}

.download-empty {
  margin: 0;
  padding: 28px;
  border: 1px dashed var(--color-border);
  border-radius: 4px;
  color: var(--color-muted);
  background: rgba(13, 17, 23, .72);
  font-family: var(--font-mono);
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, .7fr) 180px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  overflow: hidden;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--color-success);
}

.download-card.blocked::before {
  background: var(--color-accent-hot);
}

.download-card.featured {
  border-color: rgba(0, 255, 135, .44);
}

.download-main p {
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.release-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 9px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-status.supported {
  color: var(--color-success);
}

.release-status.limited {
  color: var(--color-accent-ice);
}

.release-status.ended {
  color: var(--color-accent-hot);
}

.download-meta {
  display: grid;
  gap: 12px;
}

.download-meta div {
  display: grid;
  gap: 4px;
}

.download-meta dt {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.secondary-download {
  border-color: var(--color-accent-ice);
  background: var(--color-accent-ice);
}

.danger-download {
  border-color: var(--color-accent-hot);
  color: var(--color-accent-hot);
  background: transparent;
}

.danger-download:hover {
  color: #080C10;
  background: var(--color-accent-hot);
}

@keyframes dash {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(.88);
    opacity: .38;
  }
  50% {
    transform: scale(1.08);
    opacity: .82;
  }
}

@keyframes softBlink {
  0%, 100% {
    opacity: .42;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero,
  .map-section,
  .source-section,
  .release-section,
  .downloads-hero {
    grid-template-columns: 1fr;
  }

  .hero-diagram {
    max-width: 720px;
  }

  .app-band {
    overflow-x: auto;
    padding-bottom: 52px;
  }

  .metric-band,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-band div {
    border-bottom: 1px solid var(--color-border);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 6px;
    right: auto;
    border-top: 0;
    border-left: 1px dashed var(--color-border);
  }

  .timeline article {
    min-height: auto;
    padding-left: 42px;
  }

  .timeline article::before {
    position: absolute;
    left: 0;
    top: 18px;
    margin: 0;
  }

  .timeline article span {
    left: 42px;
  }
}

@media (max-width: 760px) {
  main,
  .site-footer {
    width: min(100% - 28px, 1220px);
  }

  .site-header {
    display: block;
    min-height: 0;
    padding: 16px 18px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 14px;
  }

  .hero {
    min-height: 0;
    padding-top: 52px;
  }

  .lead {
    font-size: 1rem;
  }

  .metric-band,
  .feature-grid,
  .definition-grid,
  .table-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-card.large {
    grid-column: auto;
  }

  .table-row {
    gap: 8px;
  }

  .table-head {
    display: none;
  }

  .route-svg {
    min-width: 520px;
  }

  .hero-diagram,
  .expanded-diagram {
    overflow-x: auto;
  }

  .metric-band div {
    min-height: 120px;
    border-right: 0;
  }

  .downloads-hero {
    min-height: 0;
    padding-top: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
