:root {
  color-scheme: light;
  --ink: #07152f;
  --ink-soft: #34405a;
  --muted: #6c7281;
  --line: #dde1ea;
  --paper: #ffffff;
  --paper-warm: #f8f3eb;
  --wash: #f6f8fb;
  --orange: #ff9500;
  --coral: #ff4b2e;
  --pink: #f7358a;
  --purple: #8d43e8;
  --teal: #11bfc7;
  --shadow: 0 18px 60px rgba(7, 21, 47, 0.14);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  padding: 0 0 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
}

textarea {
  resize: vertical;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 4px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(100% - 64px, 1240px);
  margin: 20px auto 0;
  padding: 0;
  transition: background 180ms ease, box-shadow 180ms ease, margin 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  width: min(100% - 32px, 1240px);
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(221, 225, 234, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 38px rgba(7, 21, 47, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
  gap: 10px;
}

.brand-mark {
  width: 48px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-word {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.mark-teal {
  fill: var(--teal);
}

.mark-pink {
  fill: var(--pink);
}

.mark-orange {
  fill: var(--orange);
}

.mark-navy {
  fill: var(--ink);
}

.mark-dot {
  fill: white;
  stroke: var(--ink);
  stroke-width: 1.2px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.site-footer a {
  position: relative;
}

.site-nav a::after,
.site-footer a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.header-cta {
  padding: 0 22px;
  color: white;
  background: linear-gradient(110deg, var(--orange), var(--pink), var(--purple));
  box-shadow: 0 12px 30px rgba(247, 53, 138, 0.24);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: linear-gradient(90deg, #fbfcff 0%, #f6f8fc 36%, #f9ecf1 100%);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 67%;
  height: 68%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.18) contrast(1.05);
  opacity: 0.96;
}

.hero-bg::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.2) 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.62) 100%);
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(17, 191, 199, 0.12), transparent 42%),
    linear-gradient(45deg, transparent 48%, rgba(255, 149, 0, 0.18), rgba(247, 53, 138, 0.14), transparent 82%);
}

.stage-symbol {
  position: absolute;
  right: 12%;
  top: 70px;
  z-index: 2;
  width: 390px;
  height: 420px;
  pointer-events: none;
}

.shard {
  position: absolute;
  bottom: 80px;
  width: 88px;
  transform-origin: bottom center;
  box-shadow: inset -18px 0 28px rgba(255, 255, 255, 0.28), 0 30px 48px rgba(247, 53, 138, 0.2);
}

.shard-left {
  left: 38px;
  height: 210px;
  clip-path: polygon(0 0, 100% 36%, 100% 100%, 0 76%);
  background: linear-gradient(160deg, var(--pink), var(--purple));
}

.shard-mid-left {
  left: 124px;
  height: 280px;
  width: 72px;
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 88%);
  background: linear-gradient(180deg, #ffcf00, var(--orange), var(--pink));
}

.shard-center {
  left: 185px;
  bottom: 52px;
  height: 348px;
  width: 88px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #fce300, var(--orange) 54%, var(--pink));
}

.shard-right {
  left: 260px;
  height: 226px;
  clip-path: polygon(0 34%, 100% 0, 100% 74%, 0 100%);
  background: linear-gradient(160deg, var(--teal), #21b7ff, var(--purple));
}

.stage-line {
  position: absolute;
  left: 50%;
  bottom: 106px;
  width: 3px;
  border-radius: 20px;
  transform-origin: bottom;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.95);
}

.stage-line-one {
  height: 190px;
  transform: rotate(-8deg);
}

.stage-line-two {
  height: 190px;
  transform: rotate(8deg);
}

.hero-content {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
  padding-top: 145px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: 74px;
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 em {
  display: block;
  margin-top: 8px;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  background: linear-gradient(100deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin: 28px 0 26px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-tags span:not(:last-child)::after {
  content: ".";
  margin-left: 10px;
  color: var(--pink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 30px rgba(7, 21, 47, 0.18);
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: white;
}

.button-ghost {
  border: 1px solid rgba(7, 21, 47, 0.16);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.button-gradient {
  color: white;
  background: linear-gradient(110deg, var(--orange), var(--pink), var(--purple));
}

.signature-services,
.capabilities,
.about,
.insights,
.contact {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
}

.signature-services {
  padding: 58px 0 42px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.section-heading h2,
.about h2,
.insights h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.04;
}

.section-heading p:last-child,
.about-copy > p,
.contact-intro p {
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(221, 225, 234, 0.9);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 42px rgba(7, 21, 47, 0.08);
}

.service-card::after {
  position: absolute;
  content: "";
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), white 38%);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card > i,
.service-card > svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  margin: 22px 0 0 22px;
  color: var(--ink);
}

.service-card h3,
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 14px 22px 8px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 22px 54px;
  color: var(--ink-soft);
  font-size: 15px;
}

.service-card a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--accent);
}

.service-card a svg {
  width: 26px;
  height: 26px;
}

.corner {
  position: absolute;
  left: 20px;
  top: 22px;
  z-index: 1;
  width: 23px;
  height: 23px;
  border-left: 3px solid var(--accent);
  border-top: 3px solid var(--accent);
}

.accent-pink {
  --accent: var(--pink);
}

.accent-orange {
  --accent: var(--orange);
}

.accent-purple {
  --accent: var(--purple);
}

.accent-teal {
  --accent: var(--teal);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 64px, 1160px);
  margin: 0 auto;
  padding: 38px 0 52px;
}

.stat {
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  gap: 0 12px;
  min-height: 70px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
}

