:root {
  color-scheme: light;
  --sun: #ffd43a;
  --sun-deep: #ffb30f;
  --tomato: #ef4525;
  --tomato-deep: #c92f13;
  --cream: #fff5d4;
  --paper: #fffdf5;
  --ink: #361506;
  --muted: #6f4a35;
  --line: rgba(54, 21, 6, 0.14);
  --soft-radius: 32px;
  --pill-radius: 999px;
  --shadow: 0 24px 70px rgba(103, 53, 4, 0.16);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible {
  outline: 4px solid var(--ink);
  outline-offset: 5px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

p {
  color: var(--muted);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 72px;
  margin-inline: auto;
  gap: 24px;
}

.wordmark {
  width: max-content;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a,
.footer-links a,
.text-link,
.checksum-link {
  position: relative;
}

.nav-links a::after,
.footer-links a::after,
.text-link::after,
.checksum-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.footer-links a:hover::after,
.text-link:hover::after,
.checksum-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  justify-self: end;
  padding: 13px 20px;
  color: var(--paper);
  background: var(--tomato);
  border: 2px solid var(--ink);
  border-radius: var(--pill-radius);
  box-shadow: 0 5px 0 var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-download-short {
  display: none;
}

.nav-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--ink);
}

.nav-download:active,
.button:active {
  transform: translateY(2px) scale(0.99);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 255, 255, 0.58), transparent 25%),
    linear-gradient(180deg, #ffe56f 0%, var(--sun) 58%, #ffc622 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(131, 74, 0, 0.08) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 100%;
  margin-inline: auto;
  padding-top: 88px;
  padding-bottom: 64px;
  gap: 56px;
}

.hero-copy {
  align-self: center;
  max-width: 590px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 7vw, 7.3rem);
  font-weight: 950;
}

.hero-copy > p {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 3px solid var(--ink);
  border-radius: var(--pill-radius);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button-primary {
  color: var(--paper);
  background: var(--tomato);
  box-shadow: 0 7px 0 var(--ink);
}

.button-primary:hover,
.button-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 var(--ink);
}

.text-link,
.checksum-link {
  width: max-content;
  font-weight: 900;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
}

.sun-disc {
  position: absolute;
  width: min(50vw, 620px);
  aspect-ratio: 1;
  background: rgba(255, 248, 188, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(45vw, 580px);
  filter: drop-shadow(0 30px 24px rgba(129, 62, 0, 0.18));
  animation: hero-float 5.5s ease-in-out infinite;
}

.balloon,
.story-balloon,
.closing-balloon {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 14px 10px rgba(133, 35, 7, 0.14));
  animation: balloon-float 6s ease-in-out infinite;
}

.balloon-one {
  top: 16%;
  left: 49%;
  width: 78px;
}

.balloon-two {
  right: 4%;
  bottom: 24%;
  width: 112px;
  animation-delay: -1.7s;
}

.balloon-three {
  top: 28%;
  right: 1%;
  width: 52px;
  animation-delay: -3.1s;
}

.hero-cloud {
  position: absolute;
  z-index: 1;
  width: 320px;
  height: 94px;
  background: rgba(255, 253, 240, 0.82);
  border-radius: var(--pill-radius);
  filter: blur(1px);
}

.hero-cloud::before,
.hero-cloud::after {
  position: absolute;
  bottom: 16px;
  content: "";
  background: inherit;
  border-radius: 50%;
}

.hero-cloud::before {
  left: 48px;
  width: 120px;
  height: 120px;
}

.hero-cloud::after {
  right: 38px;
  width: 150px;
  height: 150px;
}

.hero-cloud-one {
  top: 20%;
  left: -120px;
}

.hero-cloud-two {
  right: 16%;
  bottom: 12%;
  transform: scale(0.72);
}

.hero-hills {
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: -90px;
  left: -8%;
  height: 220px;
  background: #eaa919;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.54;
}

.story {
  padding-block: 150px 120px;
}

.story-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.story-heading h2,
.features > h2,
.download-copy h2,
.closing h2,
.portrait-copy h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 950;
}

.story-heading p {
  max-width: 500px;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.story-stage {
  position: relative;
  min-height: 680px;
  margin-top: 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 226, 83, 0.48), transparent 47%),
    var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--soft-radius);
}

.story-stage::before,
.story-stage::after {
  position: absolute;
  content: "";
  border: 2px dashed rgba(239, 69, 37, 0.26);
  border-radius: 50%;
}

.story-stage::before {
  inset: 90px 23%;
}

.story-stage::after {
  inset: 170px 32%;
}

.story-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 350px;
  height: 430px;
  place-items: center;
  transform: translate(-50%, -50%);
}

.story-orbit img {
  width: 300px;
  filter: drop-shadow(0 22px 18px rgba(116, 56, 2, 0.16));
}

.story-note {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 220px;
  gap: 8px;
}

