:root {
  --ink: #070907;
  --ink-soft: #11140f;
  --ink-card: #171a14;
  --cream: #f4f1e8;
  --paper: #faf8f1;
  --yellow: #f2d000;
  --yellow-soft: #ffe76a;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(10, 12, 8, 0.12);
  --muted-dark: #9da197;
  --muted-light: #62665d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body,
a,
button {
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--yellow);
  color: #0a0b08;
  padding: 10px 14px;
  font-weight: 750;
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 9, 7, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  border-radius: 10px;
  background: var(--yellow);
  color: #090b08;
  box-shadow: 0 12px 40px rgba(242, 208, 0, 0.18);
  font-family: var(--font-geist-mono), monospace;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.16em;
  padding-right: 3px;
  transform: rotate(-3deg);
}

.brand-mark span:last-child {
  transform: translateY(4px);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: #969b91;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #b7bbb2;
  font-size: 13px;
  font-weight: 600;
}

.header-nav a,
.text-link,
.site-footer a {
  transition: color 160ms ease;
}

.header-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-link {
  color: #d5d8d1;
  font-size: 13px;
  font-weight: 650;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button svg,
.service-link svg,
.inline-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.button:hover,
.service-card:hover,
.inline-link:hover {
  transform: translateY(-2px);
}

.button:hover svg,
.service-card:hover .service-link svg,
.inline-link:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-color: rgba(242, 208, 0, 0.36);
  background: rgba(242, 208, 0, 0.07);
  color: var(--yellow-soft);
  font-size: 12px;
}

.button-small:hover {
  border-color: var(--yellow);
  background: rgba(242, 208, 0, 0.13);
}

.button-primary {
  background: var(--yellow);
  color: #080a07;
  box-shadow: 0 18px 55px rgba(242, 208, 0, 0.17);
}

.button-primary:hover {
  background: #ffe120;
  box-shadow: 0 22px 65px rgba(242, 208, 0, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #f4f5f1;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary > svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 170px 0 0;
  background:
    radial-gradient(circle at 74% 39%, rgba(113, 126, 22, 0.12), transparent 24%),
    linear-gradient(135deg, #060806 0%, #0a0c08 62%, #080a07 100%);
}

.hero-grid,
.closing-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: 140px;
  right: 5%;
  border: 1px solid rgba(242, 208, 0, 0.09);
  box-shadow: inset 0 0 120px rgba(242, 208, 0, 0.025);
}

.hero-glow-two {
  width: 240px;
  height: 240px;
  top: 310px;
  right: 14%;
  background: rgba(242, 208, 0, 0.035);
  filter: blur(70px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-soft);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--yellow);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.6rem, 6.1vw, 6.15rem);
  font-weight: 580;
  letter-spacing: -0.074em;
  line-height: 0.93;
}

.hero h1 em {
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-text {
  max-width: 610px;
  margin: 30px 0 0;
  color: #aeb2a9;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero-proof {
  margin-top: 56px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.hero-proof div {
  display: grid;
  gap: 5px;
  padding-right: 24px;
  border-right: 1px solid var(--line-dark);
}

.hero-proof div + div {
  padding-left: 24px;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: #fff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: #7f847b;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin-left: auto;
}

.visual-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-one {
  inset: 8%;
  animation: slow-spin 34s linear infinite;
}

.orbit-two {
  inset: 20%;
  border-style: dashed;
  border-color: rgba(242, 208, 0, 0.17);
  animation: slow-spin-reverse 24s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 17%;
  left: 8%;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(242, 208, 0, 0.9);
}

.orbit-two::before {
  top: auto;
  left: auto;
  right: 10%;
  bottom: 16%;
  width: 6px;
  height: 6px;
}

.visual-core {
  position: absolute;
  inset: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(242, 208, 0, 0.27);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(145deg, rgba(36, 40, 29, 0.98), rgba(12, 15, 10, 0.98));
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.018),
    0 30px 90px rgba(0, 0, 0, 0.68),
    inset 0 0 70px rgba(242, 208, 0, 0.045);
}

.visual-core .brand-mark {
  width: 52px;
  height: 52px;
  margin: 11px 0 13px;
  border-radius: 13px;
  font-size: 16px;
}

.visual-core > strong {
  font-size: 18px;
  letter-spacing: -0.045em;
}

.visual-core > span:last-child {
  margin-top: 4px;
  color: #878d82;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.core-topline {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #98a08f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9dde34;
  box-shadow: 0 0 10px rgba(157, 222, 52, 0.8);
}

.float-card {
  position: absolute;
  z-index: 3;
  min-width: 188px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(16, 19, 14, 0.88);
  padding: 13px 15px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  animation: float-card 5.5s ease-in-out infinite;
}

.float-card-courses {
  top: 6%;
  left: 4%;
}

.float-card-store {
  top: 22%;
  right: -3%;
  animation-delay: -1.8s;
}

.float-card-solutions {
  bottom: 10%;
  left: 9%;
  animation-delay: -3.4s;
}

.float-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: rgba(242, 208, 0, 0.12);
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 800;
}

.float-card div {
  display: grid;
  gap: 3px;
}

.float-card strong {
  font-size: 12px;
}

.float-card small {
  color: #858b80;
  font-size: 9px;
}

.visual-tag {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(7, 9, 7, 0.82);
  color: #858a81;
  padding: 8px 12px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visual-tag-fast {
  right: 4%;
  bottom: 22%;
}

.visual-tag-local {
  top: 42%;
  left: -3%;
}

.discovery-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--line-dark);
}

