:root {
  --deep-blue: #0A192F;
  --gold: #D4AF37;
  --orange: #FF6B35;
  --stone: #8B8C89;
  --moss: #7A8B6F;
  --terracotta: #C97B63;
  --cream: #F5F0E6;
  --ink: #1A1A2E;
  --white: #FFFFFF;
  --text-dark: rgba(245, 240, 230, 0.92);
  --text-dark-muted: rgba(245, 240, 230, 0.68);
  --font-head: "Source Han Sans CN", "Noto Sans SC", sans-serif;
  --font-body: "Source Han Sans CN", "Noto Sans SC", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --content-width: 1240px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 16px 40px rgba(10, 25, 47, 0.10);
  --shadow-lift: 0 24px 60px rgba(10, 25, 47, 0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--deep-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--orange);
}

ul[class] {
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--deep-blue);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -300%);
  background: var(--gold);
  color: var(--deep-blue);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lift);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.container {
  width: min(var(--content-width), calc(100% - 40px));
  margin-inline: auto;
}

#main-content,
.main-content {
  display: block;
  min-height: 60vh;
  padding-top: 108px;
  scroll-margin-top: 108px;
}

#main-content:focus {
  outline: none;
}

[id] {
  scroll-margin-top: 108px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 240;
  padding: 14px 20px 0;
  pointer-events: none;
}

.header-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 250;
  pointer-events: none;
  background: rgba(245, 240, 230, 0.14);
}

.header-progress::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--orange) 45%, var(--cream));
  transform: scaleX(var(--progress, 0));
  transform-origin: 0 50%;
}

