:root {
  --ink: #0d0d0e;
  --void: #111112;
  --graphite: #19191c;
  --panel: #202024;
  --soft: #ece9e4;
  --muted: #aaa39a;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e1251b;
  --red-deep: #a81813;
  --white: #fff8f0;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Outfit", "Segoe UI", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.05;
  background-image:
    repeating-radial-gradient(circle at 13% 27%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255, 255, 255, 0.28) 7px 8px);
  mix-blend-mode: overlay;
}

.page-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(225, 37, 27, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--ink), #151515 44%, #0f0f10);
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100vw - 32px));
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(15, 15, 16, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  transition: transform 700ms var(--ease), background 700ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(13, 13, 14, 0.86);
}

.brand-mark,
.footer-logo {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8f4ef;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.brand-mark img,
.footer-logo img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(255, 248, 240, 0.74);
  font-size: 14px;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  transition: color 500ms var(--ease);
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 550ms var(--ease);
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 999px;
  padding: 8px 10px 8px 22px;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0;
  transform-style: preserve-3d;
  transition: transform 700ms var(--ease), background 700ms var(--ease), border-color 700ms var(--ease);
}

.nav-cta {
  color: var(--white);
  background: var(--red);
}

.btn {
  min-height: 56px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.nav-cta i,
.btn i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 700ms var(--ease), background 700ms var(--ease);
}

.nav-cta i::before,
.btn i::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav-cta:hover i,
.btn:hover i {
  transform: translateX(4px) scale(1.06);
  background: rgba(255, 255, 255, 0.22);
}

.nav-cta:active,
.btn:active {
  transform: scale(0.98);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 500ms var(--ease);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(30px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 550ms var(--ease), transform 550ms var(--ease);
}

.mobile-menu a {
  font-size: clamp(30px, 10vw, 56px);
  font-weight: 800;
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section,
.section-dark {
  position: relative;
  padding: clamp(92px, 13vw, 178px) clamp(18px, 5vw, 76px);
}

.section {
  background: var(--soft);
  color: var(--void);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.hero {
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding-top: 150px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media img,
.manifest-bg img,
.geo-scene > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 13, 0.94) 0%, rgba(12, 12, 13, 0.76) 42%, rgba(12, 12, 13, 0.56) 100%),
    radial-gradient(circle at 78% 22%, rgba(225, 37, 27, 0.28), transparent 28rem),
    linear-gradient(180deg, transparent 58%, var(--ink));
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.roof-line {
  position: absolute;
  right: -2vw;
  top: 20vh;
  z-index: -1;
  width: min(820px, 72vw);
  overflow: visible;
}

.roof-line path {
  fill: none;
  stroke: var(--red);
  stroke-width: 10;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 14px 28px rgba(225, 37, 27, 0.32));
}

.roof-line .thin {
  stroke-width: 2;
  opacity: 0.34;
}

.hero-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 7vw, 92px);
}

.hero-copy {
  padding-bottom: clamp(38px, 7vw, 86px);
}

