:root {
  --bg: #070708;
  --bg-soft: #0a0a0c;
  --panel: #101012;
  --panel-2: #161619;
  --border: #2a2b30;
  --text: #f2f2f5;
  --muted: #a8a9ad;
  --accent: #b99a63;
  --accent-hover: #a98852;
  --accent-contrast: #121211;
  --radius: 16px;
  --font-ui: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Prata", "Times New Roman", serif;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(920px 300px at 20% -15%, rgba(185, 154, 99, 0.09), transparent 66%),
    linear-gradient(180deg, #070708 0%, #09090a 100%);
  font-family: var(--font-ui);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #f6f6f8;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ffffff;
}

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: min(1100px, 100%);
  margin: 0 auto;
  border-bottom: 0;
  background: rgba(8, 8, 9, 0.94);
  backdrop-filter: blur(6px);
}

.header-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 102;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.site-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  padding: 9px 16px;
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.98rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-link:not(.site-cta)::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 1px;
  border-radius: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.site-link:hover,
.site-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-link:not(.site-cta):hover::after,
.site-link:not(.site-cta).active::after {
  background: rgba(185, 154, 99, 0.62);
}

.site-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-cta {
  margin-left: 4px;
  background: var(--accent);
  color: var(--accent-contrast);
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: var(--shadow-soft);
}

.site-cta:hover {
  color: var(--accent-contrast);
  background: var(--accent-hover);
}

.burger {
  display: none;
  position: absolute;
  right: 6px;
  top: 8px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}

.burger .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--accent);
}

.close-x {
  display: none;
}

.hero,
.why,
.prices,
.reviews,
.contacts,
.faq {
  width: min(1100px, 100%);
  margin: 56px auto 0;
  padding: 0 20px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 38px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -20px;
  background:
    radial-gradient(520px 340px at 22% 48%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0) 72%),
    radial-gradient(420px 260px at 72% 18%, rgba(185, 154, 99, 0.08), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  isolation: isolate;
}

.hero-img picture {
  position: relative;
  display: block;
  width: 100%;
  max-width: 356px;
  overflow: visible;
}

