:root {
  --navy: #103f85;
  --deep-navy: #082e66;
  --royal-blue: #1d5eae;
  --blue: #347dc1;
  --sky: #dcebfa;
  --ice: #f1f7fc;
  --paper: #ffffff;
  --off-white: #f8fafc;
  --charcoal: #202a35;
  --slate: #647181;
  --line: #dce5ee;
  --success: #38785b;
  --soft-success: #e7f2ec;
  --warm-accent: #c59648;
  --shadow: 0 24px 70px rgba(8, 46, 102, 0.14);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--off-white);
  font-family: Inter, Manrope, "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.modal-active {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--deep-navy);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.info-strip {
  padding: 0.62rem 1rem;
  background: var(--deep-navy);
  color: var(--sky);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid rgba(16, 63, 133, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 220px;
  min-height: 48px;
}

.brand-mark img {
  width: 210px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(8, 46, 102, 0.1));
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--deep-navy);
  font-size: 0.93rem;
  font-weight: 850;
}

.nav-links a,
.text-link,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover,
.site-footer a:hover,
.legal-link:hover {
  color: var(--royal-blue);
}

.offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--paper);
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(16, 63, 133, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.offer-button:hover {
  transform: translateY(-2px);
  background: var(--royal-blue);
  box-shadow: 0 18px 36px rgba(16, 63, 133, 0.3);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 0 auto;
  background: var(--deep-navy);
  transition: transform 180ms ease;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-lines::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(1px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-1px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-section {
  width: min(var(--max), calc(100% - 2rem));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3.2rem, 7vw, 6.5rem) 0 2rem;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 3rem -3rem auto auto;
  width: 56%;
  height: 58%;
  z-index: -2;
  background:
    linear-gradient(rgba(16, 63, 133, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 63, 133, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, transparent);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 5rem;
  width: 360px;
  height: 360px;
  z-index: -3;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 125, 193, 0.24), transparent 68%);
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 0.82rem;
  color: var(--royal-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-navy);
  line-height: 1.07;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Manrope, "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

h1 {
  max-width: 760px;
  font-size: 3.45rem;
}

h2 {
  font-size: 3.05rem;
}

h3 {
  font-size: 1.08rem;
  font-weight: 900;
}

p {
  margin: 1rem 0 0;
}

.hero-lede,
.section-heading p,
.split-section p,
.delivery-grid p,
.guarantee-section p,
.final-section p,
.safety-section p,
.caffeine-section p {
  max-width: 72ch;
  color: var(--slate);
  font-size: 1.05rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.45rem;
}

.chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.82rem;
  border: 1px solid rgba(16, 63, 133, 0.15);
  border-radius: 999px;
  background: var(--paper);
  color: var(--deep-navy);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--deep-navy);
  font-weight: 900;
}

.small-note,
.section-note {
  color: var(--slate);
  font-size: 0.92rem;
}

.hero-product {
  position: relative;
  isolation: isolate;
}

.hero-product img,
.wide-product img,
.guarantee-section img,
.final-section img {
  filter: drop-shadow(0 26px 42px rgba(8, 46, 102, 0.16));
}

.precision-ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(29, 94, 174, 0.2);
  border-radius: 50%;
}

.ring-one {
  inset: 8% 4% 10% 5%;
}

.ring-two {
  inset: 19% 14% 4% 18%;
  border-color: rgba(56, 120, 91, 0.22);
}

.snapshot-section,
.section,
.final-section,
.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.snapshot-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(16, 63, 133, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.snapshot-section article {
  min-height: 116px;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.snapshot-section article:last-of-type {
  border-right: 0;
}

.snapshot-section span,
.formula-card span,
.ingredient-card span,
.step-card span,
.option-label {
  color: var(--royal-blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.snapshot-section strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--deep-navy);
  line-height: 1.25;
}

.snapshot-section p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.85rem 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.9rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.25rem) 0;
}

