:root {
  color-scheme: light;
  --canvas: #fbfbf9;
  --chrome: #f5f5f2;
  --surface: #ffffff;
  --surface-muted: #f7f8f5;
  --line: #e3e6e1;
  --line-strong: #d4dad4;
  --ink: #242a26;
  --ink-muted: #68716b;
  --ink-faint: #969e98;
  --accent: #2f7664;
  --accent-dark: #245e50;
  --accent-soft: #e7f1ed;
  --warm: #c96e55;
  --destructive: #c65349;
  --shell: 1180px;
  --shadow-soft: 0 24px 70px rgba(36, 42, 38, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Segoe UI Variable", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(47, 118, 100, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: 64px;
  border-bottom: 1px solid transparent;
  background: rgba(251, 251, 249, 0.76);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(227, 230, 225, 0.88);
  background: rgba(251, 251, 249, 0.94);
}

.header-inner {
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand,
.demo-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.brand {
  width: max-content;
  font-size: 18px;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink-muted);
  font-size: 14px;
}

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

.main-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-button {
  min-width: 42px;
  height: 38px;
  padding: 0 10px;
  border: 0;
  color: var(--ink-muted);
  background: transparent;
  cursor: pointer;
}

.language-button:hover {
  color: var(--ink);
}

.button {
  min-height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 620;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  color: white;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-quiet {
  border-color: rgba(36, 42, 38, 0.24);
  background: rgba(255, 255, 255, 0.44);
}

.button-quiet:hover {
  border-color: rgba(36, 42, 38, 0.46);
  background: rgba(255, 255, 255, 0.78);
}

.button-compact {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  height: calc(100svh - 72px);
  min-height: 620px;
  max-height: 790px;
  overflow: hidden;
  background: #eaf0ed;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 52px;
}

.hero-copy {
  width: min(570px, 48%);
  padding-bottom: 12px;
}

.hero h1,
.section-heading h2,
.ability-row h3,
.flow-step h3 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  font-size: 68px;
  line-height: 1;
  font-weight: 690;
}

.hero-slogan {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 630;
  text-wrap: balance;
}

.hero-slogan span {
  display: block;
}

.hero-description {
  max-width: 530px;
  margin: 24px 0 0;
  color: #46504a;
  font-size: 17px;
  line-height: 1.75;
}

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

.flow-section,
.experience-section,
.abilities-section,
.skills-section,
.security-section,
.download-section {
  scroll-margin-top: 64px;
}

.flow-section {
  padding: 112px 0 120px;
  background: var(--canvas);
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) 1.6fr;
  gap: 92px;
  align-items: start;
}

.section-heading .eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 680;
}

.section-heading h2 {
  font-size: 42px;
  line-height: 1.18;
  font-weight: 650;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--ink-muted);
  font-size: 17px;
}

.compact-heading h2 {
  font-size: 35px;
  line-height: 1.28;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 14px;
}

.flow-line {
  position: absolute;
  top: 30px;
  left: 17px;
  right: 17px;
  height: 1px;
  background: var(--line-strong);
  overflow: hidden;
}

.flow-line span {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warm);
  animation: travel 5s ease-in-out infinite;
}

@keyframes travel {
  0% { transform: translateX(0); }
  45%, 55% { transform: translateX(calc((min(100vw - 96px, 760px) - 34px) / 2)); }
  100% { transform: translateX(calc(min(100vw - 96px, 760px) - 34px)); }
}

.flow-step {
  position: relative;
  padding-top: 48px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  height: 33px;
  display: inline-flex;
  align-items: center;
  padding-right: 12px;
  color: var(--ink-muted);
  background: var(--canvas);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.flow-step h3 {
  font-size: 18px;
  font-weight: 650;
}

.flow-step p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
}

.experience-section {
  padding: 110px 0 130px;
  overflow: hidden;
  background: #f1f4f1;
}

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

.product-stage {
  position: relative;
  min-height: 720px;
  margin-top: 76px;
}

.desktop-demo {
  width: calc(100% - 84px);
  height: 650px;
  overflow: hidden;
  border: 1px solid #d8ded8;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.demo-titlebar {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--chrome);
}

.demo-brand {
  font-size: 13px;
}

.demo-brand img {
  border-radius: 6px;
}

.window-controls {
  display: flex;
  gap: 16px;
}

.window-controls i {
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid #a5ada7;
}

.window-controls i:nth-child(2) {
  border-radius: 50%;
}

.window-controls i:last-child {
  border: 0;
  background: #a5ada7;
  clip-path: polygon(15% 0, 50% 35%, 85% 0, 100% 15%, 65% 50%, 100% 85%, 85% 100%, 50% 65%, 15% 100%, 0 85%, 35% 50%, 0 15%);
}

