:root {
  --bg: #06111f;
  --ink: #f6fbff;
  --muted: #a9b7cf;
  --soft: #d9e8f8;
  --line: rgba(169, 183, 207, 0.16);
  --panel: rgba(10, 20, 36, 0.76);
  --panel-strong: rgba(13, 27, 47, 0.92);
  --cyan: #58b7ff;
  --mint: #4de2c5;
  --rose: #ff5d7a;
  --amber: #ffc857;
  --green: #56d873;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(140deg, rgba(6, 17, 31, 0.96), rgba(9, 22, 38, 0.96)),
    #06111f;
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 16% 8%, rgba(88, 183, 255, 0.22), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(77, 226, 197, 0.18), transparent 25%),
    radial-gradient(circle at 70% 78%, rgba(255, 93, 122, 0.12), transparent 32%),
    linear-gradient(180deg, #06111f 0%, #071323 44%, #091829 100%);
}

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

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

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  left: 18px;
  top: 18px;
  z-index: 20;
  clip: auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: #0b1728;
  border: 1px solid var(--cyan);
}

.hero-scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.scene-grid {
  position: absolute;
  inset: -10%;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(88, 183, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 183, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(900px) rotateX(58deg) translateY(-18%);
  transform-origin: top;
  animation: gridDrift 18s linear infinite alternate;
}

.scene-panel,
.scene-beam {
  position: absolute;
  border: 1px solid rgba(88, 183, 255, 0.18);
  background: rgba(7, 18, 33, 0.7);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.scene-panel {
  display: grid;
  gap: 6px;
  width: 220px;
  padding: 16px;
  border-radius: 8px;
  opacity: 0.24;
  animation: floatPanel 10s ease-in-out infinite alternate;
}

.scene-panel span,
.scene-panel small {
  color: var(--muted);
  font-size: 0.78rem;
}

.scene-panel strong {
  color: var(--ink);
}

.scene-panel-score {
  top: 19%;
  right: 12%;
}

.scene-panel-score strong {
  color: var(--mint);
  font-size: 2.6rem;
}

.scene-panel-rnx {
  top: 84%;
  left: 5%;
  opacity: 0.16;
  animation-delay: 1s;
}

.scene-panel-rnx span {
  color: var(--amber);
}

.scene-panel-flow {
  right: 8%;
  bottom: 10%;
  width: 310px;
  animation-delay: 2s;
}

.scene-beam {
  width: 1px;
  height: 46vh;
  background: linear-gradient(180deg, transparent, rgba(77, 226, 197, 0.8), transparent);
  border: 0;
  opacity: 0.25;
  transform: rotate(38deg);
  animation: beamDrift 8s ease-in-out infinite alternate;
}

.scene-beam-a {
  left: 24%;
  top: 18%;
}

.scene-beam-b {
  right: 30%;
  top: 38%;
  background: linear-gradient(180deg, transparent, rgba(255, 93, 122, 0.62), transparent);
  animation-delay: 1.5s;
}

@keyframes floatPanel {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(12px, -18px, 0); }
}

@keyframes beamDrift {
  from { transform: rotate(38deg) translateY(-16px); }
  to { transform: rotate(38deg) translateY(22px); }
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 54px 32px; }
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 42px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(169, 183, 207, 0.14);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.8);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
}

.brand-icon-wrap {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
}

