:root {
  --bg-0: #04060d;
  --bg-1: #0b1020;
  --bg-2: #121c36;
  --bg-soft: #111a30;
  --panel: rgba(13, 20, 40, 0.78);
  --panel-2: rgba(18, 28, 53, 0.68);
  --panel-3: rgba(8, 13, 25, 0.8);
  --text: #f5f8ff;
  --muted: #b0bdd8;
  --gold: #f4d178;
  --gold-2: #c98f2e;
  --gold-3: #8a6623;
  --stroke: rgba(244, 209, 120, 0.2);
  --stroke-strong: rgba(244, 209, 120, 0.48);
  --shadow-lg: 0 28px 82px rgba(0, 0, 0, 0.54);
  --shadow-md: 0 18px 46px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 620px at 6% -8%, rgba(244, 209, 120, 0.18), transparent 65%),
    radial-gradient(920px 560px at 96% 24%, rgba(79, 111, 219, 0.22), transparent 72%),
    linear-gradient(140deg, var(--bg-0), var(--bg-1) 44%, var(--bg-2));
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(54px);
  mix-blend-mode: screen;
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient-a {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(244, 209, 120, 0.5), transparent 67%);
  top: -150px;
  left: -170px;
}

.ambient-b {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(86, 116, 220, 0.34), transparent 70%);
  right: -220px;
  top: 34%;
  animation-duration: 17s;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 92%);
}

.announcement {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(90deg, rgba(8, 12, 24, 0.94), rgba(15, 22, 43, 0.92));
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
}

.announcement span {
  color: #d8e0f4;
}

.announcement a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.container {
  width: min(1740px, calc(100vw - clamp(24px, 4vw, 76px)));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 44px;
  z-index: 30;
  padding: 16px 0;
}

.header-inner {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(9, 14, 29, 0.82);
  backdrop-filter: blur(14px);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.brand span {
  color: var(--gold);
}

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  font-size: 0.9rem;
}

.site-nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: clamp(58px, 7vw, 108px) 0;
  position: relative;
}

.hero {
  padding-top: 20px;
}

.hero-grid {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(11, 18, 36, 0.94), rgba(18, 28, 53, 0.8));
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 2.8vw, 42px);
  align-items: center;
  padding: clamp(28px, 3.2vw, 54px);
  overflow: hidden;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: -35% -16%;
  background: linear-gradient(106deg, transparent 42%, rgba(244, 209, 120, 0.08) 50%, transparent 58%);
  animation: sheen 12s linear infinite;
  pointer-events: none;
}

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

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 0.93;
  text-wrap: balance;
}

