:root {
  color-scheme: light;
  --page: #f7f2eb;
  --page-mid: #efe7dc;
  --page-end: #e8ddd0;
  --ink: #1d1b18;
  --ink-soft: #34312c;
  --panel: rgba(255, 252, 247, 0.9);
  --panel-light: #fffaf2;
  --chrome: rgba(255, 251, 244, 0.86);
  --gold: #a8753c;
  --gold-light: #7f572d;
  --gold-muted: #9a7650;
  --copper: #93644c;
  --blue: #294b68;
  --blue-light: #4d6b83;
  --cream: #28241f;
  --muted: #69645d;
  --line: rgba(150, 103, 56, 0.3);
  --line-soft: rgba(45, 40, 34, 0.12);
  --shadow: rgba(79, 55, 32, 0.22);
  --blue-glow: rgba(41, 75, 104, 0.12);
  --copper-glow: rgba(147, 100, 76, 0.08);
  --texture: rgba(86, 63, 40, 0.035);
  --closing-start: rgba(41, 75, 104, 0.18);
  --closing-end: rgba(255, 250, 242, 0.96);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #0a0c0d;
  --page-mid: #0f1213;
  --page-end: #090b0c;
  --ink: #0b0d0e;
  --ink-soft: #111516;
  --panel: rgba(18, 22, 23, 0.92);
  --panel-light: #1c2020;
  --chrome: rgba(17, 21, 22, 0.92);
  --gold: #d6b17e;
  --gold-light: #f0d9b2;
  --gold-muted: #a78661;
  --blue-light: #7791a6;
  --cream: #f2e8d8;
  --muted: #aaa397;
  --line: rgba(224, 192, 144, 0.2);
  --line-soft: rgba(242, 232, 216, 0.1);
  --shadow: rgba(0, 0, 0, 0.45);
  --blue-glow: rgba(41, 75, 104, 0.2);
  --copper-glow: rgba(147, 100, 76, 0.1);
  --texture: rgba(255, 255, 255, 0.012);
  --closing-start: rgba(41, 75, 104, 0.38);
  --closing-end: rgba(20, 25, 26, 0.96);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 12%, var(--blue-glow), transparent 28rem),
    radial-gradient(circle at 12% 50%, var(--copper-glow), transparent 30rem),
    linear-gradient(135deg, var(--page) 0%, var(--page-mid) 48%, var(--page-end) 100%);
  color: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: repeating-linear-gradient(105deg, var(--texture) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-decoration: none;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 10;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  background: var(--ink);
  color: var(--gold-light);
  transform: translateY(-150%);
}

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

.site-frame {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: auto;
  aspect-ratio: 480 / 483;
  border: 1px solid rgba(240, 217, 178, 0.62);
  border-radius: 17px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.footer-brand {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(168, 117, 60, 0.09);
}

.theme-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.theme-icon-sun,
.theme-label-dark {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun,
html[data-theme="dark"] .theme-label-dark {
  display: inline;
}

html[data-theme="dark"] .theme-icon-moon,
html[data-theme="dark"] .theme-label-light {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 48px);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--gold-light);
}

.desktop-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
}

.desktop-nav .nav-cta:hover {
  border-color: var(--gold);
  background: rgba(214, 177, 126, 0.08);
}

.mobile-menu {
  display: none;
  position: relative;
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-icon i {
  display: block;
  height: 1px;
  background: var(--gold-light);
  transition: transform 180ms ease;
}

.mobile-menu[open] .menu-icon i:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.mobile-menu[open] .menu-icon i:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 5;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--chrome);
  box-shadow: 0 18px 40px var(--shadow);
}

.mobile-menu nav a {
  padding: 13px 12px;
  border-radius: 9px;
  color: var(--muted);
}

.mobile-menu nav a:hover {
  background: rgba(214, 177, 126, 0.08);
  color: var(--gold-light);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 9vw, 136px);
  min-height: 680px;
  padding: 74px 0 94px;
}

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

