:root {
  --bg: #f7f1e7;
  --surface: rgba(255, 250, 244, 0.92);
  --ink: #13213d;
  --ink-soft: #475671;
  --accent: #0f8a72;
  --accent-deep: #0b6856;
  --accent-warm: #c9863a;
  --shadow-lg: 0 28px 80px rgba(20, 38, 71, 0.14);
  --shadow-md: 0 18px 38px rgba(20, 38, 71, 0.1);
  --radius-lg: 32px;
  --container: min(1160px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 134, 58, 0.16), transparent 28%),
    radial-gradient(circle at right 12% top 24%, rgba(15, 138, 114, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf7f1 0%, #f2eee8 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(19, 33, 61, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 33, 61, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 55%, transparent 90%);
  opacity: 0.45;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: 112px 0;
}

.section-tone {
  background: linear-gradient(180deg, rgba(242, 234, 222, 0.56), rgba(247, 241, 231, 0));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

.section-heading h2,
.about-story h2,
.hero__content h1,
.hero-panel h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.04;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.card-surface,
.impact-card,
.service-card,
.team-card,
.contact-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: var(--container);
  margin: 22px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 249, 242, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

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

.brand__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(19, 33, 61, 0.08);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand__text small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(19, 33, 61, 0.06);
  transform: translateY(-1px);
}

.site-nav__cta {
  margin-left: 10px;
  background: linear-gradient(135deg, var(--ink), #244887);
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(19, 33, 61, 0.18);
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: linear-gradient(135deg, #0f2040, #1e3d76);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: rgba(19, 33, 61, 0.07);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 5px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 92px;
}

.hero-background,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 39, 0.84) 0%, rgba(10, 18, 39, 0.48) 42%, rgba(10, 18, 39, 0.3) 100%),
    linear-gradient(180deg, rgba(10, 18, 39, 0.18) 0%, rgba(10, 18, 39, 0.62) 100%);
}

.hero-slide {
  opacity: 0;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: opacity 900ms ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
  animation: floatOrb 12s ease-in-out infinite;
}

.hero-orb--one {
  top: 18%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 30% 30%, rgba(201, 134, 58, 0.7), rgba(201, 134, 58, 0.02));
}

.hero-orb--two {
  bottom: 8%;
  left: -3%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 40% 40%, rgba(15, 138, 114, 0.42), rgba(15, 138, 114, 0.02));
  animation-delay: -4s;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: end;
}

.hero__content {
  max-width: 670px;
  color: #fff;
}

.hero__content h1 {
  font-size: clamp(2.9rem, 5vw, 5.6rem);
  max-width: 12ch;
}

.hero__lead {
  max-width: 60ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #1d9f85);
  color: #fff;
  box-shadow: 0 20px 34px rgba(15, 138, 114, 0.24);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button--block {
  width: 100%;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(255, 245, 235, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-panel__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 33, 61, 0.08);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel__pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(15, 138, 114, 0.5);
  animation: pulse 2.8s ease-out infinite;
}

.hero-panel__label {
  margin: 18px 0 8px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.hero-panel h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.hero-panel__copy {
  margin: 16px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-panel__stats article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 0 0 1px rgba(19, 33, 61, 0.05);
}

.hero-panel__stats strong {
  display: block;
  font-size: 1.65rem;
  color: var(--ink);
}

.hero-panel__stats span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hero-progress {
  position: relative;
  height: 4px;
  margin-top: 26px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(19, 33, 61, 0.08);
}

.hero-progress__bar {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.hero-progress__bar.is-animating {
  animation: heroProgress 5.5s linear forwards;
}

.hero-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.hero-control {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(19, 33, 61, 0.08);
  color: var(--ink-soft);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hero-control.is-active,
.hero-control:hover,
.hero-control:focus-visible {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}

.impact {
  position: relative;
  margin-top: -54px;
  z-index: 1;
}

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

.impact-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 24, 49, 0.94), rgba(24, 49, 94, 0.88));
  color: #fff;
  box-shadow: 0 26px 42px rgba(15, 28, 56, 0.18);
}

.impact-card__number {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.impact-card__label {
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.76);
}

.impact-card__line {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.about-story,
.principle-card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-story h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 20px;
}

.about-story p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.82;
}

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

.principle-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.principle-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -44px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(15, 138, 114, 0.08);
}

.principle-card__index,
.service-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 138, 114, 0.12);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle-card h3,
.service-card h3,
.team-card h3,
.contact-card h3,
.site-footer h3 {
  margin: 18px 0 12px;
  font-size: 1.28rem;
}

.principle-card p,
.service-card p,
.team-card p,
.contact-card p,
.contact-card a,
.site-footer p,
.site-footer a {
  color: var(--ink-soft);
  line-height: 1.72;
}

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

.service-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 250, 244, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% 35%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 134, 58, 0.18), rgba(201, 134, 58, 0));
  transition: transform 280ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 28px 48px rgba(20, 38, 71, 0.14);
  border-color: rgba(15, 138, 114, 0.2);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scale(1.16);
}

.service-card--wide {
  grid-column: 1 / -1;
}

.software-marquee {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 24, 49, 0.92), rgba(24, 49, 94, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.software-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: scrollTrack 22s linear infinite;
}

.software-track + .software-track {
  margin-top: 18px;
}

.software-track--alt {
  animation-direction: reverse;
  animation-duration: 18s;
}

.software-track span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.team-card__head {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.team-card__photo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(19, 33, 61, 0.16);
}

.team-card__role {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.team-card__trait {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.team-card__body {
  margin-top: 22px;
}

.team-card__body > p {
  margin: 0;
}

.team-card__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.team-card.is-open .team-card__details {
  max-height: 560px;
}

.team-card__toggle {
  margin-top: auto;
  padding: 0;
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  font-weight: 800;
  cursor: pointer;
}

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

.contact-card {
  padding: 30px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-card--primary {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(201, 134, 58, 0.35), transparent 26%),
    linear-gradient(180deg, rgba(12, 24, 49, 0.96), rgba(24, 49, 94, 0.92));
}

.contact-card--primary .contact-callout a,
.contact-card--primary .office-list a,
.contact-card--primary .office-list__name,
.contact-card--primary p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-callout__label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.64) !important;
}

.contact-callout a {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.office-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.office-list article {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.office-list__name {
  margin: 0 0 6px;
  font-weight: 800;
}

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

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

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(19, 33, 61, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(15, 138, 114, 0.4);
  box-shadow: 0 0 0 4px rgba(15, 138, 114, 0.12);
  transform: translateY(-1px);
}

.contact-form__note {
  min-height: 24px;
  margin: 0;
}

.site-footer {
  position: relative;
  padding: 40px 0 28px;
  background: #0d1c39;
  color: #fff;
}

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

.site-footer h3 {
  color: #fff;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1dbb6f, #0f8a72);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(15, 138, 114, 0.3);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 138, 114, 0.48);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(15, 138, 114, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(15, 138, 114, 0);
  }
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20%);
  }
}

@media (max-width: 1080px) {
  .hero__layout,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    padding: 12px;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 249, 242, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 138px;
  }

  .hero-panel__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 88px 0;
  }

  .impact {
    margin-top: -24px;
  }

  .services-grid,
  .team-grid,
  .impact-grid,
  .principles-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    width: calc(100vw - 24px);
    margin-top: 12px;
  }

  .brand__text small {
    display: none;
  }

  .hero__content h1 {
    max-width: 13ch;
  }

  .hero-panel,
  .about-story,
  .principle-card,
  .service-card,
  .team-card,
  .contact-card,
  .software-marquee,
  .impact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .team-card__head {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

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

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