:root {
  color-scheme: dark;
  --bg: #04060b;
  --bg-2: #090d16;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.105);
  --stroke: rgba(255, 255, 255, 0.13);
  --text: #f7f8ff;
  --muted: rgba(235, 240, 255, 0.72);
  --quiet: rgba(235, 240, 255, 0.52);
  --blue: #2f8cff;
  --cyan: #40d8e6;
  --violet: #8b5cf6;
  --magenta: #e044b8;
  --rose: #ff527e;
  --amber: #f7a947;
  --radius: 24px;
  --max: 1180px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.14), transparent 32%),
    linear-gradient(215deg, rgba(224, 68, 184, 0.16), transparent 36%),
    var(--bg);
  color: var(--text);
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  opacity: 0.5;
  z-index: -1;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(var(--max), calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(8, 12, 20, 0.74);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 10, 17, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 850;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(84, 120, 255, 0.38);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 720;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta,
.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--blue), #0b6df5 46%, var(--violet));
  box-shadow: 0 16px 34px rgba(47, 140, 255, 0.28);
}

.nav-cta {
  padding: 0 18px;
}

.primary-button {
  padding: 0 20px;
}

.primary-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.secondary-button {
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.hero {
  min-height: 820px;
  padding-top: 116px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 34px;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.hero-copy {
  padding-bottom: 80px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(76px, 9vw, 132px);
  line-height: 0.84;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-line {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-line::after {
  content: "";
  display: block;
  width: min(310px, 60vw);
  height: 7px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--magenta));
}

.hero-text {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
}

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

.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(64, 216, 230, 0.16), transparent 40%),
    linear-gradient(45deg, rgba(224, 68, 184, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.spokesperson {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-float {
  position: absolute;
  width: 196px;
  border: 6px solid rgba(13, 15, 20, 0.94);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.46);
  background: black;
}

.phone-float img {
  width: 100%;
  height: auto;
}

.phone-home {
  left: 34px;
  bottom: 34px;
  transform: rotate(-5deg);
}

.feature-band,
.privacy-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #070a11;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-band {
  padding: 96px 0 104px;
}

.showcase,
.gallery-story {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 42px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 920;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 23px;
  line-height: 1.05;
  font-weight: 860;
}

.section-heading p,
.showcase-copy p,
.gallery-copy p,
.privacy-grid p,
.pricing-copy p,
.personalize-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.text-link {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 820;
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-item {
  min-height: 250px;
  padding: 28px 26px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item p {
  margin: 14px 0 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.52;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: white;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue { background: rgba(47, 140, 255, 0.24); }
.teal { background: rgba(64, 216, 230, 0.2); }
.violet { background: rgba(139, 92, 246, 0.24); }
.rose { background: rgba(255, 82, 126, 0.22); }
.amber { background: rgba(247, 169, 71, 0.2); }

.showcase {
  padding: 118px 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: 76px;
}

.showcase-copy {
  max-width: 480px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  padding-left: 31px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.35;
}

.check-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.check-list span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.device-cluster {
  position: relative;
  min-height: 720px;
}

.device {
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(17, 19, 24, 0.96);
  border-radius: 42px;
  background: black;
  box-shadow: var(--shadow);
}

.large-device {
  width: 330px;
  position: absolute;
  right: 36%;
  top: 0;
  transform: rotate(-4deg);
}

.action-device {
  width: 304px;
  position: absolute;
  right: 0;
  top: 110px;
  transform: rotate(6deg);
}

.gallery-story {
  padding: 112px 0;
  background:
    linear-gradient(120deg, rgba(47, 140, 255, 0.16), transparent 34%),
    linear-gradient(240deg, rgba(255, 82, 126, 0.15), transparent 38%),
    #080a12;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.gallery-art {
  position: relative;
  min-height: 650px;
}

.wide-frame,
.tall-frame {
  margin: 0;
  overflow: hidden;
  background: black;
  border: 7px solid rgba(18, 20, 28, 0.96);
  box-shadow: var(--shadow);
}

.wide-frame {
  width: 360px;
  border-radius: 42px;
  transform: rotate(4deg);
}

.tall-frame {
  position: absolute;
  right: 26px;
  top: 92px;
  width: 300px;
  border-radius: 40px;
  transform: rotate(-6deg);
}

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

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.stat-strip div {
  min-height: 110px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.stat-strip strong,
.privacy-list strong,
.footer-brand strong,
.price-card span {
  display: block;
  font-weight: 860;
}

.stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.35;
}

.personalize {
  padding: 118px 0;
}

.centered-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.personalize-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.personalize-panel {
  display: grid;
  grid-template-columns: 0.8fr 0.75fr;
  align-items: center;
  gap: 24px;
  min-height: 520px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.widget-panel {
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.22), rgba(139, 92, 246, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.vibe-panel {
  background:
    linear-gradient(135deg, rgba(224, 68, 184, 0.2), rgba(64, 216, 230, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.personalize-panel img {
  justify-self: center;
  width: min(250px, 100%);
  border: 6px solid rgba(15, 17, 24, 0.94);
  border-radius: 34px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.privacy-band {
  padding: 108px 0;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 74px;
  align-items: start;
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-list div {
  padding: 22px;
  border-left: 3px solid var(--cyan);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.privacy-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.pricing {
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 60px;
  align-items: center;
}

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

.price-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.14), rgba(224, 68, 184, 0.1)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.price-card strong {
  display: block;
  margin-top: 14px;
  font-size: 62px;
  line-height: 0.94;
  font-weight: 940;
}

.price-card p {
  margin: 8px 0 0;
  color: var(--quiet);
  font-weight: 720;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.4;
}

.price-card li {
  padding-left: 22px;
  position: relative;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.full-button {
  width: 100%;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand span {
  display: block;
  margin-top: 3px;
  color: var(--quiet);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 720;
}

.legal-hero {
  padding-top: 150px;
  padding-bottom: 42px;
}

.legal-label {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  font-weight: 940;
  letter-spacing: 0;
}

.legal-hero p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 740;
}

.legal-copy {
  max-width: 900px;
  margin-bottom: 94px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.legal-copy h2 {
  margin: 42px 0 14px;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.08;
}

.legal-copy h2:first-of-type {
  margin-top: 28px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-copy p {
  margin: 0 0 16px;
}

.legal-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 22px;
}

.legal-copy .text-link {
  color: var(--cyan);
}

.support-hero {
  padding-top: 150px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: end;
}

.support-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(50px, 8vw, 108px);
  line-height: 0.9;
  font-weight: 940;
  letter-spacing: 0;
}

.support-hero p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.support-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(47, 140, 255, 0.14), rgba(224, 68, 184, 0.1)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.support-card img {
  border-radius: 18px;
  box-shadow: 0 0 28px rgba(84, 120, 255, 0.34);
}

.support-card strong,
.support-card a {
  display: block;
}

.support-card strong {
  margin-top: 18px;
  font-size: 20px;
}

.support-card a {
  margin-top: 8px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 760;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  align-items: start;
  margin-bottom: 98px;
}

.support-form,
.support-aside {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.support-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.support-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 820;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(2, 5, 10, 0.48);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  outline: none;
}

.support-form input,
.support-form select {
  min-height: 50px;
  padding: 0 15px;
}

.support-form textarea {
  resize: vertical;
  padding: 14px 15px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(64, 216, 230, 0.8);
  box-shadow: 0 0 0 4px rgba(64, 216, 230, 0.12);
}

.support-form ::placeholder {
  color: rgba(235, 240, 255, 0.38);
}

.form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.5;
}

.form-submit {
  border: 0;
  cursor: pointer;
  justify-self: start;
  min-width: 220px;
}

.support-aside {
  padding: 26px;
}

.support-aside h2 {
  font-size: 34px;
}

.support-aside p,
.support-aside li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.support-aside ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
}

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

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 72px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-media {
    min-height: 580px;
  }

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

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .showcase,
  .gallery-grid,
  .privacy-grid,
  .pricing,
  .support-hero,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .showcase-copy,
  .gallery-copy,
  .pricing-copy {
    max-width: 760px;
  }

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

@media (max-width: 720px) {
  .section-shell,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 18px;
  }

  .brand span {
    font-size: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(72px, 24vw, 112px);
  }

  .hero-line {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media {
    min-height: 500px;
    border-radius: 28px;
  }

  .spokesperson {
    object-position: 66% center;
  }

  .phone-float {
    width: 128px;
    border-width: 5px;
    border-radius: 24px;
  }

  .phone-home {
    left: auto;
    right: 12px;
    bottom: 16px;
  }

  .feature-band,
  .showcase,
  .gallery-story,
  .personalize,
  .privacy-band,
  .pricing {
    padding-block: 72px;
  }

  .split-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-rail,
  .stat-strip,
  .personalize-panel {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: auto;
    padding: 24px 0;
  }

  .device-cluster {
    min-height: 600px;
    overflow: hidden;
  }

  .large-device {
    width: 235px;
    right: auto;
    left: 0;
  }

  .action-device {
    width: 220px;
    right: 0;
    top: 98px;
  }

  .gallery-art {
    min-height: 580px;
    overflow: hidden;
  }

  .wide-frame {
    width: 245px;
  }

  .tall-frame {
    width: 210px;
    right: 0;
    top: 82px;
  }

  .personalize-panel {
    min-height: 0;
    padding: 24px;
  }

  .privacy-list div {
    padding: 18px;
  }

  .price-card {
    padding: 24px;
  }

  .legal-hero {
    padding-top: 112px;
  }

  .support-hero {
    padding-top: 112px;
  }

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

  .legal-copy {
    padding: 22px;
    border-radius: 24px;
  }
}

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

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