.desktop-body {
  height: calc(100% - 48px);
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 230px;
}

.session-rail,
.file-rail {
  padding: 18px 12px;
  background: var(--chrome);
}

.session-rail {
  border-right: 1px solid var(--line);
}

.file-rail {
  border-left: 1px solid var(--line);
}

.rail-heading,
.chat-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rail-heading {
  padding: 0 9px 13px;
  font-size: 13px;
}

.rail-heading span {
  color: var(--ink-muted);
  font-size: 19px;
}

.session-row {
  min-height: 40px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  color: var(--ink-muted);
  font-size: 13px;
}

.session-row.active {
  color: var(--ink);
  background: var(--surface);
}

.working-dot {
  width: 7px;
  height: 7px;
  border: 2px solid var(--accent);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.chat-demo {
  min-width: 0;
  display: grid;
  grid-template-rows: 46px 1fr auto;
  background: #fdfdfc;
}

.chat-topline {
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.chat-topline span {
  color: var(--ink-muted);
  font-size: 11px;
}

.messages-demo {
  width: min(100% - 40px, 600px);
  margin: 0 auto;
  padding: 34px 0 28px;
  overflow: hidden;
}

.message {
  width: fit-content;
  max-width: 78%;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.user-message {
  margin-left: auto;
  background: var(--accent-soft);
}

.assistant-message {
  margin-top: 13px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.activity-line {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 12px;
}

.activity-spinner {
  width: 11px;
  height: 11px;
  border: 2px solid var(--line-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.file-message {
  width: 275px;
  margin-top: 13px;
  padding: 10px 11px;
  display: grid;
  grid-template-columns: 36px 1fr 30px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.file-type {
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 10px;
  font-weight: 700;
}

.file-message strong,
.file-message small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-message strong {
  font-size: 11px;
}

.file-message small {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 10px;
}

.demo-download {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-muted);
  background: var(--surface-muted);
}

.composer-demo {
  width: min(100% - 44px, 630px);
  min-height: 68px;
  margin: 0 auto 24px;
  padding: 13px 12px 10px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  color: var(--ink-faint);
  background: var(--surface);
  font-size: 12px;
}

.demo-send {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--accent);
}

.file-rail-heading {
  padding: 0 7px 13px;
  font-size: 13px;
  font-weight: 650;
}

.file-row {
  min-height: 38px;
  padding: 0 7px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.file-row span {
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 700;
}

.file-row strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 520;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-demo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 254px;
  height: 510px;
  padding: 15px 12px 14px;
  overflow: hidden;
  border: 7px solid #303632;
  border-radius: 34px;
  background: #fbfbfa;
  box-shadow: 0 26px 55px rgba(36, 42, 38, 0.22);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  color: #6d756f;
  font-size: 8px;
}

.phone-title {
  margin-top: 14px;
  padding: 9px 8px 11px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
}

.phone-chat {
  padding: 28px 4px 0;
  font-size: 9px;
  line-height: 1.55;
}

.phone-user,
.phone-assistant {
  max-width: 80%;
  padding: 8px 9px;
  border-radius: 7px;
}

.phone-user {
  margin-left: auto;
  background: var(--accent-soft);
}

.phone-assistant {
  margin-top: 16px;
  border: 1px solid var(--line);
  background: white;
}

.phone-file {
  width: 176px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.phone-file span {
  margin-right: 5px;
  color: var(--accent-dark);
  font-size: 8px;
  font-weight: 700;
}

.phone-composer {
  position: absolute;
  right: 12px;
  bottom: 15px;
  left: 12px;
  min-height: 46px;
  padding: 8px 8px 8px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  color: var(--ink-faint);
  background: white;
  font-size: 8px;
}

.phone-composer b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--accent);
}

.abilities-section {
  padding: 128px 0 132px;
  background: var(--canvas);
}

.wide-heading {
  max-width: 820px;
}

.ability-list {
  margin-top: 72px;
  border-top: 1px solid var(--line-strong);
}

.ability-row {
  min-height: 148px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.65fr) 1fr;
  gap: 36px;
  align-items: start;
  border-bottom: 1px solid var(--line-strong);
}

.ability-index {
  color: var(--warm);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.ability-row h3 {
  font-size: 22px;
  font-weight: 630;
}

.ability-row p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
}

.skills-section {
  padding: 118px 0 126px;
  background: #f4f5f2;
}

.skills-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.skills-heading > p:last-child {
  margin: 0 0 4px;
  font-size: 16px;
}

.skill-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.skill-card {
  min-height: 238px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.skill-card > span {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 650;
}

.skill-card h3 {
  margin: 21px 0 0;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 640;
  text-wrap: balance;
}

.skill-card p {
  margin: 14px 0 22px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.65;
}

.skill-card small {
  margin-top: auto;
  color: var(--ink-faint);
  font-size: 11px;
}

.skills-note {
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.security-section {
  padding: 112px 0;
  color: #eef3ef;
  background: #29312c;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.2fr;
  gap: 110px;
}

.security-section .eyebrow {
  color: #a9c8bc;
}

.security-points {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.security-points > div {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.security-points strong {
  font-size: 15px;
}

.security-points p {
  margin: 0;
  color: #b9c2bc;
  font-size: 14px;
}

.download-section {
  padding: 126px 0 132px;
  background: #eef3f0;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 110px;
  align-items: start;
}

.download-layout .section-heading > p:last-child {
  margin: 20px 0 0;
}

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

.download-row {
  min-height: 98px;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line-strong);
}

.download-row strong,
.download-row small {
  display: block;
}

.download-row strong {
  font-size: 20px;
  font-weight: 640;
}

.download-row small {
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: 13px;
}

.download-action {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 650;
}

.download-row:hover .download-action {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: var(--ink-muted);
  font-size: 13px;
}

.footer-brand {
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-layout > p {
  justify-self: end;
  margin: 0;
}

@media (max-width: 1000px) {
  .flow-layout,
  .security-layout,
  .download-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .desktop-demo {
    width: calc(100% - 52px);
  }

  .desktop-body {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .file-rail {
    display: none;
  }

  .security-points > div {
    grid-template-columns: minmax(150px, 0.45fr) 1fr;
  }

  .skills-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

@media (max-width: 760px) {
  .shell,
  .header-inner {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    height: 60px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .button-compact {
    padding: 0 13px;
  }

  .hero {
    height: calc(100svh - 70px);
    min-height: 570px;
    max-height: 760px;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 90px;
  }

  .hero-copy {
    width: 100%;
    max-width: 500px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-slogan {
    max-width: 420px;
    margin-top: 17px;
    font-size: 29px;
    line-height: 1.3;
  }

  .hero-description {
    max-width: 410px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    min-height: 44px;
    padding: 0 17px;
  }

  .flow-section,
  .experience-section,
  .abilities-section,
  .skills-section,
  .security-section,
  .download-section {
    scroll-margin-top: 60px;
  }

  .flow-section,
  .abilities-section,
  .skills-section,
  .security-section,
  .download-section {
    padding: 82px 0;
  }

  .section-heading h2,
  .compact-heading h2 {
    font-size: 31px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .flow-track {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 0 0 34px;
  }

  .flow-line {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 8px;
    width: 1px;
    height: auto;
  }

  .flow-line span {
    top: 0;
    left: -3px;
    animation-name: travel-mobile;
  }

  @keyframes travel-mobile {
    from { transform: translateY(0); }
    to { transform: translateY(300px); }
  }

  .flow-step {
    padding-top: 0;
  }

  .step-number {
    position: static;
    height: auto;
    margin-bottom: 8px;
    background: transparent;
  }

  .experience-section {
    padding: 82px 0 100px;
  }

  .product-stage {
    min-height: 570px;
    margin-top: 54px;
  }

  .desktop-demo {
    width: 100%;
    height: 510px;
  }

  .desktop-body {
    grid-template-columns: 1fr;
  }

  .session-rail {
    display: none;
  }

  .chat-topline {
    padding: 0 16px;
  }

  .messages-demo {
    width: calc(100% - 28px);
    padding-top: 24px;
  }

  .composer-demo {
    width: calc(100% - 26px);
    margin-bottom: 15px;
  }

  .phone-demo {
    right: -7px;
    width: 196px;
    height: 390px;
    border-width: 6px;
    border-radius: 28px;
  }

  .ability-list {
    margin-top: 50px;
  }

  .ability-row {
    min-height: 0;
    grid-template-columns: 36px 1fr;
    gap: 8px 14px;
  }

  .ability-row h3 {
    font-size: 20px;
  }

  .ability-row p {
    grid-column: 2;
    font-size: 14px;
  }

  .skill-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .skill-card {
    min-height: 0;
  }

  .security-points > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .download-row {
    min-height: 88px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer-layout > p {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .language-button {
    min-width: 36px;
    padding: 0 6px;
  }

  .hero-description {
    max-width: 340px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    font-size: 14px;
  }

  .phone-demo {
    right: -12px;
  }
}

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