.story-note strong {
  color: var(--tomato);
  font-size: 2.2rem;
  line-height: 1;
}

.story-note span {
  color: var(--muted);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.story-note-pop {
  top: 26%;
  left: 7%;
}

.story-note-float {
  top: 13%;
  right: 8%;
}

.story-note-explore {
  right: 9%;
  bottom: 14%;
}

.story-balloon-one {
  bottom: 14%;
  left: 20%;
  width: 72px;
}

.story-balloon-two {
  top: 8%;
  left: 39%;
  width: 46px;
  animation-delay: -2s;
}

.portrait-section {
  padding-block: 100px;
  overflow: hidden;
  background: var(--sun);
}

.portrait-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 90px;
}

.phone-scene {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
}

.phone-scene::before {
  position: absolute;
  width: min(65vw, 700px);
  aspect-ratio: 1;
  content: "";
  background: rgba(255, 249, 214, 0.58);
  border-radius: 50%;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(380px, 78vw);
  padding: 14px;
  background: var(--ink);
  border: 4px solid #0f0804;
  border-radius: 48px;
  box-shadow: 0 34px 70px rgba(96, 40, 0, 0.3);
  transform: rotate(-3deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 25px;
  left: 50%;
  width: 70px;
  height: 7px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--pill-radius);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fff0a3, #ffc620);
  border-radius: 34px;
}

.phone-screen::after {
  position: absolute;
  right: -20%;
  bottom: -28%;
  left: -20%;
  height: 48%;
  content: "";
  background: #e6a818;
  border-radius: 50% 50% 0 0;
}

.phone-logo {
  position: relative;
  z-index: 2;
  width: 78%;
  filter: drop-shadow(0 16px 12px rgba(103, 46, 0, 0.18));
}

.phone-screen p {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-balloon {
  position: absolute;
  z-index: 1;
}

.phone-balloon-one {
  top: 18%;
  right: 9%;
  width: 72px;
}

.phone-balloon-two {
  bottom: 22%;
  left: 7%;
  width: 48px;
}

.portrait-copy {
  max-width: 500px;
}

.portrait-copy h2 {
  margin-bottom: 28px;
}

.portrait-copy p {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 1.12rem;
}

.features {
  padding-block: 140px;
}

.features > h2 {
  max-width: 900px;
  margin-bottom: 70px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.feature-grid article {
  border-radius: var(--soft-radius);
}

.feature-visual {
  position: relative;
  display: grid;
  grid-row: 1 / 3;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, #ffe56d, var(--sun-deep));
  border: 2px solid var(--line);
}

.feature-visual::before {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  content: "";
  background: rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.feature-visual > img:first-child {
  position: relative;
  z-index: 2;
  width: min(440px, 75%);
}

.feature-balloon {
  position: absolute;
  z-index: 3;
  top: 12%;
  right: 9%;
  width: 80px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.feature-card p {
  max-width: 460px;
  margin-bottom: 0;
}

.feature-portrait {
  background: var(--cream);
  border: 2px solid var(--line);
}

.mini-cat {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  place-items: center;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 950;
}

.feature-worlds {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--tomato);
  border: 2px solid var(--ink);
}

.feature-worlds h3,
.feature-worlds p {
  position: relative;
  z-index: 2;
  color: var(--paper);
}

.world-orbit {
  position: absolute;
  top: -90px;
  right: -50px;
  width: 250px;
  height: 250px;
  border: 44px solid rgba(255, 212, 58, 0.28);
  border-radius: 50%;
}

.download-section {
  padding-block: 140px;
  background: var(--cream);
}

.download-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.download-copy h2 {
  margin-bottom: 24px;
}

.download-copy > p {
  max-width: 520px;
  margin-bottom: 44px;
  font-size: 1.1rem;
}

.release-facts {
  margin: 0;
}

.release-facts > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: baseline;
  padding-block: 18px;
  border-bottom: 2px solid var(--line);
}

.release-facts dt {
  color: var(--muted);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.release-facts dd {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 950;
}

.download-panel {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 72px 56px 46px;
  color: var(--paper);
  background: var(--tomato);
  border: 3px solid var(--ink);
  border-radius: var(--soft-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.download-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 0%, rgba(255, 212, 58, 0.3), transparent 42%);
}

.download-panel > img {
  position: absolute;
  top: -4px;
  width: 112px;
}

.button-download {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  color: var(--tomato-deep);
  background: var(--paper);
  box-shadow: 0 7px 0 var(--ink);
  font-size: 1.12rem;
}

.download-panel p {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin: 26px auto 14px;
  color: var(--paper);
}

.checksum-link {
  position: relative;
  z-index: 2;
  color: var(--paper);
  font-size: 0.86rem;
}

.closing {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 105%, rgba(255, 212, 58, 0.45), transparent 35%),
    var(--tomato);
}

.closing::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 760px;
  align-items: center;
  flex-direction: column;
  margin-inline: auto;
  padding-top: 105px;
  text-align: center;
}

.closing h2 {
  margin-bottom: 20px;
  color: var(--paper);
}

.closing p {
  margin-bottom: 28px;
  color: var(--paper);
  font-size: 1.08rem;
}

.button-light {
  position: relative;
  z-index: 3;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 7px 0 var(--ink);
}

.button-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 var(--ink);
}

