@font-face {
  font-family: 'Mulish';
  src: url('/assets/fonts/mulish-variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins-600.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #1b2a3a;
  --ink-soft: #5a6675;
  --accent: #b98a8e;
  --accent-dark: #986a70;
  --paper: #f4f1ec;
  --paper-soft: #fbf9f5;
  --white: #ffffff;
  --line: #e7e0d4;
  --line-strong: #d8cfc2;
  --muted: #8a93a0;
  --nav-height: 82px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 24px 70px rgba(27, 42, 58, 0.10);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Mulish', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(185, 138, 142, 0.48);
  outline-offset: 4px;
}

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

.site-shell {
  overflow: hidden;
}

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

.eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.section-copy {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(231, 224, 212, 0.72);
  background: rgba(244, 241, 236, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark {
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--ink);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.brand-name {
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  transition: color 180ms ease;
}

.nav-links > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: right 180ms ease;
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--ink);
}

.nav-links > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta,
.button-primary,
.button-accent,
.button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--ink);
  color: #fff;
}

.nav-cta {
  min-height: 42px;
  padding: 0 22px;
}

.button-primary,
.button-secondary {
  padding: 0 28px;
}

.button-accent {
  min-height: 50px;
  padding: 0 34px;
  background: var(--accent);
  color: var(--ink);
}

.button-secondary {
  border: 1.5px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.3);
  color: var(--ink);
}

.nav-cta:hover,
.button-primary:hover,
.button-accent:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.button-primary:hover,
.nav-cta:hover {
  box-shadow: 0 12px 28px rgba(27, 42, 58, 0.2);
}

.button-accent:hover {
  background: #c8999d;
  box-shadow: 0 12px 28px rgba(185, 138, 142, 0.26);
}

.button-secondary:hover {
  border-color: var(--accent);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] span {
  opacity: 0;
}

.menu-toggle[aria-expanded='true']::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true']::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 18px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.hero::before {
  top: -130px;
  right: -90px;
  width: 300px;
  height: 322px;
  background: var(--accent);
  opacity: 0.10;
}

.hero::after {
  top: 220px;
  left: -105px;
  width: 220px;
  height: 236px;
  background: var(--ink);
  opacity: 0.05;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.7rem, 7vw, 3.55rem);
  font-weight: 600;
  line-height: 1.075;
  letter-spacing: -0.035em;
}

.hero-description {
  width: min(100%, 650px);
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.12rem);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual-wrap {
  margin-top: 50px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(216, 207, 194, 0.84);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 138, 142, 0.32), transparent 26%),
    radial-gradient(circle at 12% 76%, rgba(27, 42, 58, 0.12), transparent 30%),
    linear-gradient(145deg, #eee8df 0%, #f8f5ef 48%, #e7ded3 100%);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 42, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 42, 58, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 88%);
}