.hero-logo-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-logo-line img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.hero-logo-line span {
  color: rgba(255, 248, 240, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.micro-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  border: 1px solid currentColor;
  border-color: rgba(225, 37, 27, 0.42);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
h2 {
  margin: 0;
  max-width: min(1120px, 92vw);
  font-size: clamp(52px, 7.2vw, 116px);
  line-height: 0.91;
  letter-spacing: 0;
  font-weight: 800;
  overflow-wrap: normal;
}

.split-text span {
  display: inline-block;
}

h2 {
  font-size: clamp(42px, 5.8vw, 92px);
}

.hero-lead,
.deal-copy p,
.manifest-content p,
.geo-copy p,
.final-cta p {
  max-width: 700px;
  color: rgba(255, 248, 240, 0.72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-index {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 28px;
  display: flex;
  gap: 18px;
  color: rgba(255, 248, 240, 0.42);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  width: min(1200px, 100%);
  margin: 0 auto clamp(40px, 7vw, 86px);
}

.section-heading.wide h2 {
  max-width: min(1180px, 94vw);
}

.trust-layout {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.trust-panel {
  border-top: 2px solid var(--red);
  padding-top: 30px;
}

.trust-panel p {
  margin: 0 0 44px;
  color: rgba(17, 17, 18, 0.72);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
}

.trust-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(17, 17, 18, 0.14);
}

.trust-matrix span {
  min-height: 118px;
  display: flex;
  align-items: end;
  padding: 18px;
  background: var(--soft);
  font-weight: 700;
}

.no-wrap-region {
  white-space: nowrap;
  max-width: 100%;
}

.image-stack {
  position: relative;
  min-height: 640px;
}

.image-shell {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(13, 13, 14, 0.08);
  background: var(--graphite);
}

.image-shell img,
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.07);
}

.image-shell.tall {
  right: 0;
  top: 0;
  width: 56%;
  height: 520px;
  border-radius: 38px;
}

.image-shell.wide {
  left: 0;
  bottom: 0;
  width: 68%;
  height: 330px;
  border-radius: 30px;
}

.services {
  background:
    radial-gradient(circle at 84% 8%, rgba(225, 37, 27, 0.18), transparent 34rem),
    var(--ink);
}

.inline-photo {
  display: inline-block;
  width: clamp(78px, 12vw, 176px);
  height: 0.54em;
  border: 3px solid rgba(225, 37, 27, 0.72);
  border-radius: 999px;
  overflow: hidden;
  vertical-align: middle;
}

.inline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.35);
}

.service-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  display: flex;
  align-items: end;
  overflow: hidden;
  min-height: 320px;
  border-radius: 34px;
  background: var(--panel);
  isolation: isolate;
  transition: transform 700ms var(--ease);
}

.service-card.large {
  grid-column: span 7;
  grid-row: span 4;
}

.service-card.tall {
  grid-column: span 5;
  grid-row: span 5;
}

.service-card.wide-card {
  grid-column: span 8;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.04), rgba(10, 10, 11, 0.88)),
    linear-gradient(90deg, rgba(225, 37, 27, 0.2), transparent 46%);
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 1300ms var(--ease), filter 1300ms var(--ease);
}

.service-card div {
  padding: clamp(22px, 3vw, 34px);
}

.service-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3 {
  max-width: 440px;
  margin: 10px 0 12px;
  font-size: clamp(26px, 3vw, 45px);
  line-height: 0.98;
}

.service-card p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 248, 240, 0.72);
  font-size: 17px;
  line-height: 1.45;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover img {
  transform: scale(1.07);
  filter: saturate(0.78) contrast(1.18) brightness(0.85);
}

.deal-map {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.deal-copy {
  max-width: 520px;
  justify-self: end;
}

.deal-copy p,
.geo-copy p {
  color: rgba(17, 17, 18, 0.68);
}

.route-board {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(17, 17, 18, 0.12);
  border-radius: 44px;
  background:
    linear-gradient(rgba(17, 17, 18, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 18, 0.06) 1px, transparent 1px),
    #e7e2da;
  background-size: 46px 46px;
  overflow: hidden;
}

.route-line {
  position: absolute;
  inset: 7%;
  width: 86%;
  height: 86%;
}

.route-line path {
  fill: none;
  stroke: var(--red);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: min(210px, 31vw);
  padding: 14px;
  border: 1px solid rgba(17, 17, 18, 0.14);
  border-radius: 22px;
  background: rgba(236, 233, 228, 0.82);
  box-shadow: 0 20px 60px rgba(17, 17, 18, 0.12);
}

.step-node span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

.step-node strong {
  font-size: 16px;
  line-height: 1.15;
}

.manifest {
  min-height: 92dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

.manifest-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 60%, rgba(225, 37, 27, 0.34), transparent 22rem),
    linear-gradient(90deg, rgba(13, 13, 14, 0.94), rgba(13, 13, 14, 0.62)),
    linear-gradient(180deg, transparent, var(--ink));
}

.light-sweep {
  position: absolute;
  width: 42vw;
  height: 160vh;
  left: 50%;
  top: -30%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(225, 37, 27, 0.15), transparent);
  transform: rotate(18deg);
  filter: blur(18px);
}

