:root {
  --bg: #060816;
  --bg-soft: #0c1124;
  --panel: rgba(10, 18, 40, 0.78);
  --panel-strong: rgba(13, 23, 52, 0.92);
  --panel-light: rgba(255, 255, 255, 0.05);
  --line: rgba(151, 170, 255, 0.18);
  --line-strong: rgba(151, 170, 255, 0.3);
  --text: #eef3ff;
  --muted: #a8b3d9;
  --muted-strong: #7f8ab2;
  --accent: #6ff7ff;
  --accent-2: #8f6bff;
  --accent-3: #ff6bb3;
  --success: #75f6a6;
  --warning: #ffcf70;
  --danger: #ff7d94;
  --surface-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --glow: 0 0 60px rgba(111, 247, 255, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --nav-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 107, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(111, 247, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #040611 0%, #060816 42%, #091128 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 88%);
  opacity: 0.28;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

#scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.04);
}

#scroll-progress .bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
}

#scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 18, 40, 0.85);
  color: var(--text);
  box-shadow: var(--surface-shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: 0.3s var(--ease);
  z-index: 1000;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover {
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(4, 7, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: min(220px, 40vw);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transition: transform 0.25s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

main {
  position: relative;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before,
.band::before,
.cta::before {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.hero {
  padding: 80px 0 48px;
}

.hero::before {
  width: 340px;
  height: 340px;
  top: 60px;
  right: 8%;
  background: rgba(143, 107, 255, 0.22);
}

.hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 80px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(111, 247, 255, 0.13);
  filter: blur(70px);
  pointer-events: none;
}

.page-hero {
  padding: 88px 0 32px;
}

.page-hero::before {
  width: 280px;
  height: 280px;
  top: 32px;
  right: 10%;
  background: rgba(255, 107, 179, 0.18);
}

.hero-grid,
.split-layout,
.content-grid,
.contact-grid,
.security-grid,
.story-grid,
.support-grid {
  display: grid;
  gap: 32px;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(111, 247, 255, 0.25);
  border-radius: 999px;
  background: rgba(111, 247, 255, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.hero-copy h1,
.page-hero h1,
.section-head h2,
.cta h2,
.legal-shell h2,
.legal-shell h3 {
  font-family: var(--font-head);
  letter-spacing: -0.04em;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(2.4rem, 6vw, 4.64rem);
  line-height: 0.95;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 10%, #ffffff 48%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.page-hero p,
.section-head p,
.panel p,
.story-card p,
.feature-card p,
.info-card p,
.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.hero-copy p,
.page-hero p {
  max-width: 640px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.action-row,
.stat-row,
.pill-row,
.footer-badges,
.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.action-row {
  margin-top: 28px;
}

.stat-row {
  margin-top: 36px;
}

.stat-chip,
.tech-pill,
.footer-badge,
.support-tag {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-chip strong,
.tech-pill strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.stat-chip span,
.tech-pill span {
  color: var(--muted);
  font-size: 0.84rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.28s var(--ease);
}

.btn-primary {
  color: #04111a;
  background: linear-gradient(135deg, var(--accent), #9defff);
  box-shadow: 0 16px 32px rgba(111, 247, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(111, 247, 255, 0.28);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.hero-visual,
.section-visual {
  position: relative;
}

.page-hero-art {
  align-self: center;
}

.page-hero-art .visual-frame,
.page-hero-art .panel {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: relative;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--surface-shadow);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
}

.section-shell {
  padding: 48px 0;
}

.band {
  position: relative;
  padding: 26px 0;
}

.band::before {
  width: 220px;
  height: 220px;
  top: 0;
  left: 10%;
  background: rgba(111, 247, 255, 0.1);
}

.band-panel,
.panel,
.feature-card,
.story-card,
.info-card,
.legal-block,
.contact-panel,
.faq-item,
.timeline-item,
.trust-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--surface-shadow);
}

.band-panel {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.trust-panel {
  padding: 18px;
}

.trust-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.trust-panel span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.section-head p {
  max-width: 560px;
  font-size: 1rem;
}

.panel {
  padding: 28px;
}

.grid-2,
.grid-3,
.grid-4,
.card-grid {
  display: grid;
  gap: 22px;
}

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

.grid-3,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.story-card,
.info-card,
.timeline-item,
.faq-item,
.contact-panel {
  padding: 28px;
}

.feature-card h3,
.story-card h3,
.info-card h3,
.panel h3,
.legal-block h3,
.timeline-item h3,
.faq-item button,
.contact-panel h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 1.05;
}

.feature-card h3,
.story-card h3,
.info-card h3,
.panel h3,
.timeline-item h3,
.contact-panel h3 {
  margin: 18px 0 12px;
}

.feature-icon,
.info-icon,
.contact-icon,
.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(111, 247, 255, 0.09);
  color: var(--accent);
  font-weight: 800;
}

.timeline-wrap {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.timeline-year {
  font-size: 1rem;
}

.split-layout,
.content-grid,
.story-grid,
.security-grid,
.support-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.list-check,
.detail-list,
.legal-shell ul,
.footer-links {
  display: grid;
  gap: 12px;
}

.list-check li,
.detail-list li,
.legal-shell li {
  position: relative;
  padding-left: 18px;
}

.list-check li::before,
.detail-list li::before,
.legal-shell li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.product-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.quote-card {
  padding: 28px;
  border-left: 3px solid var(--accent);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.quote-card p {
  font-size: 1.06rem;
  color: var(--text);
}

.quote-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.metric strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.tab-shell {
  display: grid;
  gap: 18px;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
  border-color: rgba(111, 247, 255, 0.6);
  color: var(--text);
  background: rgba(111, 247, 255, 0.12);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.support-note,
.notice {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 207, 112, 0.22);
  background: rgba(255, 207, 112, 0.08);
  color: #ffe4a1;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

.contact-grid {
  gap: 24px;
}

.contact-panel form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(111, 247, 255, 0.12);
  outline: none;
}

.captcha-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.captcha-pill {
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), #9defff);
  font-weight: 800;
  text-align: center;
}

.captcha-input {
  width: 90px;
  text-align: center;
}

.form-message {
  display: none;
  padding: 16px 18px;
  border-radius: 14px;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  background: rgba(117, 246, 166, 0.12);
  border: 1px solid rgba(117, 246, 166, 0.24);
  color: #b9ffd2;
}

.form-message.error {
  background: rgba(255, 125, 148, 0.1);
  border: 1px solid rgba(255, 125, 148, 0.2);
  color: #ffb3c0;
}

.form-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(4, 17, 26, 0.28);
  border-top-color: #04111a;
  border-radius: 999px;
  animation: spin 0.75s linear infinite;
}

.form-spinner.active {
  display: inline-block;
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.legal-shell .updated {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.legal-block {
  padding: 26px;
}

.legal-shell h2 {
  margin-top: 10px;
  font-size: 1.5rem;
}

.legal-shell h3 {
  margin-top: 22px;
  font-size: 1.05rem;
}

.legal-shell p + ul,
.legal-shell ul + p {
  margin-top: 12px;
}

.cta {
  position: relative;
  padding: 64px 0 84px;
}

.cta::before {
  width: 260px;
  height: 260px;
  right: 8%;
  bottom: 20px;
  background: rgba(255, 107, 179, 0.18);
}

.cta-panel {
  padding: 34px;
  border: 1px solid rgba(111, 247, 255, 0.24);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(111, 247, 255, 0.14), rgba(143, 107, 255, 0.18)),
    rgba(8, 14, 32, 0.88);
  box-shadow: var(--surface-shadow);
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.96;
}

.cta p {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
}

.footer {
  padding: 26px 0 48px;
}

.footer-shell {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(4, 8, 24, 0.82);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-top {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  width: 210px;
}

.footer-brand p {
  max-width: 400px;
  margin-top: 14px;
  color: var(--muted);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 28px;
}

.footer-columns h4 {
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 22px;
  align-items: center;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.footer-badges {
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1300;
  max-width: 460px;
  margin-left: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 13, 28, 0.94);
  box-shadow: var(--surface-shadow);
  transform: translateY(140%);
  transition: transform 0.3s var(--ease);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner h4 {
  margin-bottom: 10px;
  font-family: var(--font-head);
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .product-highlight,
  .split-layout,
  .content-grid,
  .contact-grid,
  .security-grid,
  .story-grid,
  .support-grid,
  .band-panel,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .band-panel {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    position: relative;
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 13, 28, 0.98);
    box-shadow: var(--surface-shadow);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a::after {
    bottom: -4px;
  }

  .section-head,
  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .metrics,
  .grid-2,
  .grid-3,
  .card-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .hero {
    padding-top: 52px;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }

  .visual-frame,
  .panel,
  .feature-card,
  .story-card,
  .info-card,
  .legal-block,
  .contact-panel,
  .timeline-item,
  .faq-item,
  .cta-panel,
  .footer-shell {
    padding: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  #scroll-top {
    right: 16px;
    bottom: 16px;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

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