:root {
  --tmx-primary-950: #102d4b;
  --tmx-primary-900: #163a5f;
  --tmx-primary-800: #1b466f;
  --tmx-primary-700: #1f4e79;
  --tmx-primary-600: #2563a6;
  --tmx-accent: #28a5a3;
  --tmx-background: #f3f6fa;
  --tmx-surface: #ffffff;
  --tmx-surface-subtle: #f8fafc;
  --tmx-text: #172033;
  --tmx-muted: #667085;
  --tmx-border: #d8e0ea;
  --tmx-danger: #b42318;
  --tmx-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --tmx-shadow-md: 0 16px 38px rgba(15, 23, 42, 0.12);
  --tmx-page-width: 1500px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--tmx-background);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 5%, rgba(37, 99, 166, 0.07), transparent 26rem),
    var(--tmx-background);
  color: var(--tmx-text);
  font-family: inherit;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

a {
  color: var(--tmx-primary-600);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(37, 99, 166, 0.3);
  outline-offset: 3px;
}

.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;
}

.tmx-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--tmx-surface);
  color: var(--tmx-primary-900);
  box-shadow: var(--tmx-shadow-md);
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

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

.tmx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  min-height: 64px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(105deg, var(--tmx-primary-900), var(--tmx-primary-700));
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.16);
}

.tmx-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}

.tmx-brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tmx-brand-name {
  font-size: 17px;
  font-weight: 700;
}

.tmx-header-title {
  justify-self: center;
  font-size: 15px;
  font-weight: 650;
}

.tmx-menu {
  position: relative;
}

.tmx-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.tmx-system-status {
  display: flex;
  align-items: center;
  height: 62px;
}

.tmx-status-gauge {
  width: 92px;
  height: 58px;
}

.tmx-gauge-value {
  color: #ffffff;
  font-size: 12px;
  font-weight: 750;
}

.tmx-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 5px 10px 5px 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.tmx-menu-btn:hover,
.tmx-menu.is-open .tmx-menu-btn {
  background: rgba(255, 255, 255, 0.16);
}

.tmx-menu-avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--tmx-primary-900);
  font-size: 10px;
  font-weight: 800;
}

.tmx-menu-label {
  font-size: 13px;
  font-weight: 650;
}

.tmx-menu-chevron {
  position: relative;
  top: -1px;
  font-size: 16px;
}

.tmx-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--tmx-border);
  border-radius: 10px;
  background: var(--tmx-surface);
  box-shadow: var(--tmx-shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.tmx-menu.is-open .tmx-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.tmx-menu-item {
  display: block;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--tmx-text);
  font-size: 14px;
  text-decoration: none;
}

.tmx-menu-item:hover {
  background: var(--tmx-surface-subtle);
}

.tmx-menu-item-danger {
  color: var(--tmx-danger);
}

.tmx-page {
  width: min(calc(100% - 40px), var(--tmx-page-width));
  margin: 0 auto;
  padding: 30px 0 46px;
}

.portal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(115deg, rgba(16, 45, 75, 0.98), rgba(31, 78, 121, 0.94)),
    var(--tmx-primary-900);
  color: #ffffff;
  box-shadow: var(--tmx-shadow-md);
}

.portal-hero::after {
  position: absolute;
  inset: auto auto -180px -100px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.portal-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(34px, 5vw, 70px);
}

.tmx-eyebrow,
.tmx-section-label {
  margin: 0 0 6px;
  color: #70d4d0;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.portal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.portal-introduction {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.portal-search {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  max-width: 660px;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.portal-search:focus-within {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.15);
}

.portal-search svg {
  width: 21px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.portal-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
}

.portal-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.portal-search kbd {
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 12px;
}

.portal-featured {
  position: relative;
  z-index: 2;
  align-self: center;
  margin: 32px 38px 32px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 50px rgba(2, 20, 38, 0.26);
  backdrop-filter: blur(12px);
}