.eyebrow,
.section-label,
.card-top,
.card-caption,
.cloudflare-note {
  color: var(--gold-muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
}

.eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  max-width: 600px;
  margin-bottom: 26px;
  color: var(--cream);
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h1 strong {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-description {
  max-width: 410px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.button-primary {
  background: linear-gradient(105deg, #c79663, #edcf9d 52%, #bc895a);
  box-shadow: 0 12px 28px rgba(183, 133, 87, 0.2);
  color: #15110c;
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(183, 133, 87, 0.32);
}

.button-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.button-outline:hover {
  background: rgba(214, 177, 126, 0.09);
}

.text-link {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--gold);
  transition: transform 180ms ease;
}

.text-link:hover {
  color: white;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 62px;
  color: var(--muted);
}

.signature-v {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1rem;
}

.hero-signature span:last-child {
  display: grid;
  gap: 4px;
}

.hero-signature strong {
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
}

.hero-signature small {
  font-size: 0.68rem;
}

.hero-visual {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 479 / 179;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  box-shadow: 22px 30px 60px var(--shadow), 0 0 0 7px rgba(168, 117, 60, 0.05);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, rgba(242, 220, 183, 0.14), transparent 25%, transparent 75%, rgba(24, 57, 81, 0.23));
  mix-blend-mode: screen;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 479 / 179;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
}

.frame-corner {
  position: absolute;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-color: var(--gold-light);
  border-style: solid;
  opacity: 0.82;
}

.frame-corner-top {
  top: 15px;
  left: 15px;
  border-width: 1px 0 0 1px;
}

.frame-corner-bottom {
  right: 15px;
  bottom: 15px;
  border-width: 0 1px 1px 0;
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  color: var(--gold-muted);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-visual figcaption span:first-child {
  color: var(--gold-light);
}

.intro-section {
  padding: 45px 0 64px;
  border-top: 1px solid var(--line-soft);
}

.section-label {
  display: flex;
  justify-content: space-between;
  width: min(100%, 220px);
  margin-bottom: 48px;
}

.section-label span:first-child {
  color: var(--gold-light);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  align-items: end;
  gap: clamp(40px, 10vw, 160px);
}

.split-heading h2,
.brand-copy-large h2,
.closing-content h2 {
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(2.6rem, 4.7vw, 5.4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.split-heading h2 em,
.brand-copy-large h2 em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}

.split-heading p,
.brand-copy-large > p {
  max-width: 370px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 150px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.feature-card {
  min-height: 380px;
  padding: 31px clamp(24px, 3.2vw, 43px) 34px;
  background: var(--panel);
  transition: background 220ms ease, transform 220ms ease;
}

.feature-card:hover {
  position: relative;
  z-index: 1;
  background: var(--panel-light);
  transform: translateY(-5px);
}

.feature-card-primary {
  background:
    linear-gradient(145deg, var(--blue-glow), transparent 60%),
    var(--panel);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}

.card-symbol {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}

.compass-symbol {
  color: var(--blue-light);
  font-family: var(--body);
  font-size: 1.05rem;
}

.feature-card h3 {
  margin-bottom: 22px;
  color: var(--cream);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.feature-card h3 em {
  color: var(--gold-light);
  font-style: normal;
}

.feature-card p {
  max-width: 260px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.card-rule {
  width: 100%;
  height: 1px;
  margin-top: auto;
  background: var(--line);
}

.card-caption {
  display: block;
  padding-top: 15px;
  color: var(--gold-muted);
  font-size: 0.56rem;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 10vw, 160px);
  padding-bottom: 150px;
}

.brand-image-wrap {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 480 / 483;
  margin: 0 auto;
}

.brand-image-wrap::after {
  position: absolute;
  z-index: -1;
  inset: 13% -9% -8% 13%;
  border-radius: 50%;
  background: var(--blue-glow);
  content: "";
  filter: blur(55px);
}

.brand-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 483;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 25px 60px var(--shadow);
  object-fit: contain;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: -15px;
}

.orbit-two {
  inset: 21px -29px -29px 21px;
  border-color: rgba(119, 145, 166, 0.22);
}

.brand-copy-large {
  max-width: 550px;
}

.brand-copy-large .eyebrow {
  margin-bottom: 30px;
}

.brand-copy-large h2 {
  margin-bottom: 30px;
  font-size: clamp(2.7rem, 4.2vw, 4.75rem);
}

.brand-copy-large > p {
  margin-bottom: 42px;
}

.spec-list {
  border-top: 1px solid var(--line-soft);
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.spec-list strong {
  color: var(--cream);
  font-weight: 500;
}

.closing-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 75px clamp(28px, 7vw, 96px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 177, 126, 0.2), transparent 30%),
    linear-gradient(120deg, var(--closing-start), var(--closing-end) 58%);
}

.closing-section::before,
.closing-section::after {
  position: absolute;
  border: 1px solid rgba(214, 177, 126, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.closing-section::before {
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -275px;
}

.closing-section::after {
  width: 245px;
  height: 245px;
  right: -64px;
  bottom: -145px;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.closing-content .eyebrow {
  margin-bottom: 25px;
}

.closing-content h2 {
  max-width: 670px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
}

.closing-content > p:not(.eyebrow):not(.cloudflare-note) {
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cloudflare-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 32px 0 0;
  color: rgba(240, 217, 178, 0.64);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.cloudflare-note span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px var(--gold);
}

.closing-seal {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  flex: 0 0 170px;
  border: 1px solid var(--line);
  border-radius: 50%;
  outline: 1px solid var(--line-soft);
  outline-offset: 9px;
  transform: rotate(-9deg);
}

.closing-seal span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.7;
}

.closing-seal small {
  position: absolute;
  bottom: 25px;
  color: var(--gold-muted);
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 90px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-brand span {
  margin-left: 3px;
  color: var(--gold-muted);
  font-family: var(--body);
  font-size: 0.5rem;
  vertical-align: top;
}

@media (max-width: 900px) {
  .site-frame {
    width: min(100% - 32px, 720px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
    padding-top: 74px;
  }

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

  .hero-visual {
    width: 100%;
    margin-left: 0;
  }

  .split-heading,
  .brand-section {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 30px;
  }

  .split-heading p {
    max-width: 520px;
  }

  .feature-grid {
    margin-bottom: 105px;
  }

  .brand-section {
    gap: 70px;
    padding-bottom: 105px;
  }

  .brand-image-wrap {
    width: min(100%, 390px);
  }
}

@media (max-width: 680px) {
  .site-frame {
    width: min(100% - 28px, 500px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    gap: 55px;
    padding: 60px 0 80px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.9rem);
  }

  .hero-description {
    font-size: 0.88rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-signature {
    margin-top: 48px;
  }

  .image-frame {
    aspect-ratio: 479 / 179;
  }

  .frame-corner {
    width: 26px;
    height: 26px;
  }

  .frame-corner-top {
    top: 10px;
    left: 10px;
  }

  .frame-corner-bottom {
    right: 10px;
    bottom: 10px;
  }

  .intro-section {
    padding: 35px 0 50px;
  }

  .section-label {
    margin-bottom: 36px;
  }

  .split-heading h2,
  .brand-copy-large h2,
  .closing-content h2 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 90px;
  }

  .feature-card {
    min-height: 330px;
  }

  .card-top {
    margin-bottom: 55px;
  }

  .brand-section {
    gap: 60px;
    padding-bottom: 90px;
  }

  .brand-image-wrap {
    width: min(100%, 300px);
  }

  .brand-copy-large > p {
    margin-bottom: 32px;
  }

  .spec-list div {
    font-size: 0.58rem;
  }

  .closing-section {
    align-items: flex-start;
    flex-direction: column;
    min-height: 530px;
    margin-bottom: 45px;
    padding: 48px 24px 54px;
  }

  .closing-seal {
    align-self: flex-end;
    width: 125px;
    height: 125px;
    flex-basis: 125px;
  }

  .closing-seal span {
    font-size: 3.8rem;
  }

  .closing-seal small {
    bottom: 17px;
    font-size: 0.36rem;
  }

  .cloudflare-note {
    align-items: flex-start;
    max-width: 250px;
    line-height: 1.55;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 26px 0;
  }

  .site-footer a {
    margin-top: 8px;
  }
}

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

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