.brand-icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-wordmark-wrap img {
  width: 124px;
  height: auto;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.topnav a:hover,
.topnav a[aria-current="page"] {
  color: var(--ink);
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.topbar-cta:hover {
  transform: translateY(-1px);
}

.topbar-cta,
.button.secondary {
  border-color: rgba(88, 183, 255, 0.24);
  background: rgba(88, 183, 255, 0.1);
}

.button.primary {
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  color: #03101c;
  box-shadow: 0 18px 46px rgba(77, 226, 197, 0.22);
}

.button.primary:hover {
  box-shadow: 0 24px 60px rgba(77, 226, 197, 0.3);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0 64px;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 5.2vw, 4.95rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h2,
h3,
p,
li,
a {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 span {
  display: block;
}

@media (min-width: 681px) {
  h1 span {
    white-space: nowrap;
  }
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-lead,
.section-heading p,
.split-copy p,
.selection-copy p,
.final-cta p {
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cta-microcopy {
  flex-basis: 100%;
  margin: 10px 0 0;
  color: rgba(217, 232, 248, 0.76);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof-row span {
  padding: 8px 10px;
  border: 1px solid rgba(169, 183, 207, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
}

.product-visual {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(88, 183, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 25, 44, 0.92), rgba(8, 17, 31, 0.92)),
    rgba(7, 17, 31, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(77, 226, 197, 0.1), transparent);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-80%); opacity: 0; }
  45%, 55% { opacity: 1; }
  100% { transform: translateX(80%); }
}

.visual-header,
.signal-row,
.issue-strip,
.selection-matrix,
.footer {
  position: relative;
  z-index: 1;
}

.visual-header,
.signal-row,
.issue-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.visual-header {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.visual-header span,
.signal-row span,
.selection-matrix span,
.trust-grid p,
.why-now-grid p,
.pricing-copy p,
.feature-grid p,
.contrast-grid p,
.compare-card li,
.pricing-card li,
.pricing-assurance span,
.rnx-grid small,
.footer p {
  color: var(--muted);
}

.visual-header strong {
  display: block;
  margin-top: 4px;
}

.visual-status {
  padding: 7px 9px;
  border-radius: 8px;
  color: #07111f;
  background: var(--mint);
  font-weight: 900;
  font-size: 0.78rem;
}

.score-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
  isolation: isolate;
}

.score-ring {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    conic-gradient(var(--mint) 0 72%, rgba(88, 183, 255, 0.18) 72% 100%);
  box-shadow:
    inset 0 0 0 18px rgba(7, 17, 31, 0.96),
    0 0 44px rgba(77, 226, 197, 0.18);
  animation: pulseRing 3.6s ease-in-out infinite;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 37px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 42%, rgba(77, 226, 197, 0.12), transparent 54%),
    rgba(8, 18, 33, 0.96);
  box-shadow: inset 0 0 24px rgba(88, 183, 255, 0.08);
}

@keyframes pulseRing {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(77, 226, 197, 0.1)); }
  50% { filter: drop-shadow(0 0 28px rgba(77, 226, 197, 0.34)); }
}

.score-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 148px;
  min-height: 128px;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  justify-items: center;
  gap: 6px;
  text-align: center;
  pointer-events: none;
}

.score-center span,
.score-center small {
  color: rgba(217, 232, 248, 0.78);
  line-height: 1.2;
  text-shadow: 0 1px 14px rgba(6, 17, 31, 0.78);
}

.score-center span {
  font-size: 0.82rem;
  font-weight: 800;
}

.score-center strong {
  color: var(--mint);
  font-size: clamp(3.35rem, 5.2vw, 4.15rem);
  line-height: 0.86;
  text-shadow: 0 0 24px rgba(77, 226, 197, 0.22);
}

.score-center small {
  max-width: 112px;
  font-size: 0.78rem;
}

.signal-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.signal-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.signal-row i,
.weight-row i {
  grid-column: 1 / -1;
  display: block;
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(169, 183, 207, 0.15);
}

.signal-row i::after,
.weight-row i::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  animation: fillBar 1.25s ease-out both;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: var(--w); }
}

.issue-strip {
  flex-wrap: wrap;
}

.issue-strip span {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--amber);
  background: rgba(255, 200, 87, 0.09);
  border: 1px solid rgba(255, 200, 87, 0.18);
  font-weight: 900;
}

.section-band {
  padding: 76px 0;
  border-top: 1px solid rgba(169, 183, 207, 0.1);
}

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

.compact-heading {
  max-width: 940px;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}

.split-copy h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
}

.contrast-grid,
.feature-grid,
.rnx-grid,
.comparison-grid,
.trust-grid,
.why-now-grid {
  display: grid;
  gap: 14px;
}

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

.feature-grid,
.rnx-grid,
.trust-grid,
.why-now-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contrast-grid article,
.feature-grid article,
.why-now-grid article,
.rnx-grid article,
.compare-card,
.pricing-card,
.trust-grid article,
.penalty-panel,
.selection-matrix > div {
  border: 1px solid rgba(169, 183, 207, 0.14);
  border-radius: 8px;
  background: rgba(11, 23, 41, 0.72);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
}

.contrast-grid article,
.feature-grid article,
.why-now-grid article,
.trust-grid article {
  padding: 22px;
}

.contrast-grid article span,
.feature-grid article span,
.why-now-grid article span,
.compare-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid article:nth-child(2n) span {
  color: var(--cyan);
}

.feature-grid article:nth-child(3n) span {
  color: var(--amber);
}

.why-now-section {
  position: relative;
}

.why-now-grid article {
  background:
    linear-gradient(180deg, rgba(88, 183, 255, 0.08), rgba(11, 23, 41, 0.72)),
    rgba(11, 23, 41, 0.72);
}