.subheadline {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.62;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.support-line {
  margin: 14px 0 0;
  color: #e8edf9;
  font-weight: 500;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.hero-buttons.centered {
  justify-content: center;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 24px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: #131b2f;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 30px rgba(201, 143, 45, 0.44);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px rgba(201, 143, 45, 0.62), 0 0 34px rgba(244, 209, 120, 0.34);
}

.btn-secondary {
  border-color: var(--stroke);
  background: rgba(14, 22, 44, 0.72);
}

.btn-secondary:hover {
  border-color: var(--stroke-strong);
  background: rgba(18, 28, 53, 0.84);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(380px, 45vw, 660px);
}

.screen-shell {
  width: min(100%, 920px);
  min-height: clamp(370px, 34vw, 610px);
  border-radius: 24px;
  border: 1px solid var(--stroke-strong);
  background: linear-gradient(170deg, rgba(10, 15, 30, 0.95), rgba(18, 29, 56, 0.86));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.screen-top {
  height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.screen-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.screen-top p {
  margin: 0 0 0 8px;
  color: #99abd1;
  font-size: 0.83rem;
}

.screen-content {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.screen-metric {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: var(--panel-2);
  padding: 14px;
}

.screen-metric label {
  display: block;
  color: #97a9cd;
  font-size: 0.78rem;
}

.screen-metric strong {
  display: inline-block;
  margin-top: 6px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 2vw, 2.1rem);
}

.screen-wave {
  grid-column: span 2;
  height: clamp(94px, 11vw, 138px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(10, 15, 30, 0.9), rgba(6, 9, 18, 0.95));
  overflow: hidden;
  position: relative;
}

.screen-wave-bars {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(244, 209, 120, 0.9),
    rgba(244, 209, 120, 0.9) 2px,
    transparent 2px,
    transparent 8px
  );
  clip-path: polygon(0 72%, 7% 58%, 14% 64%, 24% 48%, 33% 56%, 43% 38%, 56% 50%, 68% 40%, 79% 47%, 89% 42%, 100% 49%, 100% 100%, 0 100%);
  animation: pulse 2.8s ease-in-out infinite;
}

.screen-tags {
  grid-column: span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.screen-tags span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #dfe5f5;
  background: rgba(255, 255, 255, 0.02);
}

.section-dark {
  background: linear-gradient(180deg, rgba(7, 10, 21, 0.6), rgba(8, 12, 25, 0.52));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-tint {
  background: linear-gradient(180deg, rgba(11, 17, 33, 0.42), rgba(15, 23, 44, 0.38));
}

.section-head {
  max-width: 980px;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(1.68rem, 3.4vw, 3.08rem);
  line-height: 1.04;
}

.intro {
  margin-top: 12px;
  max-width: 980px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.core-strip {
  padding: 28px 0 34px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(98deg, rgba(9, 13, 24, 0.92), rgba(17, 25, 47, 0.84));
}

.core-inner h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.35vw, 2rem);
}

.core-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.core-cards article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(16, 24, 45, 0.62);
}

.core-cards h3 {
  font-size: 1.06rem;
}

.core-cards p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.56;
}

.value-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.value-card,
.step-card,
.compare-card,
.download-card,
.visual-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.value-card:hover,
.step-card:hover,
.compare-card:hover,
.download-card:hover,
.visual-card:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-strong);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.value-card h3,
.step-card h3,
.compare-card h3,
.download-card h3,
.visual-card h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.24;
}

.value-card p,
.step-card p,
.compare-card li,
.download-card p,
.visual-card p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.visual-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.visual-card {
  background: linear-gradient(160deg, rgba(14, 20, 39, 0.8), rgba(17, 28, 54, 0.64));
}

.tool-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.tool-list {
  display: grid;
  gap: 7px;
}

.tool-list span {
  border: 1px dashed rgba(255, 154, 154, 0.58);
  border-radius: 10px;
  padding: 8px 10px;
  color: #ffb3b3;
  background: rgba(255, 89, 89, 0.07);
  font-size: 0.86rem;
}

.tool-arrow {
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.tool-target {
  border: 1px solid var(--stroke-strong);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  background: rgba(244, 209, 120, 0.12);
  color: #ffe7b2;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.workspace-mock,
.scheduler-mock {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(18, 29, 56, 0.58);
  padding: 15px;
}

.users {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.users span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(244, 209, 120, 0.08);
  font-size: 0.8rem;
}

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

.pipeline div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  background: rgba(8, 13, 24, 0.56);
  text-align: center;
}

.pipeline label {
  display: block;
  color: #93a5c8;
  font-size: 0.72rem;
}

.pipeline strong {
  font-family: "Sora", sans-serif;
  font-size: 1.24rem;
}

.compress-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.compress-line p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  padding: 10px 12px;
  background: rgba(9, 14, 27, 0.58);
  color: #dce4f7;
  font-weight: 500;
}