.hero-img img {
  display: block;
  width: 100%;
  border: 0;
  box-shadow: none;
  background: #000;
  filter: saturate(0.76) sepia(0.12) contrast(0.95) brightness(1.12);
  mix-blend-mode: normal;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.24;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.hero-text h2 {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-bullets {
  margin: 0 0 20px;
  padding-left: 20px;
  color: #d4d4d8;
}

.hero-bullets li {
  margin: 8px 0;
}

.hero-bullets li::marker {
  color: rgba(185, 154, 99, 0.76);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.hero-cta .btn-main,
.hero-cta .ghost-link {
  height: auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1;
}

.hero-cta .ghost-link {
  min-height: 52px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.hero-cta .btn-main:hover,
.hero-cta .ghost-link:hover {
  transform: none;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 11px;
  padding: 12px 22px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--accent-contrast);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-main:hover {
  color: var(--accent-contrast);
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-main.ghost {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.btn-main.ghost:hover {
  background: rgba(185, 154, 99, 0.09);
  color: var(--accent);
  transform: none;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 11px;
  border: 1px solid var(--border);
  color: #d7d8dc;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.02);
}

.ghost-link:hover {
  border-color: var(--accent);
  color: #ffffff;
}

.why h2,
.prices h2,
.reviews h2,
.contacts h2,
.faq h2 {
  margin: 0 0 26px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.why h2::after,
.prices h2::after,
.reviews h2::after,
.contacts h2::after,
.faq h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(185, 154, 99, 0.86), rgba(185, 154, 99, 0.1));
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-list > div,
.price-card,
.review-card,
.contacts-list > div,
.store .store-card,
.tests-index .store-card,
.faq-list details,
.workbook-page .cover,
.workbook-page .day,
.workbook-page .final,
.test-page .test-block,
.test-page .test-result,
.test-progress {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.why-list > div {
  padding: 24px;
}

.why-list h3 {
  margin: 0 0 8px;
  font-family: var(--font-ui);
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
}

.why-list p {
  margin: 0;
  color: var(--muted);
}

.prices-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 14px;
  right: 14px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.price-title,
.price-value,
.review-author,
.store .store-title,
.tests-index .store-title,
.test-page .subtitle,
.store .subtitle,
.tests-index .subtitle,
.faq-list summary,
.workbook-page .cover h1,
.workbook-page .day-number,
.workbook-page .final h2,
.contacts-list a {
  color: var(--accent);
}

.price-title {
  margin-bottom: 8px;
  font-size: 1rem;
}

.price-value {
  font-size: 1.35rem;
  font-weight: 700;
}

.price-points {
  margin: 12px 0;
  padding-left: 18px;
  color: #d4d5da;
}

.price-points li {
  margin-bottom: 6px;
}

.special-offers {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.special-offers h3 {
  margin: 0 0 10px;
  font-size: 1.03rem;
  color: var(--accent);
}

.special-offers ul {
  margin: 0;
  padding-left: 18px;
  color: #d4d6dc;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  padding: 20px;
}

.review-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.review-author {
  margin-bottom: 6px;
  font-weight: 700;
}

.review-meta {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-text {
  color: #f3f3f6;
}

.contacts-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contacts-list > div {
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-contrast);
}

.contacts-list .contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 10px;
  border: 0;
  background: none;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contacts-list .contact-action::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 9px;
  height: 1px;
  border-radius: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.contacts-list .contact-action:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.contacts-list .contact-action:hover::after {
  background: rgba(185, 154, 99, 0.58);
}

.site-footer {
  margin-top: 32px;
  padding: 18px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.store .container,
.tests-index .container {
  max-width: 980px;
}

.store .subtitle,
.tests-index .subtitle {
  margin: 42px 0 28px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.store .store-list,
.tests-index .store-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
  align-items: stretch;
}

.store .store-card,
.tests-index .store-card {
  padding: 22px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.store .store-actions {
  margin-top: auto;
  width: 100%;
  max-width: 320px;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store .store-actions .btn-main {
  width: 100%;
}

.store .store-img {
  display: block;
  width: 100%;
  max-width: 290px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 761px) {
  .store .store-card:nth-child(1) .store-desc,
  .store .store-card:nth-child(2) .store-desc {
    min-height: 7.2em;
  }
}

.store .store-title,
.tests-index .store-title {
  margin-bottom: 9px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.07rem;
  text-align: center;
}

.store .store-desc,
.tests-index .store-desc {
  margin-bottom: 16px;
  color: #d3d4da;
  text-align: center;
}

.tests-index .store-card .btn-main {
  margin-top: auto;
  align-self: center;
}

.faq {
  margin-top: 56px;
}

.faq-page .faq-title,
.faq-page .faq-list {
  width: min(1100px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.faq-page .faq-title {
  margin-top: 56px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.14;
  color: #f6f6f8;
}

.faq-list details {
  margin-bottom: 12px;
  padding: 14px 16px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  color: #d3d4da;
}

.faq-cta {
  width: min(860px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--panel), var(--panel-2));
  text-align: center;
}

.faq-cta h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.35rem;
}

.faq-cta p {
  margin: 0 0 14px;
  color: #d1d3d9;
}

.workbook-page .container {
  max-width: 680px;
}

.workbook-page .cover,
.workbook-page .day,
.workbook-page .final {
  margin-top: 28px;
  padding: 26px;
}

.workbook-page .cover h1 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.workbook-page .cover p,
.workbook-page .day-task,
.workbook-page .final p {
  color: #d2d4db;
}

.workbook-page .day {
  text-align: left;
}

.workbook-page .day-number {
  font-weight: 700;
  margin-bottom: 6px;
}

.workbook-page .day-title {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.workbook-page .day-note {
  margin-bottom: 14px;
  color: var(--muted);
  font-style: italic;
}

.workbook-page .final-intro {
  margin-bottom: 18px;
  color: #d2d4db;
  font-size: 1rem;
}

.workbook-page textarea {
  width: 100%;
  min-height: 90px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #111114;
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.workbook-page textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(185, 154, 99, 0.25);
}

.workbook-page .share-btn {
  margin-top: 18px;
}

.workbook-page footer {
  text-align: center;
  margin: 36px 0 24px;
  color: var(--muted);
}

.workbook-page footer a {
  color: var(--accent);
  font-weight: 700;
}

.test-page .container {
  max-width: 760px;
}

.test-page .subtitle {
  margin: 40px 0 14px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.test-page .test-desc {
  text-align: center;
  margin-bottom: 18px;
  color: #d1d3da;
}

.test-progress {
  margin-bottom: 14px;
  padding: 12px;
}

.test-progress .progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--accent);
  gap: 10px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.back-link:hover {
  color: var(--text);
}

.progress-bar {
  margin-top: 10px;
  width: 100%;
  height: 7px;
  border-radius: 8px;
  background: #0f0f12;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}

.test-page .test-block {
  padding: 22px;
  margin-bottom: 16px;
}

.test-page .question {
  margin-bottom: 12px;
  font-weight: 700;
}

.test-page .answers label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.test-page .answers label:hover {
  border-color: rgba(185, 154, 99, 0.6);
}

.test-page .answers input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 999px;
  border: 2px solid #8a95a6;
  background: transparent;
  position: relative;
  flex-shrink: 0;
}

.test-page .answers input[type="radio"]:checked {
  border-color: var(--accent);
}

.test-page .answers input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.test-page .answers input[type="radio"]:checked + span {
  color: #ffffff;
}

.test-page .test-btn,
.test-page .consult-btn,
.workbook-page .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--accent-contrast);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  padding: 12px 20px;
  appearance: none;
  cursor: pointer;
  text-decoration: none;
}

.test-page .test-btn:hover,
.test-page .consult-btn:hover,
.workbook-page .share-btn:hover {
  background: var(--accent-hover);
  color: var(--accent-contrast);
}

.test-page .test-btn {
  display: flex;
  width: min(100%, 360px);
  margin: 14px auto 0;
}

.test-page .test-btn.is-hidden {
  display: none;
}

.test-page .test-result .consult-btn {
  display: flex;
  width: min(100%, 420px);
  margin: 16px auto 0;
}

.test-page .test-result {
  margin: 20px 0 30px;
  padding: 24px 18px;
  text-align: center;
}

.faq-page .container,
.tests-index .container,
.workbook-page .container,
.test-page .container {
  animation: fadeInUp 0.45s ease both;
}

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

@media (max-width: 980px) {
  .hero,
  .why,
  .prices,
  .reviews,
  .contacts,
  .faq {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .why-list,
  .prices-list,
  .reviews-list,
  .contacts-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 56px;
  }

  .header-nav {
    min-height: 56px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(84vw, 340px);
    padding: 52px 18px 20px;
    background: #111114;
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.46);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    transform: translateX(102%);
    opacity: 0;
    pointer-events: none;
    z-index: 103;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-overlay.open {
    display: block;
    opacity: 1;
  }

  .close-x {
    display: flex;
    position: absolute;
    top: 4px;
    right: 6px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .close-x svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    stroke-width: 2.8;
  }

  .burger {
    display: flex;
  }

  .site-link {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
  }

  .site-cta {
    margin-left: 0;
    justify-content: center;
  }

  .btn-main {
    width: 100%;
  }

  .ghost-link {
    width: 100%;
    justify-content: center;
  }

  .store .store-list,
  .tests-index .store-list {
    grid-template-columns: 1fr;
  }

  .faq-page .faq-title,
  .faq-page .faq-list,
  .faq-page .faq-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  .workbook-page .cover,
  .workbook-page .day,
  .workbook-page .final,
  .test-page .test-block {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