.portal-featured-preview { padding: 15px 15px 0; }
.featured-window-bar { display: flex; align-items: center; gap: 5px; height: 25px; padding: 0 9px; border-radius: 8px 8px 0 0; background: #e8eef5; color: #61738a; font-size: 8px; font-weight: 750; }
.featured-window-bar i { width: 5px; height: 5px; border-radius: 50%; background: #9eb0c1; }
.featured-window-bar span { margin-left: auto; }
.featured-window-body { display: grid; grid-template-columns: 31% 1fr; min-height: 145px; background: #f8fafc; }
.featured-sidebar { display: flex; flex-direction: column; gap: 9px; padding: 13px 10px; border-right: 1px solid #dbe3ec; color: #315474; font-size: 7px; }
.featured-sidebar span { height: 11px; border: 1px solid #d4dee8; border-radius: 3px; background: #fff; }
.featured-content { padding: 11px; }
.featured-tabs { display: flex; gap: 10px; color: #73869a; font-size: 7px; }
.featured-tabs b { color: var(--tmx-primary-700); border-bottom: 2px solid var(--tmx-accent); }
.featured-chart { position: relative; display: flex; align-items: end; gap: 7px; height: 76px; margin-top: 10px; padding: 5px 12px; border-left: 1px solid #b9c8d7; border-bottom: 1px solid #b9c8d7; }
.featured-chart::after { position: absolute; inset: 18px 6px auto 7px; height: 2px; background: var(--tmx-accent); box-shadow: 22px 12px 0 var(--tmx-primary-600), 48px 3px 0 var(--tmx-accent); content: ""; transform: rotate(-9deg); }
.featured-chart i { flex: 1; height: 32%; background: #9ab4cc; }
.featured-chart i:nth-child(2) { height: 48%; }
.featured-chart i:nth-child(3) { height: 67%; background: #4f82b0; }
.featured-chart i:nth-child(4) { height: 52%; }
.featured-chart i:nth-child(5) { height: 78%; background: #2aa7a3; }
.featured-pills { display: flex; gap: 5px; margin-top: 9px; }
.featured-pills span { padding: 3px 6px; border-radius: 10px; background: #e7eef5; color: #61738a; font-size: 6px; }
.portal-featured-copy { padding: 15px 18px 18px; }
.portal-featured-copy p { margin: 0; color: #70d4d0; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.portal-featured-copy h2 { margin: 2px 0 3px; font-size: 20px; }
.portal-featured-copy > span { display: block; color: rgba(255,255,255,.7); font-size: 11px; }
.portal-featured-copy a { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: #fff; font-size: 12px; font-weight: 750; text-decoration: none; }
.portal-featured-copy a:hover { color: #70d4d0; }
.portal-featured-copy a b { font-size: 16px; }

.portal-directory {
  padding-top: 42px;
}

.portal-directory-heading,
.app-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.portal-directory-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.tmx-section-label {
  color: var(--tmx-primary-600);
}

.portal-result-count {
  margin: 0 0 4px;
  color: var(--tmx-muted);
  font-size: 13px;
}

.portal-filter-row {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  padding-bottom: 4px;
  overflow-x: auto;
}

.portal-filter {
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid var(--tmx-border);
  border-radius: 999px;
  background: var(--tmx-surface);
  color: var(--tmx-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.portal-filter:hover {
  border-color: var(--tmx-primary-600);
  color: var(--tmx-primary-700);
}

.portal-filter.is-active {
  border-color: var(--tmx-primary-700);
  background: var(--tmx-primary-700);
  color: #ffffff;
}

.app-section {
  margin-top: 36px;
}

.app-section-heading {
  align-items: baseline;
  margin-bottom: 15px;
}

.app-section-heading h3 {
  margin: 0;
  font-size: 18px;
}

.app-section-heading span {
  color: var(--tmx-muted);
  font-size: 12px;
}

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

.app-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--tmx-border);
  border-radius: 15px;
  background: var(--tmx-surface);
  box-shadow: var(--tmx-shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.app-card::before {
  position: absolute;
  z-index: 4;
  inset: 0 auto 0 0;
  width: 5px;
  background: #94a3b8;
  content: "";
}

.app-card-access-granted {
  border-color: rgba(40, 165, 109, 0.45);
  box-shadow: inset 0 0 0 1px rgba(40, 165, 109, 0.08), var(--tmx-shadow-sm);
}
.app-card-access-granted::before { background: #28a56d; }
.app-card-access-denied { border-color: rgba(214, 79, 69, 0.4); }
.app-card-access-denied::before { background: #d64f45; }
.app-card-access-denied .app-preview { filter: saturate(.55); }

.app-card:hover {
  border-color: #afc2d5;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.app-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.app-preview {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(140deg, #e9f0f7, #f8fafc);
}

.app-preview-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(31, 78, 121, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 78, 121, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.app-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--tmx-primary-700);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(6px);
}

.app-icon svg,
.app-link-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.app-preview-label {
  position: absolute;
  top: 19px;
  right: 16px;
  color: var(--tmx-primary-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.app-access {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #64748b;
  font-size: 9px;
  font-weight: 750;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.app-access i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94a3b8;
}

.app-access-granted { color: #16794d; }
.app-access-granted i { background: #28a56d; }
.app-access-denied { color: #a33a32; }
.app-access-denied i { background: #d64f45; }

.app-preview-art,
.app-preview-art::before,
.app-preview-art::after {
  position: absolute;
  content: "";
}

.app-preview-timeline .app-preview-art {
  right: 20px;
  bottom: 28px;
  left: 20px;
  height: 2px;
  background: var(--tmx-primary-600);
}

.app-preview-timeline .app-preview-art::before {
  inset: -5px 20% auto auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--tmx-accent);
  box-shadow: -90px 0 0 var(--tmx-primary-600), -180px 0 0 #6f8daa;
}

.app-preview-curves .app-preview-art,
.app-preview-decline .app-preview-art {
  right: 15px;
  bottom: 23px;
  left: 65px;
  height: 70px;
  border-bottom: 2px solid #b8c7d6;
  border-left: 2px solid #b8c7d6;
}

.app-preview-curves .app-preview-art::before,
.app-preview-decline .app-preview-art::before {
  right: 5px;
  bottom: 13px;
  width: 82%;
  height: 48px;
  border-top: 3px solid var(--tmx-primary-600);
  border-radius: 50% 40% 0 0;
  transform: rotate(-7deg);
}

.app-preview-curves .app-preview-art::after {
  right: 7px;
  bottom: 22px;
  width: 72%;
  height: 30px;
  border-top: 3px solid var(--tmx-accent);
  border-radius: 50%;
  transform: rotate(7deg);
}

.app-preview-decline .app-preview-art::before {
  height: 58px;
  border-radius: 65% 0 0;
  transform: rotate(13deg);
}

.app-preview-map {
  background:
    radial-gradient(circle at 68% 60%, rgba(40, 165, 163, 0.22), transparent 6px),
    radial-gradient(circle at 45% 70%, rgba(37, 99, 166, 0.28), transparent 7px),
    linear-gradient(145deg, #d9e9e7, #eef4f8);
}

.app-preview-map .app-preview-art {
  right: 8%;
  bottom: -36px;
  width: 70%;
  height: 150px;
  border: 2px solid rgba(31, 78, 121, 0.35);
  border-radius: 48% 40% 30% 65%;
  transform: rotate(-12deg);
}

.app-preview-filters .app-preview-art,
.app-preview-admin .app-preview-art,
.app-preview-pvt .app-preview-art {
  right: 18px;
  bottom: 18px;
  width: 60%;
  height: 62px;
  border: 1px solid rgba(31, 78, 121, 0.2);
  border-radius: 9px;
  background:
    linear-gradient(90deg, var(--tmx-primary-600) 30%, transparent 30%) 12px 13px / 70% 7px no-repeat,
    linear-gradient(90deg, var(--tmx-accent) 52%, transparent 52%) 12px 29px / 76% 7px no-repeat,
    linear-gradient(90deg, #7f98b1 42%, transparent 42%) 12px 45px / 65% 7px no-repeat,
    rgba(255, 255, 255, 0.75);
}

.app-preview-admin .app-preview-art {
  width: 68%;
  height: 70px;
  background:
    linear-gradient(#d6e1ec 0 0) 0 0 / 30% 100% no-repeat,
    linear-gradient(90deg, var(--tmx-primary-600) 50%, transparent 50%) 38% 17px / 50% 7px no-repeat,
    linear-gradient(90deg, var(--tmx-accent) 72%, transparent 72%) 38% 35px / 50% 7px no-repeat,
    rgba(255, 255, 255, 0.78);
}

.app-preview-pvt .app-preview-art {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--tmx-accent) 0 28%, var(--tmx-primary-600) 28% 72%, #d6e1ec 72%);
}

.app-preview-petrolia,
.app-preview-insight,
.app-preview-test,
.app-preview-magnus {
  background: linear-gradient(140deg, var(--tmx-primary-900), #2d648f);
}

.app-preview-petrolia .app-preview-grid,
.app-preview-insight .app-preview-grid,
.app-preview-test .app-preview-grid,
.app-preview-magnus .app-preview-grid {
  opacity: 0.18;
}

.app-preview-petrolia .app-preview-label,
.app-preview-insight .app-preview-label,
.app-preview-test .app-preview-label,
.app-preview-magnus .app-preview-label {
  color: rgba(255, 255, 255, 0.72);
}

.app-preview-petrolia .app-preview-art,
.app-preview-insight .app-preview-art,
.app-preview-test .app-preview-art,
.app-preview-magnus .app-preview-art {
  right: -20px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(112, 212, 208, 0.4);
  border-radius: 50%;
}

.app-card-body {
  display: flex;
  flex-direction: column;
  min-height: 206px;
  padding: 19px;
}

.app-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.app-card-heading h3 {
  margin: 0;
  color: var(--tmx-text);
  font-size: 17px;
  line-height: 1.3;
}

.app-link-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--tmx-surface-subtle);
  color: var(--tmx-primary-600);
}

.app-link-icon svg {
  width: 16px;
}

.app-card-body p {
  margin: 9px 0 16px;
  color: var(--tmx-muted);
  font-size: 13px;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.app-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef3f8;
  color: #53677b;
  font-size: 10px;
  font-weight: 650;
}

.portal-empty-state {
  margin-top: 36px;
  padding: 70px 20px;
  border: 1px dashed var(--tmx-border);
  border-radius: 16px;
  background: var(--tmx-surface);
  text-align: center;
}

.portal-empty-icon {
  color: var(--tmx-primary-600);
  font-size: 38px;
}

.portal-empty-state h2 {
  margin: 8px 0 4px;
}

.portal-empty-state p {
  margin: 0;
  color: var(--tmx-muted);
}

.portal-empty-state button {
  margin-top: 18px;
  padding: 9px 14px;
  border: 1px solid var(--tmx-primary-600);
  border-radius: 7px;
  background: var(--tmx-primary-600);
  color: #ffffff;
  cursor: pointer;
  font-weight: 650;
}

.tmx-footer {
  display: flex;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--tmx-page-width));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--tmx-muted);
  font-size: 12px;
}

.tmx-footer a {
  color: inherit;
}

@media (max-width: 1180px) {
  .app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tmx-system-status {
    display: none;
  }

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

  .portal-featured {
    display: none;
  }

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

@media (max-width: 680px) {
  .tmx-header {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .tmx-header-title,
  .tmx-menu-label {
    display: none;
  }

  .tmx-page {
    width: min(calc(100% - 24px), var(--tmx-page-width));
    padding-top: 18px;
  }

  .portal-hero-copy {
    padding: 30px 22px;
  }

  .portal-hero h1 {
    font-size: 36px;
  }

  .portal-introduction {
    font-size: 15px;
  }

  .portal-directory-heading,
  .app-section-heading {
    display: block;
  }

  .portal-result-count,
  .app-section-heading span {
    display: block;
    margin-top: 5px;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-preview {
    height: 138px;
  }

  .app-card-body {
    min-height: 0;
  }

  .tmx-footer {
    width: min(calc(100% - 24px), var(--tmx-page-width));
  }
}

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