.split-section,
.guarantee-section,
.caffeine-section,
.safety-section,
.final-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.image-panel {
  margin: 0;
  padding: 0.75rem;
  border: 1px solid rgba(16, 63, 133, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-panel img {
  border-radius: calc(var(--radius) - 2px);
}

figcaption {
  margin-top: 0.75rem;
  color: var(--slate);
  font-size: 0.84rem;
}

.inline-offer {
  margin-top: 1.5rem;
}

.formula-section,
.table-section,
.lifestyle-section,
.safety-section {
  border-top: 1px solid rgba(16, 63, 133, 0.1);
}

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

.pillar-grid,
.ingredient-grid,
.steps-layout,
.lifestyle-grid,
.pricing-grid,
.check-grid,
.review-prompts {
  display: grid;
  gap: 1rem;
}

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

.formula-card,
.ingredient-card,
.step-card,
.lifestyle-grid article,
.price-card,
.payment-panel,
.caution-panel,
.review-prompts article,
.check-grid li {
  border: 1px solid rgba(16, 63, 133, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
}

.formula-card,
.ingredient-card,
.step-card,
.lifestyle-grid article,
.payment-panel,
.caution-panel,
.review-prompts article {
  padding: 1.25rem;
}

.formula-card p,
.ingredient-card p,
.step-card p,
.lifestyle-grid p,
.payment-panel p,
.caution-panel p,
.review-prompts p,
.price-card p,
.price-card li,
.site-footer p {
  color: var(--slate);
  font-size: 0.96rem;
}

.wide-product {
  max-width: 520px;
  margin: 2.5rem auto 0;
}

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

.ingredient-card {
  min-height: 230px;
  background: linear-gradient(180deg, var(--paper), var(--ice));
}

.caffeine-card {
  border-color: rgba(197, 150, 72, 0.35);
  background: linear-gradient(180deg, #fff, #fff8ec);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(16, 63, 133, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
}

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

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--deep-navy);
  color: var(--paper);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.caffeine-section,
.offers-section,
.guarantee-section {
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius);
  color: var(--paper);
}

.caffeine-section {
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.offers-section {
  background: var(--deep-navy);
}

.guarantee-section {
  background: var(--navy);
}

.caffeine-section h2,
.caffeine-section h3,
.offers-section h2,
.offers-section h3,
.guarantee-section h2 {
  color: var(--paper);
}

.caffeine-section p,
.caffeine-section li,
.offers-section p,
.guarantee-section p {
  color: rgba(255, 255, 255, 0.78);
}

.caffeine-section .eyebrow,
.offers-section .eyebrow,
.guarantee-section .eyebrow {
  color: var(--sky);
}

.caffeine-section .caution-panel {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.caution-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.steps-layout {
  grid-template-columns: repeat(4, 1fr);
}

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

.lifestyle-grid {
  grid-template-columns: repeat(5, 1fr);
}

.lifestyle-grid article {
  min-height: 170px;
}

.offer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.highlighted-card,
.best-card {
  background: rgba(255, 255, 255, 0.13);
}

.option-label {
  align-self: flex-start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--deep-navy);
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 1rem;
}

.price-line strong {
  color: var(--paper);
  font-size: 2.4rem;
  line-height: 1;
}

.price-line span,
.total-line {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.price-card ul {
  margin: 1rem 0 1.3rem;
  padding-left: 1.1rem;
}

.price-card .offer-button,
.guarantee-section .offer-button {
  margin-top: auto;
  background: var(--paper);
  color: var(--deep-navy);
  box-shadow: none;
}

.price-card .offer-button:hover,
.guarantee-section .offer-button:hover {
  background: var(--sky);
}

.delivery-grid,
.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1rem;
  align-items: stretch;
}

.payment-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--soft-success);
}

.guarantee-section img,
.final-section img {
  max-height: 520px;
  margin: 0 auto;
  object-fit: contain;
}

.feedback-layout {
  grid-template-columns: 0.95fr 1fr;
  gap: 1.5rem;
}

.feedback-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.feedback-images img {
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius);
  object-fit: cover;
}