.browser-card {
  position: absolute;
  inset: 46px 7% 42px;
  overflow: hidden;
  border: 1px solid rgba(231, 224, 212, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(27, 42, 58, 0.17);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.browser-bar {
  height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: #fbfaf7;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.browser-dot:nth-child(2) {
  background: var(--accent);
}

.browser-dot:nth-child(3) {
  background: #b9c1c8;
}

.flow-canvas {
  height: calc(100% - 48px);
  padding: 38px 5%;
  display: grid;
  grid-template-columns: minmax(145px, 1fr) auto minmax(170px, 1.18fr) auto minmax(145px, 1fr);
  align-items: center;
  gap: 16px;
}

.flow-column {
  display: grid;
  gap: 13px;
}

.flow-card,
.axira-core {
  border-radius: 14px;
}

.flow-card {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.flow-card strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.flow-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.flow-line {
  width: clamp(22px, 4vw, 58px);
  height: 1px;
  position: relative;
  background: var(--accent);
}

.flow-line::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transform: rotate(45deg);
}

.axira-core {
  min-height: 214px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.axira-core .brand-mark {
  width: 42px;
  height: 47px;
  background: var(--accent);
  color: var(--ink);
}

.axira-core strong {
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.axira-core p {
  margin-top: 8px;
  color: #aeb6c0;
  font-size: 0.74rem;
  line-height: 1.5;
}

/* How it works */
.how-section {
  padding: 80px 0 88px;
}

.how-card {
  padding: 52px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
}

.how-kicker {
  margin-bottom: 40px;
  color: #808996;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hub-grid {
  display: grid;
  grid-template-columns: 1fr 46px 240px 46px 1fr;
  align-items: center;
}

.partner-stack {
  display: grid;
  gap: 16px;
}

.partner-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.partner-card strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.partner-card span {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.81rem;
}

.hub-lines {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 78px;
  padding-inline: 10px;
}

.hub-lines span {
  display: block;
  height: 1px;
  background: var(--accent);
}

.hub-core {
  padding: 36px 24px;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.hub-core .brand-mark {
  width: 40px;
  height: 44px;
  margin: 0 auto 14px;
  background: var(--accent);
  color: var(--ink);
}

.hub-core h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.hub-core p {
  margin-top: 8px;
  color: #aeb6c0;
  font-size: 0.8rem;
}

.hub-core small {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

/* Tech */
.tech-section {
  padding: 0 0 92px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.api-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink);
  box-shadow: 0 22px 55px rgba(27, 42, 58, 0.13);
}

.api-panel-top {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #aeb6c0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
}

.api-status {
  color: #d7b4b7;
}

.api-panel pre {
  padding: 22px;
  overflow-x: auto;
  color: #e8e7e4;
  font: 0.78rem/1.72 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.api-panel .code-accent {
  color: #d7aeb2;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: #d8c9c3;
  box-shadow: 0 16px 35px rgba(27, 42, 58, 0.07);
}

.feature-card strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.feature-card p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Products */
.products-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.products-intro {
  margin-bottom: 30px;
}

.products-intro p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  min-height: 132px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #daccc5;
  box-shadow: 0 18px 40px rgba(27, 42, 58, 0.07);
}

.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.product-card p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* CTA */
.contact-section {
  padding: 80px 0;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.contact-card::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -62px;
  width: 220px;
  height: 236px;
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
  background: var(--accent);
  opacity: 0.16;
}

.contact-card h2,
.contact-card p,
.contact-card a {
  position: relative;
  z-index: 2;
}

.contact-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.contact-card p {
  width: min(100%, 540px);
  margin: 14px auto 0;
  color: #aeb6c0;
}

.contact-card .button-accent {
  margin-top: 28px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
}

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

.footer-brand .brand-mark {
  width: 26px;
  height: 30px;
  font-size: 0.72rem;
}

.footer-brand .brand-name {
  font-size: 0.92rem;
}

.footer-copy,
.footer-links {
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a {
  color: var(--accent-dark);
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Legal page */
.simple-page {
  min-height: calc(100vh - var(--nav-height));
}

.simple-main {
  padding: 70px 0 90px;
}

.prose-card {
  width: min(100%, 820px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
}

.prose-card h1,
.prose-card h2 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.prose-card h1 {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 600;
}

.prose-card h2 {
  margin-top: 32px;
  font-size: 1.2rem;
  font-weight: 600;
}

.prose-card p,
.prose-card ul {
  margin-top: 14px;
  color: var(--ink-soft);
}

.prose-card ul {
  padding-left: 22px;
}

.prose-card a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #decfd0;
  border-radius: 12px;
  background: #f7edee;
  color: #684c50;
  font-size: 0.9rem;
}

/* 404 */
.not-found {
  min-height: 100vh;
  padding: 48px 24px;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found-card {
  max-width: 620px;
}

.not-found-code {
  color: var(--accent-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.not-found h1 {
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
}

.not-found p {
  margin: 18px auto 28px;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  :root {
    --nav-height: 74px;
  }

  .container {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: 18px;
    left: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 249, 245, 0.98);
    box-shadow: 0 20px 60px rgba(27, 42, 58, 0.16);
  }

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

  .nav-links > a:not(.nav-cta),
  .nav-cta {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 5px;
  }

  .flow-canvas {
    grid-template-columns: 1fr 30px 1.05fr 30px 1fr;
    gap: 8px;
    padding: 30px 3%;
  }

  .flow-card {
    padding: 13px;
  }

  .hub-grid {
    grid-template-columns: 1fr 30px 210px 30px 1fr;
  }

  .tech-grid {
    gap: 34px;
  }
}

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

  .brand-name {
    font-size: 1.12rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 540px;
  }

  .browser-card {
    inset: 30px 18px;
  }

  .flow-canvas {
    padding: 24px 18px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 12px;
  }

  .flow-column {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .flow-card {
    min-height: 84px;
  }

  .flow-card span {
    display: none;
  }

  .flow-line {
    width: 1px;
    height: 22px;
    justify-self: center;
  }

  .flow-line::after {
    top: auto;
    right: -3px;
    bottom: -1px;
    transform: rotate(135deg);
  }

  .axira-core {
    min-height: 158px;
  }

  .how-section,
  .contact-section {
    padding: 62px 0;
  }

  .how-card {
    padding: 34px 22px;
  }

  .hub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hub-lines {
    display: none;
  }

  .partner-stack {
    grid-template-columns: 1fr;
  }

  .hub-core {
    order: -1;
  }

  .tech-section {
    padding-bottom: 66px;
  }

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

  .feature-stack {
    margin-top: 6px;
  }

  .products-section {
    padding: 60px 0;
  }

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

  .contact-card {
    padding: 46px 24px;
  }

  .footer-inner {
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  .brand-mark {
    width: 31px;
    height: 35px;
  }

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

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

  .hero-visual-wrap {
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 510px;
    border-radius: 18px;
  }

  .browser-card {
    inset: 22px 10px;
  }

  .flow-column {
    grid-template-columns: 1fr;
  }

  .flow-card {
    min-height: auto;
  }

  .flow-card:nth-child(n + 2) {
    display: none;
  }

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

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

  .api-panel pre {
    font-size: 0.7rem;
  }
}

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