:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0a1728;
  --panel: rgba(14, 29, 49, 0.82);
  --panel-strong: #10233a;
  --line: rgba(151, 177, 204, 0.17);
  --line-bright: rgba(151, 177, 204, 0.34);
  --text: #eff7ff;
  --muted: #95a9bd;
  --blue: #51a7ff;
  --cyan: #55e3dc;
  --green: #5ce1a4;
  --amber: #ffc565;
  --red: #ff7382;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(38, 103, 157, 0.2), transparent 29rem),
    linear-gradient(180deg, #07111f 0%, #081522 60%, #07111f 100%);
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.ambient-one {
  top: 35%;
  right: -16rem;
  background: var(--cyan);
}

.ambient-two {
  bottom: -10rem;
  left: -18rem;
  background: var(--blue);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(85, 227, 220, 0.4);
  border-radius: 12px;
  color: #06111f;
  font-weight: 900;
  background: linear-gradient(145deg, #84f2e9, #58a9ff);
  box-shadow: 0 0 30px rgba(85, 227, 220, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px currentColor;
}

.status-dot.ready {
  color: var(--green);
  background: var(--green);
}

.divider {
  width: 1px;
  height: 16px;
  background: var(--line-bright);
}

.mono,
code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: 160ms ease;
}

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

.button.primary {
  color: #06111f;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), #71aaff);
}

.button.secondary {
  min-width: 112px;
  color: #07111f;
  font-weight: 750;
  background: var(--green);
}

.button.ghost {
  border-color: var(--line-bright);
  color: var(--muted);
  background: transparent;
}

.shell {
  width: min(1760px, 96vw);
  margin: 0 auto;
}

.eyebrow,
.role-kicker,
.attack-kicker,
.screen-label,
.policy-label {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.step-overview {
  position: relative;
  margin: 18px 0 0;
  padding: 15px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 42, 67, 0.94), rgba(8, 23, 39, 0.94));
  box-shadow: var(--shadow);
}

.step-overview::before {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  filter: blur(100px);
  opacity: 0.16;
}

.overview-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.step-counter {
  display: grid;
  min-height: 64px;
  padding: 9px;
  place-content: center;
  border: 1px solid rgba(85, 227, 220, 0.2);
  border-radius: 13px;
  text-align: center;
  background: rgba(85, 227, 220, 0.05);
}

.step-counter span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.step-counter strong {
  margin-top: 5px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 18px;
}

.overview-copy h1 {
  margin: 5px 0 3px;
  font-size: clamp(19px, 1.8vw, 27px);
  letter-spacing: -0.025em;
}

.overview-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.overview-controls {
  display: flex;
  gap: 16px;
  align-items: center;
}

.assurance-row {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.assurance-row i {
  height: 4px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
}

.assurance-row i::after {
  display: block;
  width: var(--level, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
  transition: width 500ms ease;
}

.stage,
.evidence {
  padding: 24px 0;
}

.evidence {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-heading > div:first-child {
  display: flex;
  gap: 14px;
  align-items: center;
}

.section-index {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  min-height: 50px;
  padding: 7px 9px;
  align-content: center;
  background: rgba(9, 23, 39, 0.94);
  transition: 300ms ease;
}

.journey-step > span {
  display: grid;
  grid-row: 1 / span 2;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.journey-step > strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-step > small {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.journey-step::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: 300ms ease;
}

.journey-step.active,
.journey-step.complete {
  background: linear-gradient(145deg, rgba(17, 47, 75, 0.96), rgba(9, 27, 45, 0.96));
}

.journey-step.active::after,
.journey-step.complete::after {
  opacity: 1;
  transform: scaleX(1);
}

.journey-step.complete::after {
  background: var(--green);
}

.journey-step.complete > span {
  border-color: rgba(92, 225, 164, 0.45);
  color: var(--green);
}

.stage-heading {
  align-items: center;
}

.switch-control {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.switch-control input {
  position: absolute;
  opacity: 0;
}

.switch {
  position: relative;
  width: 38px;
  height: 22px;
  border: 1px solid var(--line-bright);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
}

.switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--muted);
  content: "";
  transition: 180ms ease;
}

.switch-control input:checked + .switch::after {
  left: 19px;
  background: var(--green);
  box-shadow: 0 0 10px rgba(92, 225, 164, 0.5);
}

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

.role-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transition: border-color 220ms ease, transform 220ms ease;
}

.role-card.active {
  border-color: rgba(85, 227, 220, 0.46);
  transform: translateY(-2px);
}

.role-card > header {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 62px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.role-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  background: rgba(83, 165, 255, 0.08);
}

.role-card header h3 {
  margin: 2px 0 0;
  font-size: 13px;
}

.role-kicker {
  color: var(--muted);
  font-size: 7px;
}

.role-state {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  font-size: 8px;
}

.role-state.online,
.role-state.success {
  border-color: rgba(92, 225, 164, 0.25);
  color: var(--green);
  background: rgba(92, 225, 164, 0.07);
}

.role-state.working {
  border-color: rgba(81, 167, 255, 0.3);
  color: var(--blue);
  background: rgba(81, 167, 255, 0.08);
}

.role-state.danger,
.role-state.offline {
  border-color: rgba(255, 115, 130, 0.3);
  color: var(--red);
  background: rgba(255, 115, 130, 0.07);
}

.role-body {
  min-height: 230px;
  padding: 14px;
  flex: 1;
}

.mobile-card .role-body {
  display: block;
}

.phone-frame {
  position: relative;
  width: 100%;
  height: 140px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  background: #03090f;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.32);
}

.phone-island {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 42px;
  height: 8px;
  border-radius: 20px;
  background: #020609;
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  height: 100%;
  padding: 27px 12px 11px;
  flex-direction: column;
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 5%, rgba(85, 227, 220, 0.16), transparent 70px),
    linear-gradient(180deg, #0d2035, #07121e);
}

.phone-screen strong {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.35;
}

.phone-screen p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.phone-action {
  margin-top: auto;
  padding: 6px;
  border: 1px solid rgba(85, 227, 220, 0.2);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 750;
  text-align: center;
  background: rgba(85, 227, 220, 0.06);
}

.key-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 9px;
}

.key-list > div {
  min-width: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.key-list span,
.key-list code {
  display: block;
}

.key-list span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
}

.key-list code {
  overflow: hidden;
  color: #bed1e4;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 8px;
  align-items: center;
}

.agent-instance {
  min-height: 160px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #050d16;
}

.terminal-top {
  display: flex;
  gap: 5px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.terminal-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-bright);
}

.terminal-content {
  display: flex;
  padding: 20px 13px;
  flex-direction: column;
}

.terminal-content .prompt {
  color: var(--green);
  font-family: monospace;
  font-size: 10px;
}

.terminal-content strong {
  margin: 13px 0 7px;
  font-family: monospace;
  font-size: 10px;
  word-break: break-word;
}

.terminal-content > span:last-child {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.qr-zone {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: var(--muted);
  font-size: 7px;
  text-align: center;
}

#qr-canvas {
  width: 82px;
  height: 82px;
  border: 5px solid white;
  border-radius: 8px;
  background: white;
  image-rendering: pixelated;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.metric-grid > div {
  min-width: 0;
  min-height: 65px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.metric-grid span,
.metric-grid strong {
  display: block;
}

.metric-grid span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
}

.metric-grid strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.witness-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 9px;
  padding: 9px 10px;
  border-radius: 11px;
  background: rgba(81, 167, 255, 0.06);
}

.witness-line > span {
  width: 6px;
  height: 6px;
  margin-top: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.witness-line p {
  margin: 0;
  color: #afc3d7;
  font-size: 8px;
  line-height: 1.65;
}

.gateway-body {
  display: grid;
  gap: 9px;
}

.policy-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(81, 167, 255, 0.08), rgba(85, 227, 220, 0.03));
}