.review-prompts {
  grid-template-columns: 1fr;
}

.check-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 1rem 1rem 1rem 2.6rem;
  color: var(--deep-navy);
  font-weight: 850;
  position: relative;
}

.check-grid li::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
}

.safety-section {
  align-items: start;
}

.safety-section .caution-panel {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid rgba(16, 63, 133, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--deep-navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--royal-blue);
  font-size: 1.45rem;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.2rem;
  color: var(--slate);
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item button[aria-expanded="true"] + .faq-answer > p {
  padding-bottom: 1.2rem;
}

.final-section {
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 4rem 0 7rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.8fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 63, 133, 0.14);
}

.footer-logo {
  width: 220px;
  height: auto;
  margin-bottom: 1rem;
}

.site-footer h2 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer a,
.legal-link {
  display: block;
  min-height: 38px;
  color: var(--deep-navy);
  font-weight: 800;
}

.legal-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.88rem;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1rem max(0.75rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(16, 63, 133, 0.14);
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 -14px 34px rgba(8, 46, 102, 0.12);
  backdrop-filter: blur(16px);
}

.mobile-bar span {
  color: var(--deep-navy);
  font-size: 0.9rem;
  font-weight: 950;
}

.mobile-bar .offer-button {
  min-height: 44px;
  padding: 0.72rem 0.9rem;
}

dialog {
  width: min(710px, calc(100% - 2rem));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--charcoal);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(8, 46, 102, 0.58);
  backdrop-filter: blur(4px);
}

.modal-inner,
.exit-inner {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.2rem);
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--deep-navy);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.exit-modal {
  width: min(860px, calc(100% - 2rem));
}

.exit-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.exit-inner img {
  max-height: 330px;
  object-fit: contain;
}

:focus-visible {
  outline: 3px solid rgba(52, 125, 193, 0.65);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid rgba(16, 63, 133, 0.12);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 0.7rem;
  }

  .header-offer {
    justify-self: end;
  }

  .hero-section,
  .split-section,
  .guarantee-section,
  .caffeine-section,
  .safety-section,
  .final-section,
  .delivery-grid,
  .feedback-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-product {
    max-width: 600px;
    margin: 0 auto;
  }

  .snapshot-section,
  .pillar-grid,
  .ingredient-grid,
  .steps-layout,
  .lifestyle-grid,
  .pricing-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .snapshot-section article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .brand-mark {
    width: 172px;
  }

  .brand-mark img {
    width: 166px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

  .nav-shell,
  .hero-section,
  .snapshot-section,
  .section,
  .final-section,
  .site-footer {
    width: min(100% - 1rem, var(--max));
  }

  .nav-shell {
    min-height: 66px;
    grid-template-columns: auto auto;
  }

  .brand-mark {
    width: 138px;
  }

  .brand-mark img {
    width: 134px;
  }

  .header-offer {
    display: none;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-section {
    padding-top: 2.4rem;
  }

  .hero-actions,
  .hero-actions .offer-button,
  .text-link,
  .inline-offer {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .snapshot-section,
  .pillar-grid,
  .ingredient-grid,
  .steps-layout,
  .lifestyle-grid,
  .pricing-grid,
  .check-grid,
  .footer-grid,
  .feedback-images {
    grid-template-columns: 1fr;
  }

  .snapshot-section article {
    min-height: 88px;
    border-right: 0;
  }

  .section {
    padding: 3.7rem 0;
  }

  .offers-section,
  .guarantee-section,
  .final-section,
  .caffeine-section {
    padding: 1.2rem;
  }

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

  .offer-intro img {
    max-width: 220px;
  }

  .price-line strong {
    font-size: 2.1rem;
  }

  .feedback-images img {
    min-height: 220px;
  }

  .mobile-bar {
    display: grid;
  }

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

  .exit-inner img {
    max-height: 250px;
    margin: 0 auto;
  }
}

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