.stat:nth-child(1) svg {
  color: var(--pink);
}

.stat:nth-child(2) svg {
  color: var(--orange);
}

.stat:nth-child(3) svg {
  color: var(--purple);
}

.stat:nth-child(4) svg {
  color: var(--teal);
}

.stat strong {
  font-size: 34px;
  line-height: 1;
}

.stat span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.impact-banner {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 149, 0, 0.96), rgba(247, 53, 138, 0.88), rgba(141, 67, 232, 0.86), rgba(17, 191, 199, 0.82)),
    url("assets/crowd-live.png") center bottom / cover;
  color: white;
}

.impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: min(100% - 64px, 960px);
  min-height: 210px;
  margin: 0 auto;
  padding: 34px 0;
}

.impact-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 50px;
  line-height: 1.04;
}

.impact-inner em,
.contact h2 em {
  color: #ffe66b;
  font-weight: 400;
}

.impact-inner > div {
  padding-left: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.impact-inner p {
  max-width: 420px;
  margin: 0 0 18px;
}

.capabilities {
  padding: 76px 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.capability-grid article {
  min-height: 228px;
  padding: 28px;
  background: white;
}

.capability-grid svg {
  width: 30px;
  height: 30px;
  color: var(--purple);
}

.capability-grid article:nth-child(3n + 1) svg {
  color: var(--pink);
}

.capability-grid article:nth-child(3n + 2) svg {
  color: var(--orange);
}

.capability-grid article:nth-child(3n) svg {
  color: var(--teal);
}

.capability-grid h3,
.model-list h3,
.insight-grid h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  line-height: 1.15;
}

.capability-grid p,
.model-list p,
.insight-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 42px;
  padding: 24px 32px 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #9da3ad;
  font-size: 24px;
  font-weight: 850;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  padding: 86px 0;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 520px;
  background: var(--wash);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.model-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.model-list > div {
  padding: 24px;
  background: white;
}

.model-list svg {
  width: 28px;
  height: 28px;
  color: var(--pink);
}

.model-list > div:nth-child(2) svg {
  color: var(--orange);
}

.model-list > div:nth-child(3) svg {
  color: var(--purple);
}

.model-list > div:nth-child(4) svg {
  color: var(--teal);
}

.insights {
  padding: 30px 0 86px;
}

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

.insight-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(180deg, white, #fbfcff);
}

.insight-grid span {
  color: var(--pink);
  font-size: 14px;
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr) minmax(220px, 0.55fr);
  gap: 48px;
  align-items: start;
  padding: 78px 0;
}

.contact-intro h2 {
  font-size: 46px;
}

.contact-intro h2 em {
  color: var(--pink);
  font-weight: 400;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.contact-form span,
.direct-contact p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.full-field {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
}

.form-status {
  align-self: center;
  min-height: 20px;
  margin: 0;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
}

.direct-contact {
  min-height: 230px;
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.direct-contact p {
  margin: 0 0 24px;
  color: var(--pink);
}

.direct-contact > a {
  display: block;
  margin: 0 0 18px;
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto auto;
    gap: 18px;
  }

  .site-nav {
    gap: 24px;
  }

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

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

  .stage-symbol {
    right: 2%;
    transform: scale(0.86);
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
  }

  .stat:nth-child(n + 3) {
    padding-top: 24px;
  }

  .contact {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .direct-contact {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr;
    width: min(100% - 32px, 1240px);
    margin-top: 12px;
    padding: 10px;
    border: 1px solid rgba(221, 225, 234, 0.76);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 34px rgba(7, 21, 47, 0.1);
    backdrop-filter: blur(18px);
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-bg img {
    width: 100%;
    height: 52%;
  }

  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.28) 72%, rgba(255, 255, 255, 0.7) 100%);
  }

  .stage-symbol {
    top: 300px;
    right: 50%;
    transform: translateX(50%) scale(0.55);
  }

  .hero-content {
    width: min(100% - 36px, 1240px);
    padding-top: 118px;
  }

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

  .hero h1 em {
    font-size: 38px;
  }

  .signature-services,
  .capabilities,
  .about,
  .insights,
  .contact,
  .stats-band,
  .site-footer {
    width: min(100% - 36px, 1240px);
  }

  .section-heading h2,
  .about h2,
  .insights h2,
  .contact h2 {
    font-size: 36px;
  }

  .capability-grid,
  .insight-grid,
  .about,
  .contact,
  .impact-inner {
    grid-template-columns: 1fr;
  }

  .impact-inner {
    gap: 18px;
  }

  .impact-inner > div {
    padding-left: 0;
    border-left: 0;
  }

  .impact-inner h2 {
    font-size: 40px;
  }

  .about {
    gap: 30px;
  }

  .about-media,
  .about-media img {
    min-height: 340px;
  }

  .partner-strip {
    justify-content: flex-start;
    font-size: 18px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: auto;
  }

  .brand-word {
    font-size: 24px;
  }

  .brand-mark {
    width: 42px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-tags {
    max-width: 300px;
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .about h2,
  .insights h2,
  .contact h2 {
    font-size: 30px;
  }

  .impact-inner h2 {
    font-size: 30px;
  }

  .service-grid,
  .stats-band,
  .model-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 390px;
  }

  .stats-band {
    padding-top: 22px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .stat:nth-child(-n + 2),
  .stat:nth-child(n + 3) {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .impact-inner {
    width: min(100% - 36px, 960px);
  }

  .capability-grid article,
  .insight-grid article,
  .model-list > div {
    min-height: auto;
    padding: 22px;
  }

  .full-field {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