.why-now-grid article:nth-child(2) span {
  color: var(--cyan);
}

.why-now-grid article:nth-child(3) span {
  color: var(--amber);
}

.scoring-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 16px;
}

.weights-list {
  display: grid;
  gap: 12px;
}

.weight-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(88, 183, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 17, 31, 0.66);
}

.weight-row strong {
  color: var(--mint);
  text-align: right;
}

.penalty-panel {
  padding: 24px;
  border-color: rgba(255, 93, 122, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 93, 122, 0.08), rgba(11, 23, 41, 0.78)),
    rgba(11, 23, 41, 0.72);
}

.penalty-panel span {
  color: var(--rose);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.penalty-panel ul,
.compare-card ul,
.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.penalty-panel li,
.compare-card li,
.pricing-card li {
  position: relative;
  padding-left: 20px;
  line-height: 1.48;
}

.penalty-panel li::before,
.compare-card li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mint);
}

.penalty-panel li::before {
  background: var(--rose);
}

.rnx-grid article {
  display: grid;
  gap: 7px;
  padding: 18px;
}

.rnx-grid strong {
  color: var(--amber);
  font-size: 1.05rem;
}

.rnx-grid span {
  color: var(--ink);
  font-weight: 800;
}

.compare-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.paid-card {
  border-color: rgba(77, 226, 197, 0.34);
  background:
    linear-gradient(180deg, rgba(77, 226, 197, 0.09), rgba(11, 23, 41, 0.78)),
    rgba(11, 23, 41, 0.72);
}

.free-card {
  border-color: rgba(88, 183, 255, 0.2);
}

.full-width {
  width: 100%;
  margin-top: 8px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-copy {
  align-self: center;
}

.pricing-copy h2 {
  max-width: 720px;
}

.pricing-card {
  padding: 26px;
  border-color: rgba(77, 226, 197, 0.28);
  background:
    linear-gradient(135deg, rgba(77, 226, 197, 0.11), rgba(88, 183, 255, 0.06)),
    rgba(11, 23, 41, 0.78);
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.pricing-card-top span {
  display: block;
  color: var(--soft);
  font-weight: 900;
}

.pricing-card-top strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
}

.pricing-card-top small {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 800;
}

.pricing-card .button {
  margin-top: 3px;
  white-space: nowrap;
}

.pricing-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pricing-assurance span {
  padding: 8px 10px;
  border: 1px solid rgba(77, 226, 197, 0.18);
  border-radius: 8px;
  background: rgba(77, 226, 197, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
}

.selection-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 30px;
  align-items: center;
}

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

.selection-matrix > div {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
}

.selection-matrix strong {
  font-size: 2rem;
}

.selection-matrix div:first-child strong {
  color: var(--cyan);
}

.selection-matrix div:last-child strong {
  color: var(--mint);
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin: 64px 0 24px;
  padding: 34px;
  border: 1px solid rgba(77, 226, 197, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(77, 226, 197, 0.12), rgba(88, 183, 255, 0.07)),
    rgba(9, 22, 38, 0.8);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.final-cta p {
  max-width: 820px;
  margin-bottom: 0;
}

.final-actions {
  min-width: 0;
  justify-content: flex-start;
  margin-top: 0;
  max-width: 820px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 0;
  color: var(--muted);
}

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

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

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

@media (max-width: 980px) {
  .scene-panel,
  .scene-beam {
    display: none;
  }

  .topbar {
    position: relative;
    top: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .topnav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-section,
  .split-copy,
  .scoring-layout,
  .pricing-layout,
  .selection-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 52px;
  }

  .product-visual {
    max-width: 620px;
  }

  .feature-grid,
  .rnx-grid,
  .trust-grid,
  .why-now-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-wordmark-wrap img {
    width: 106px;
  }

  .topbar-cta {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: 1.02;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .contrast-grid,
  .feature-grid,
  .rnx-grid,
  .comparison-grid,
  .trust-grid,
  .why-now-grid,
  .selection-matrix {
    grid-template-columns: 1fr;
  }

  .section-band {
    padding: 62px 0;
  }

  .score-ring {
    width: 190px;
    height: 190px;
  }

  .score-center {
    width: 126px;
    min-height: 112px;
    gap: 4px;
  }

  .score-center strong {
    font-size: 3.35rem;
  }

  .pricing-card-top {
    display: grid;
  }

  .pricing-card .button {
    width: 100%;
    white-space: normal;
  }

  .footer {
    flex-direction: column;
  }
}

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