.manifest-content {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.manifest-content h2 {
  max-width: 980px;
}

.geo {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.geo-copy {
  width: min(1240px, 100%);
  max-width: 100%;
  margin: 0 auto;
  justify-self: center;
  min-width: 0;
}

.geo-copy h2 {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(24px, 4.25vw, 64px);
  line-height: 1;
}

.geo-scene {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  min-height: 600px;
  overflow: hidden;
  border-radius: 48px;
  background: var(--graphite);
}

.geo-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 14, 0.78), rgba(13, 13, 14, 0.22)),
    radial-gradient(circle at 60% 36%, rgba(225, 37, 27, 0.35), transparent 20rem);
}

.region-map {
  position: absolute;
  inset: 11%;
  z-index: 1;
  width: 78%;
  height: 78%;
}

.map-area {
  fill: rgba(13, 13, 14, 0.22);
  stroke: rgba(255, 248, 240, 0.7);
  stroke-width: 2;
}

.map-route {
  fill: none;
  stroke: var(--red);
  stroke-width: 6;
  stroke-linecap: round;
}

.map-dot {
  fill: var(--white);
  stroke: var(--red);
  stroke-width: 4;
}

.map-dot.main {
  fill: var(--red);
  stroke: var(--white);
}

.geo-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 248, 240, 0.3);
  color: rgba(255, 248, 240, 0.76);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-cta {
  padding-bottom: clamp(72px, 10vw, 130px);
}

.cta-frame {
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 82px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 54px;
  background:
    radial-gradient(circle at 86% 20%, rgba(225, 37, 27, 0.22), transparent 24rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 48px 110px rgba(0, 0, 0, 0.34);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(36px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.12);
}

.contact-grid a {
  min-height: 116px;
  display: flex;
  align-items: end;
  padding: 18px;
  background: #151516;
  color: rgba(255, 248, 240, 0.82);
  transition: background 500ms var(--ease), color 500ms var(--ease);
}

.contact-grid a:hover {
  background: var(--red);
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 76px) 54px;
  color: rgba(255, 248, 240, 0.72);
  background: var(--ink);
}

.footer-logo {
  width: 76px;
  height: 76px;
  border-radius: 24px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer span {
  margin-top: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 22px;
  font-size: 14px;
}

.reveal,
.mask-reveal,
.image-reveal {
  will-change: transform, opacity;
}

.image-reveal {
  clip-path: inset(0 0 100% 0 round 34px);
}

.image-failed {
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.2), transparent),
    repeating-linear-gradient(45deg, #19191c 0 12px, #242428 12px 24px);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero-inner,
  .trust-layout,
  .deal-map,
  .geo {
    grid-template-columns: 1fr;
  }

  .deal-copy,
  .geo-copy {
    justify-self: start;
  }

  .service-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-card,
  .service-card.large,
  .service-card.tall,
  .service-card.wide-card {
    grid-column: span 3;
    grid-row: span 3;
  }
}

@media (max-width: 760px) {
  .section,
  .section-dark {
    padding: 84px 16px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-title,
  h2 {
    font-size: clamp(36px, 10.7vw, 42px);
    line-height: 0.96;
  }

  .hero-title {
    max-width: 100%;
  }

  .geo-copy h2 {
    font-size: clamp(15px, 4.45vw, 17px);
    line-height: 1;
  }

  .trust-matrix .no-wrap-region {
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .hero-lead,
  .deal-copy p,
  .manifest-content p,
  .geo-copy p,
  .final-cta p {
    font-size: 18px;
  }

  .hero-index {
    display: none;
  }

  .roof-line {
    top: 13vh;
    width: 112vw;
    opacity: 0.55;
  }

  .trust-matrix,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .image-shell,
  .image-shell.tall,
  .image-shell.wide {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1.1;
    inset: auto;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .service-card,
  .service-card.large,
  .service-card.tall,
  .service-card.wide-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }

  .route-board,
  .geo-scene {
    min-height: 540px;
    border-radius: 34px;
  }

  .step-node {
    width: 168px;
    padding: 12px;
  }

  .step-node strong {
    font-size: 14px;
  }

  .cta-actions,
  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: start;
  }
}

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