.closing-inner > img {
  position: absolute;
  bottom: -320px;
  width: 540px;
  filter: drop-shadow(0 24px 24px rgba(95, 17, 0, 0.25));
}

.closing-balloon-one {
  top: 18%;
  left: 10%;
  width: 100px;
  opacity: 0.24;
}

.closing-balloon-two {
  top: 12%;
  right: 9%;
  width: 140px;
  opacity: 0.2;
  animation-delay: -2.6s;
}

.site-footer {
  color: var(--paper);
  background: var(--tomato-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 100px;
  margin-inline: auto;
  gap: 26px;
}

.footer-wordmark,
.footer-links a,
.footer-inner p {
  color: var(--paper);
}

.footer-inner p {
  justify-self: end;
  margin: 0;
  font-size: 0.86rem;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes balloon-float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-22px) rotate(3deg);
  }
}

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

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 8vw, 5.5rem);
  }

  .hero-art {
    min-height: 520px;
  }

  .story-heading,
  .portrait-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .story-heading,
  .download-grid {
    gap: 44px;
  }

  .story-stage {
    min-height: 760px;
  }

  .story-note-float {
    right: 4%;
  }

  .portrait-grid {
    gap: 50px;
  }

  .portrait-copy {
    max-width: 700px;
    padding-bottom: 30px;
  }

  .phone-scene {
    min-height: 720px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .feature-visual {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 520px;
  }

  .download-panel {
    min-height: 450px;
    margin-top: 50px;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .nav-shell,
  .hero-inner,
  .footer-inner,
  .closing-inner {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .nav-shell {
    min-height: 68px;
    gap: 12px;
  }

  .wordmark {
    font-size: 1.28rem;
  }

  .nav-download {
    padding: 10px 14px;
    font-size: 0.76rem;
    box-shadow: 0 4px 0 var(--ink);
  }

  .nav-download-wide {
    display: none;
  }

  .nav-download-short {
    display: inline;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 88px;
    padding-bottom: 60px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    text-align: center;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 12vw, 3.5rem);
    letter-spacing: -0.055em;
  }

  .hero-copy > p {
    max-width: 430px;
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    min-height: 330px;
  }

  .hero-logo {
    width: min(80vw, 330px);
  }

  .sun-disc {
    width: 330px;
  }

  .balloon-one {
    top: 13%;
    left: 7%;
    width: 52px;
  }

  .balloon-two {
    right: -20px;
    bottom: 12%;
    width: 80px;
  }

  .balloon-three,
  .hero-cloud-two {
    display: none;
  }

  .button {
    width: 100%;
  }

  .text-link {
    margin-inline: auto;
  }

  .story,
  .features,
  .download-section {
    padding-block: 92px;
  }

  .story-heading {
    gap: 26px;
  }

  .story-heading h2,
  .features > h2,
  .download-copy h2,
  .closing h2,
  .portrait-copy h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .story-stage {
    min-height: 820px;
    margin-top: 50px;
  }

  .story-stage::before {
    inset: 170px 7%;
  }

  .story-stage::after {
    inset: 250px 16%;
  }

  .story-orbit {
    top: 48%;
    width: 280px;
    height: 360px;
  }

  .story-orbit img {
    width: 250px;
  }

  .story-note {
    width: 160px;
  }

  .story-note strong {
    font-size: 1.7rem;
  }

  .story-note-pop {
    top: 7%;
    left: 7%;
  }

  .story-note-float {
    top: 10%;
    right: 6%;
  }

  .story-note-explore {
    right: 7%;
    bottom: 8%;
  }

  .story-balloon-one {
    bottom: 14%;
    left: 8%;
  }

  .portrait-section {
    padding-block: 76px 90px;
  }

  .phone-scene {
    min-height: 660px;
  }

  .phone-screen {
    min-height: 610px;
  }

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

  .feature-visual {
    grid-column: auto;
    min-height: 430px;
  }

  .feature-card {
    min-height: 300px;
    padding: 30px;
  }

  .download-panel {
    min-height: 430px;
    padding: 80px 24px 36px;
  }

  .release-facts > div {
    grid-template-columns: 100px 1fr;
  }

  .closing,
  .closing-inner {
    min-height: 700px;
  }

  .closing-inner {
    padding-top: 90px;
  }

  .closing-inner > img {
    bottom: -250px;
    width: 420px;
  }

  .closing-balloon-one {
    left: -18px;
  }

  .closing-balloon-two {
    right: -24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 32px;
    gap: 24px;
    text-align: center;
  }

  .footer-inner p {
    justify-self: auto;
  }
}

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

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