.header-inner {
  width: min(var(--content-width), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: var(--radius-pill);
  background: rgba(10, 25, 47, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.brand:hover {
  color: var(--text-dark);
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep-blue);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s ease;
}

.brand:hover .brand-mark {
  background: var(--orange);
}

.brand-text {
  white-space: nowrap;
}

.nav-capsule {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: rgba(10, 25, 47, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  visibility: visible;
}

.nav-list {
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: rgba(245, 240, 230, 0.84);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: var(--gold);
  color: var(--deep-blue);
  transform: translateY(-1px);
}

.nav-link[aria-current="page"] {
  background: var(--gold);
  color: var(--deep-blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep-blue);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 230;
  box-shadow: var(--shadow-soft);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--deep-blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-footer {
  margin-top: 0;
  background-color: var(--deep-blue);
  background-image: radial-gradient(circle at 8% 20%, rgba(212, 175, 55, 0.10), transparent 32%);
  color: rgba(245, 240, 230, 0.78);
}

.footer-inner {
  position: relative;
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer-brand:hover {
  color: var(--gold);
}

.footer-trust {
  max-width: 42em;
  margin: 0;
  color: rgba(245, 240, 230, 0.60);
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-link {
  color: rgba(245, 240, 230, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-text {
  display: block;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact .footer-link--more {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  padding: 22px 0 28px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 240, 230, 0.55);
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-legal .footer-link {
  font-size: 13px;
}

.footer-icp {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 240, 230, 0.45);
  margin-left: auto;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(10, 25, 47, 0.86);
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

body[data-scrolled] .back-to-top {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--deep-blue);
}

.section {
  padding-block: 72px;
}

.section--dark {
  background-color: var(--deep-blue);
  background-image: radial-gradient(circle at 78% 22%, rgba(255, 107, 53, 0.12), transparent 38%);
  color: var(--text-dark);
}

.section--dark a {
  color: var(--gold);
}

.section--dark a:hover {
  color: var(--orange);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.section__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section__title {
  margin: 6px 0 0;
  font-size: clamp(24px, 3.6vw, 38px);
  color: var(--deep-blue);
}

.section--dark .section__title {
  color: var(--white);
}

.section__intro {
  max-width: 640px;
  margin: 0;
  color: var(--stone);
}

.section--dark .section__intro {
  color: rgba(245, 240, 230, 0.68);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: rgba(10, 25, 47, 0.05);
  font-family: var(--font-mono);
  font-size: 12px;
}

.breadcrumb a {
  color: var(--deep-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb [aria-current="page"] {
  color: var(--stone);
}

.breadcrumb__sep {
  color: var(--stone);
  margin: 0 4px;
}

.layout-split {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  padding-block: 28px;
}

.index-rail {
  position: sticky;
  top: 112px;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background-color: var(--deep-blue);
  background-image: linear-gradient(145deg, rgba(212, 175, 55, 0.12), transparent 45%), radial-gradient(circle at top right, rgba(255, 107, 53, 0.15), transparent 45%);
  color: var(--text-dark);
  box-shadow: var(--shadow-lift);
}

.index-rail__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.index-rail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.index-rail__link {
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border-left: 2px solid transparent;
  border-radius: 8px;
  color: rgba(245, 240, 230, 0.82);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.index-rail__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border-left-color: var(--gold);
}

.index-rail__link.is-active {
  background: var(--gold);
  color: var(--deep-blue);
  border-left-color: var(--orange);
}

.entry-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  min-height: 500px;
  padding-block: 40px;
  overflow: hidden;
}

.entry-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 40%;
  width: 60%;
  height: 140%;
  background: rgba(212, 175, 55, 0.16);
  transform: rotate(10deg);
  pointer-events: none;
}

.entry-hero::after {
  content: "";
  position: absolute;
  top: 32%;
  left: -10%;
  width: 34%;
  height: 60%;
  background: rgba(255, 107, 53, 0.10);
  transform: rotate(-12deg);
  pointer-events: none;
}

.entry-hero__text {
  grid-column: 1 / span 7;
  position: relative;
  z-index: 2;
}

.entry-hero__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.entry-hero__title {
  margin: 0.25em 0 0.4em;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.06;
  color: var(--deep-blue);
}

.entry-hero__lead {
  max-width: 600px;
  margin: 0;
  color: var(--stone);
  font-size: 17px;
}

.entry-hero__panel {
  grid-column: 8 / span 5;
  position: relative;
  z-index: 2;
  padding: 34px;
  border-radius: 30px;
  background: var(--deep-blue);
  color: var(--text-dark);
  box-shadow: var(--shadow-lift);
  transform: rotate(1.4deg);
  overflow: hidden;
}

.entry-hero__panel::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -6%;
  width: 48%;
  height: 120%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  opacity: 0.22;
  transform: rotate(-8deg);
  border-radius: 30px;
  pointer-events: none;
}

.hero-metric {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metric:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-metric__value {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.hero-metric__label {
  font-size: 13px;
  color: rgba(245, 240, 230, 0.68);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-blue);
  box-shadow: 0 10px 24px -12px rgba(212, 175, 55, 0.7);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--cream);
  color: var(--deep-blue);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(10, 25, 47, 0.22);
  color: var(--deep-blue);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold);
}

.section--dark .btn--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--cream);
}

.section--dark .btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  padding: 22px;
  border: 1px solid rgba(10, 25, 47, 0.08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.card__title {
  margin: 8px 0 6px;
  font-size: 18px;
  color: var(--deep-blue);
}

.card__text {
  margin: 0;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.7;
}

.callout {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(212, 175, 55, 0.10);
  color: var(--ink);
}

.callout--orange {
  border-left-color: var(--orange);
  background: rgba(255, 107, 53, 0.08);
}

.callout--moss {
  border-left-color: var(--moss);
  background: rgba(122, 139, 111, 0.10);
}

.text-container {
  max-width: 760px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.9;
}

.text-container h2 {
  margin-top: 2.4em;
  color: var(--deep-blue);
}

.text-container h3 {
  margin-top: 1.8em;
  color: var(--deep-blue);
}

.text-container p {
  color: rgba(26, 26, 46, 0.86);
}

.pivot-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.pivot-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.pivot-table th,
.pivot-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(10, 25, 47, 0.08);
  text-align: left;
}

.pivot-table th {
  background: var(--deep-blue);
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 700;
}

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

.pivot-table td:first-child {
  color: var(--deep-blue);
  font-weight: 700;
}

.trend-up {
  color: var(--moss);
  font-family: var(--font-mono);
  font-weight: 700;
}

.trend-down {
  color: var(--orange);
  font-family: var(--font-mono);
  font-weight: 700;
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 24px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.timeline__item {
  position: relative;
  padding-left: 16px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.24);
}

.timeline__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--terracotta);
  text-transform: uppercase;
}

.timeline__title {
  margin: 4px 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--deep-blue);
}

.timeline__text {
  margin: 0;
  color: var(--stone);
  font-size: 14px;
}

.accordion {
  border-top: 1px solid rgba(10, 25, 47, 0.12);
}

.accordion__item {
  border-bottom: 1px solid rgba(10, 25, 47, 0.12);
}

.accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  list-style: none;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-blue);
  cursor: pointer;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
}

.accordion__item[open] .accordion__summary::after {
  content: "−";
}

.accordion__content {
  max-width: 70ch;
  padding: 0 4px 18px;
  color: var(--stone);
  font-size: 15px;
}

.figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--terracotta), var(--deep-blue));
}

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

.figure--ratio-21x9 {
  aspect-ratio: 21 / 9;
}

.figure--ratio-3x4 {
  aspect-ratio: 3 / 4;
}

.figure__caption {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--stone);
}

@media (max-width: 960px) {
  .layout-split {
    grid-template-columns: 1fr;
  }

  .index-rail {
    position: static;
  }

  .entry-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .entry-hero__text,
  .entry-hero__panel {
    grid-column: 1;
  }

  .entry-hero__panel {
    transform: none;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav-capsule {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: 0;
    padding: 24px;
    background: rgba(10, 25, 47, 0.98);
    flex-direction: column;
    justify-content: center;
    z-index: 220;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-capsule[data-open] {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .nav-link {
    padding: 12px 24px;
    font-size: 18px;
  }

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

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .footer-icp {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--content-width), calc(100% - 24px));
  }

  .section {
    padding-block: 52px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .entry-hero__panel {
    padding: 26px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

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

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

  .entry-hero__panel {
    transform: none;
  }

  .back-to-top {
    transform: none;
  }
}