.compress-arrow {
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.quality-badge {
  margin-top: 12px;
  display: inline-flex;
  border: 1px solid var(--stroke-strong);
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffe8b8;
  background: rgba(244, 209, 120, 0.13);
  font-size: 0.82rem;
  font-weight: 600;
}

.scheduler-mock p {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.scheduler-mock span {
  margin-top: 10px;
  display: inline-flex;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px 10px;
  color: #f8e6bc;
  font-size: 0.8rem;
  background: rgba(244, 209, 120, 0.08);
}

.steps-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(244, 209, 120, 0.14);
  border: 1px solid rgba(244, 209, 120, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-pillars {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.team-pillars span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  background: rgba(244, 209, 120, 0.11);
  font-weight: 500;
}

.team-close {
  margin-top: 14px;
  color: #e8edf9;
  font-weight: 600;
}

.cost-highlight {
  margin-top: 16px;
  border: 1px solid var(--stroke-strong);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  background: linear-gradient(160deg, rgba(244, 209, 120, 0.1), rgba(10, 15, 31, 0.55));
}

.cost-highlight strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  color: var(--gold);
}

.compare-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-card ul {
  margin: 11px 0 0;
  padding-left: 18px;
}

.compare-card li {
  margin-bottom: 8px;
}

.compare-card.highlight {
  border-color: var(--stroke-strong);
  background: linear-gradient(170deg, rgba(25, 20, 10, 0.36), rgba(15, 23, 45, 0.78));
}

.reliability-card {
  border: 1px solid var(--stroke-strong);
  border-radius: 20px;
  padding: clamp(20px, 2.8vw, 34px);
  background: linear-gradient(162deg, rgba(15, 23, 45, 0.86), rgba(30, 22, 9, 0.38));
}

.reliability-card h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 3vw, 2.56rem);
}

.reliability-card p {
  margin: 12px 0 0;
  max-width: 880px;
  color: #c3cde3;
  line-height: 1.65;
}

.download-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.download-card {
  background: linear-gradient(160deg, rgba(13, 20, 40, 0.78), rgba(18, 28, 53, 0.66));
}

.download-card .btn {
  margin-top: 14px;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: var(--panel);
  padding: 14px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  text-align: center;
}

.final-cta .container {
  border: 1px solid var(--stroke-strong);
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(15, 23, 44, 0.9), rgba(30, 21, 8, 0.34));
  padding: clamp(24px, 4vw, 46px) clamp(18px, 3vw, 38px);
}

.final-cta h2 {
  font-size: clamp(1.62rem, 3.4vw, 2.92rem);
}

.final-cta p {
  margin: 12px auto 0;
  max-width: 840px;
  color: var(--muted);
  line-height: 1.66;
}

.positioning.statement {
  margin-top: 18px;
  max-width: 980px;
}

.muted {
  color: #9aabcc;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  background: rgba(7, 10, 20, 0.86);
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #9aacce;
  font-size: 0.9rem;
}

.footer-inner a {
  color: var(--gold);
  text-decoration: none;
  margin-left: 10px;
}

/* Legal pages */
.page {
  width: min(1100px, calc(100vw - 28px));
  margin: 36px auto;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: rgba(9, 13, 25, 0.86);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.topbar {
  border-bottom: 1px solid var(--stroke);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

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

.nav a {
  color: var(--gold);
  text-decoration: none;
}

.page .section {
  padding: 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page .section:last-child {
  border-bottom: 0;
}

.page h2 {
  font-size: 1.35rem;
}

.page p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.page a {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: reveal 0.65s ease forwards;
}

.delay-1 {
  animation-delay: 0.09s;
}

.delay-2 {
  animation-delay: 0.18s;
}

.delay-3 {
  animation-delay: 0.27s;
}

.delay-4 {
  animation-delay: 0.36s;
}

.float-y {
  animation: floatY 5.2s ease-in-out infinite;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(11px, -16px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.08);
  }
}

@keyframes sheen {
  from {
    transform: translateX(-22%);
  }
  to {
    transform: translateX(22%);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1320px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .site-header {
    top: 42px;
  }
}

@media (max-width: 1080px) {
  .core-cards,
  .value-grid,
  .value-grid.four,
  .visual-grid,
  .steps-grid,
  .team-pillars,
  .compare-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .tool-flow {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .tool-arrow {
    transform: rotate(90deg);
  }

  .screen-content {
    grid-template-columns: 1fr;
  }

  .screen-wave,
  .screen-tags {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1740px, calc(100vw - 16px));
  }

  .site-header {
    top: 58px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .announcement {
    flex-wrap: wrap;
    text-align: center;
    padding: 10px;
  }

  .hero-grid {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .section {
    padding: 42px 0;
  }

  h1 {
    font-size: clamp(2.04rem, 10vw, 3rem);
  }

  .footer-inner a {
    margin-left: 0;
    margin-right: 10px;
  }
}

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