.discovery-strip > span {
  color: #6f746b;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.discovery-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 34px;
  color: #a3a79e;
  font-size: 11px;
  font-weight: 600;
}

.discovery-items span {
  position: relative;
}

.discovery-items span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(242, 208, 0, 0.7);
}

.solutions-section,
.experience-section {
  background: var(--paper);
  color: #11130f;
}

.solutions-section {
  padding: 125px 0 135px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.dark-eyebrow {
  color: #6b6f65;
}

.section-heading h2,
.experience-copy h2,
.closing-copy h2 {
  margin: 0;
  font-size: clamp(2.55rem, 4.5vw, 4.45rem);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.section-heading > p,
.experience-copy > p {
  max-width: 420px;
  margin: 0 0 3px;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.3);
  padding: 28px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: #fff;
  box-shadow: 0 22px 60px rgba(18, 20, 15, 0.09);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ece9df;
  color: #1b1e17;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  color: #a0a398;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.service-card h3 {
  margin: 62px 0 15px;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.service-card p {
  margin: 0;
  color: #666a61;
  font-size: 13px;
  line-height: 1.65;
}

.service-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  padding-top: 19px;
  color: #181a16;
  font-size: 11px;
  font-weight: 760;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

.experience-section {
  padding: 0 0 130px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 120px;
  border-top: 1px solid var(--line-light);
  padding-top: 115px;
}

.experience-copy > p {
  margin-top: 28px;
}

.inline-link {
  width: fit-content;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid #b1a001;
  padding-bottom: 6px;
  color: #26291f;
  font-size: 13px;
  font-weight: 750;
  transition: transform 160ms ease;
}

.steps-list {
  display: grid;
}

.steps-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 22px;
  border-top: 1px solid var(--line-light);
  padding: 29px 0;
}

.steps-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.steps-list article > span {
  color: #9b9f95;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.steps-list h3 {
  margin: -5px 0 8px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.steps-list p {
  margin: 0;
  color: #70746b;
  font-size: 13px;
  line-height: 1.6;
}

.closing-section {
  background: var(--paper);
  padding: 0 0 75px;
}

.closing-card {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  overflow: hidden;
  border-radius: 3px;
  background:
    radial-gradient(circle at 80% 30%, rgba(242, 208, 0, 0.08), transparent 30%),
    #0b0e0a;
  padding: 65px 74px;
  color: #fff;
}

.closing-grid {
  opacity: 0.25;
  mask-image: linear-gradient(90deg, black, transparent);
}

.closing-copy,
.closing-card > .button {
  position: relative;
  z-index: 2;
}

.closing-copy {
  max-width: 680px;
}

.closing-copy h2 {
  max-width: 650px;
  font-size: clamp(2.5rem, 4.3vw, 4.25rem);
}

.closing-copy > p:last-child {
  margin: 24px 0 0;
  color: #969c91;
  font-size: 14px;
}

.closing-card > .button {
  flex-shrink: 0;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: #080a08;
}

.footer-inner {
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner > p {
  color: #70756c;
  font-size: 10px;
}

.footer-inner > div {
  display: flex;
  gap: 25px;
  color: #9da198;
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #1da851;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease, background 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  background: #25bd60;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

a:focus-visible {
  outline: 3px solid var(--yellow-soft);
  outline-offset: 4px;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes slow-spin-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1050px) {
  .header-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 135px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 7vw, 5.2rem);
  }

  .hero-visual {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid {
    gap: 75px;
  }

  .closing-card {
    padding-inline: 52px;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-copy small,
  .header-actions .text-link {
    display: none;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .button-small svg {
    display: none;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 0;
  }

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

  .hero h1 {
    max-width: 620px;
  }

  .hero-text {
    max-width: 570px;
  }

  .hero-visual {
    width: min(100%, 460px);
    margin: 15px auto 10px;
    transform: none;
  }

  .discovery-strip {
    position: relative;
    min-height: auto;
    margin-top: 10px;
    align-items: flex-start;
    padding: 28px 0 32px;
  }

  .discovery-items {
    max-width: 380px;
    gap: 15px 30px;
  }

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

  .section-heading {
    gap: 30px;
  }

  .experience-grid {
    gap: 60px;
  }

  .closing-card {
    min-height: 420px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .footer-inner {
    padding: 34px 0;
    flex-wrap: wrap;
  }

  .footer-inner > p {
    order: 3;
    flex-basis: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .button-small {
    max-width: 135px;
    text-align: center;
    line-height: 1.15;
  }

  .hero {
    padding-top: 116px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-text {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 40px;
  }

  .hero-proof div {
    padding-right: 10px;
  }

  .hero-proof div + div {
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-proof span {
    font-size: 7px;
  }

  .hero-visual {
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .float-card {
    min-width: 150px;
    padding: 10px 12px;
  }

  .float-card strong {
    font-size: 10px;
  }

  .float-card small {
    font-size: 7px;
  }

  .float-icon {
    width: 30px;
    height: 30px;
  }

  .discovery-strip {
    display: grid;
  }

  .discovery-items {
    justify-content: flex-start;
    padding-left: 17px;
  }

  .solutions-section {
    padding: 90px 0 95px;
  }

  .section-heading h2,
  .experience-copy h2,
  .closing-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 335px;
  }

  .experience-section {
    padding-bottom: 95px;
  }

  .experience-grid {
    padding-top: 90px;
  }

  .steps-list article {
    grid-template-columns: 45px 1fr;
  }

  .closing-section {
    padding-bottom: 28px;
  }

  .closing-card {
    width: calc(100% - 28px);
    min-height: 470px;
    padding: 42px 28px;
  }

  .closing-card > .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@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;
  }
}