.policy-card strong {
  display: block;
  margin: 8px 0 5px;
  font-size: 11px;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

.decision {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(4, 12, 21, 0.55);
}

.decision > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: var(--muted);
  font-size: 15px;
}

.decision.success > span {
  border-color: rgba(92, 225, 164, 0.4);
  color: var(--green);
  background: rgba(92, 225, 164, 0.08);
}

.decision.danger > span {
  border-color: rgba(255, 115, 130, 0.4);
  color: var(--red);
  background: rgba(255, 115, 130, 0.08);
}

.decision strong {
  font-size: 10px;
}

.decision p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}

.event-log {
  display: flex;
  min-height: 46px;
  margin-top: auto;
  padding: 9px 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: monospace;
  font-size: 8px;
  line-height: 1.45;
  background: rgba(0, 0, 0, 0.12);
}

.event-log::before {
  margin-right: 8px;
  color: var(--green);
  content: ">";
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 10px;
}

.protocol-panel,
.attack-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.panel-tabs {
  display: flex;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.panel-tab {
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  font-size: 10px;
  background: transparent;
  cursor: pointer;
}

.panel-tab.active {
  color: var(--text);
  background: rgba(81, 167, 255, 0.11);
}

#protocol-json {
  min-height: 300px;
  max-height: 400px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  color: #b9cee1;
  font-size: 10px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.attack-panel {
  padding: 20px;
}

.attack-panel h3 {
  margin: 12px 0 8px;
  font-size: 19px;
}

.attack-panel > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.attack-list {
  display: grid;
  gap: 8px;
}

.attack-list button {
  display: flex;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  color: #bfd0df;
  font-size: 11px;
  text-align: left;
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
  transition: 160ms ease;
}

.attack-list button:hover {
  border-color: rgba(255, 115, 130, 0.3);
  color: var(--red);
  transform: translateX(2px);
}

.attack-result {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 14px;
  border-radius: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.attack-result > span {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  font-size: 9px;
}

.attack-result p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

.attack-result.danger {
  color: #ffc0c7;
  background: rgba(255, 115, 130, 0.07);
}

.attack-result.success {
  color: #9bedc5;
  background: rgba(92, 225, 164, 0.07);
}

.boundary {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  margin: 0 0 80px;
  padding: 22px 25px;
  border: 1px solid rgba(255, 197, 101, 0.2);
  border-radius: 15px;
  background: rgba(255, 197, 101, 0.035);
}

.boundary span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.boundary p {
  margin: 0;
  color: #bdc9d4;
  font-size: 11px;
  line-height: 1.75;
}

footer {
  display: flex;
  width: min(1760px, 96vw);
  min-height: 100px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 14px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.55;
  background: rgba(13, 29, 48, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 200ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .trust-strip {
    display: none;
  }

  .overview-main {
    grid-template-columns: 90px 1fr;
  }

  .overview-controls {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .journey-track {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

@media (max-width: 680px) {
  .topbar {
    padding: 0 5vw;
  }

  .top-actions .ghost {
    display: none;
  }

  .top-actions .button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .stage,
  .evidence {
    padding: 28px 0;
  }

  .step-overview {
    margin-top: 14px;
    padding: 15px;
  }

  .overview-main {
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }

  .step-counter {
    min-height: 68px;
    padding: 8px;
  }

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

  .overview-copy h1 {
    font-size: 18px;
  }

  .overview-copy p {
    font-size: 10px;
  }

  .overview-controls {
    justify-content: space-between;
  }

  .section-heading,
  .stage-heading {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading > p {
    line-height: 1.6;
  }

  .journey-track {
    grid-template-columns: repeat(8, minmax(108px, 1fr));
    overflow-x: auto;
  }

  .journey-step {
    min-height: 54px;
  }

  .assurance-row {
    grid-template-columns: auto 1fr;
  }

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

  .mobile-card .role-body,
  .agent-body {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    margin: 0 auto;
  }

  .qr-zone {
    order: -1;
  }

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

  .panel-tabs {
    overflow-x: auto;
  }

  .panel-tab {
    flex: 0 0 auto;
  }

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

  footer {
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

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