@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Inter:wght@400;600;800;900&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --bg0: #070a12;
  --bg1: #0b1230;
  --card: rgba(255, 255, 255, 0.08);
  --card2: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);

  --ok: #2ef2a7;
  --warn: #ffd23f;
  --bad: #ff4d8d;
  --ice: #6ae4ff;
  --frost: #a5b4ff;

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  color: var(--text);
  background: repeating-linear-gradient(
      135deg,
      rgba(255, 210, 63, 0.18) 0px,
      rgba(255, 210, 63, 0.18) 12px,
      rgba(255, 77, 141, 0.16) 12px,
      rgba(255, 77, 141, 0.16) 24px,
      rgba(106, 228, 255, 0.16) 24px,
      rgba(106, 228, 255, 0.16) 36px,
      rgba(46, 242, 167, 0.14) 36px,
      rgba(46, 242, 167, 0.14) 48px
    ),
    linear-gradient(160deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 86px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 6px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.18) 0px,
      rgba(0, 0, 0, 0.18) 3px,
      transparent 3px,
      transparent 12px
    );
  mix-blend-mode: overlay;
  opacity: 0.35;
  animation: screenBuzz 2.2s ease-in-out infinite;
}

.topbar,
.page {
  position: relative;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      1px 1px at 12% 18%,
      rgba(255, 255, 255, 0.9),
      transparent 40%
    ),
    radial-gradient(
      1px 1px at 42% 62%,
      rgba(255, 255, 255, 0.8),
      transparent 40%
    ),
    radial-gradient(
      1px 1px at 68% 28%,
      rgba(255, 255, 255, 0.85),
      transparent 40%
    ),
    radial-gradient(
      1px 1px at 86% 72%,
      rgba(255, 255, 255, 0.75),
      transparent 40%
    ),
    radial-gradient(
      1px 1px at 28% 82%,
      rgba(255, 255, 255, 0.8),
      transparent 40%
    ),
    radial-gradient(
      1px 1px at 78% 86%,
      rgba(255, 255, 255, 0.8),
      transparent 40%
    ),
    radial-gradient(
      1px 1px at 8% 76%,
      rgba(255, 255, 255, 0.75),
      transparent 40%
    );
  opacity: 0.65;
  mix-blend-mode: screen;
  animation: twinkle 3.4s ease-in-out infinite;
}

.mega-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 4px solid rgba(255, 210, 63, 0.55);
  background: linear-gradient(
    90deg,
    rgba(255, 210, 63, 0.25),
    rgba(255, 77, 141, 0.2),
    rgba(106, 228, 255, 0.18)
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  animation: bannerShake 1.4s ease-in-out infinite, hueSpin 8s linear infinite;
}

.mega-banner__title {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mega-banner__sub {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.mega-banner__right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mega-banner--angry {
  border-bottom-color: rgba(255, 77, 141, 0.7);
  animation: bannerShake 0.75s ease-in-out infinite;
}

.mega-btn {
  transform: rotate(-0.5deg);
}

.nag {
  position: fixed;
  bottom: 56px;
  width: min(360px, calc(100vw - 18px));
  padding: 14px;
  border-radius: 18px;
  border: 3px dashed rgba(255, 255, 255, 0.18);
  background: rgba(12, 10, 26, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.6);
  z-index: 80;
  animation: nagBreathe 1.8s ease-in-out infinite;
  outline: 6px solid rgba(255, 255, 255, 0.06);
  outline-offset: 2px;
}

.nag--left {
  left: 10px;
  transform: rotate(-1.5deg);
}

.nag--right {
  right: 10px;
  transform: rotate(1.2deg);
}

.nag__title {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.4px;
}

.nag__body {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.nag__actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
}

.overlay--show {
  display: grid;
}

.popup {
  width: min(720px, calc(100vw - 24px));
  border-radius: 22px;
  border: 4px solid rgba(106, 228, 255, 0.35);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75);
  padding: 16px;
  transform-origin: center;
  animation: popupDrop 420ms ease-out 1, popupWob 2.4s ease-in-out infinite;
  filter: saturate(1.3) contrast(1.05);
}

.popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.popup__title {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.3px;
  font-size: 18px;
}

.popup__close {
  cursor: pointer;
  position: absolute;
  border: 3px solid rgba(255, 77, 141, 0.5);
  background: rgba(255, 77, 141, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  width: 56px;
  height: 34px;
  font-weight: 950;
  letter-spacing: 0.4px;
  top: 14px;
  left: 86%;
  transform: rotate(3deg);
}

.popup__body {
  margin-top: 12px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.popup__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.popup__hint {
  margin-top: 10px;
}

.fake-perm {
  position: fixed;
  z-index: 140;
  width: min(420px, calc(100vw - 18px));
  border-radius: 20px;
  border: 4px double rgba(255, 210, 63, 0.5);
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.8);
  padding: 14px;
  left: 12px;
  top: 90px;
  transform: rotate(-0.6deg);
  animation: nagBreathe 1.2s ease-in-out infinite, hueSpin 6s linear infinite;
}

.fake-perm__title {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.4px;
}

.fake-perm__body {
  margin-top: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.fake-perm__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fake-perm__hint {
  margin-top: 10px;
}

.runaway {
  position: fixed;
  left: 0;
  top: 0;
  width: 320px;
  z-index: 150;
  border-radius: 18px;
  border: 4px solid rgba(255, 77, 141, 0.5);
  background: rgba(18, 10, 22, 0.92);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.75);
  padding: 12px;
  will-change: transform;
}

.runaway__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.runaway__title {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-size: 12px;
}

.runaway__close {
  cursor: pointer;
  border: 3px solid rgba(255, 210, 63, 0.5);
  background: rgba(255, 210, 63, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  width: 42px;
  height: 32px;
  font-weight: 950;
  letter-spacing: 0.3px;
}

.runaway__body {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  line-height: 1.45;
}

.runaway__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  border-top: 3px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 24, 0.95);
  overflow: hidden;
}

.ticker__track {
  display: inline-flex;
  gap: 14px;
  padding: 10px 14px;
  white-space: nowrap;
  font-weight: 950;
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  animation: tickerRun 10s linear infinite;
}

.ticker__track span:nth-child(odd) {
  color: rgba(255, 210, 63, 0.95);
}

.ticker__track span:nth-child(even) {
  color: rgba(106, 228, 255, 0.95);
}

.page .card,
.topbar {
  animation: microFloat 7.5s ease-in-out infinite;
}

.page .card:nth-child(2n) {
  animation-delay: 0.7s;
}

.page .card:nth-child(3n) {
  animation-delay: 1.4s;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 16px 80px;
  flex: 1 0 auto;
  width: 100%;
}

.topbar {
  position: sticky;
  top: 86px;
  z-index: 40;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(8, 12, 24, 0.85) 0px,
    rgba(8, 12, 24, 0.85) 22px,
    rgba(255, 255, 255, 0.08) 22px,
    rgba(255, 255, 255, 0.08) 26px
  );
  border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(106, 228, 255, 0.06),
    rgba(255, 210, 63, 0.06),
    rgba(255, 77, 141, 0.06),
    rgba(46, 242, 167, 0.06),
    rgba(106, 228, 255, 0.06)
  );
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: marqueeGlow 6s linear infinite;
}

.topbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: baseline;
  text-decoration: none;
  color: var(--text);
  min-width: 280px;
}

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(106, 228, 255, 0.9),
    rgba(255, 77, 141, 0.85)
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  transform: rotate(-6deg);
  animation: wobble 2.8s ease-in-out infinite, hueSpin 9s linear infinite;
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  margin-left: 6px;
}

.brand-text {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  letter-spacing: 0.1px;
  text-shadow: 0 0 18px rgba(106, 228, 255, 0.18),
    0 0 34px rgba(255, 77, 141, 0.12);
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 120ms ease, background 120ms ease,
    border-color 120ms ease;
}

.nav-link {
  animation: navWiggle 4.2s ease-in-out infinite;
}

.nav-link:nth-child(2n) {
  animation-delay: 0.6s;
}

.nav-link:nth-child(3n) {
  animation-delay: 1.2s;
}

.nav-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-link--danger {
  border-color: rgba(255, 77, 141, 0.35);
}

.card {
  background: repeating-linear-gradient(
      45deg,
      rgba(255, 210, 63, 0.16) 0px,
      rgba(255, 210, 63, 0.16) 14px,
      rgba(106, 228, 255, 0.14) 14px,
      rgba(106, 228, 255, 0.14) 28px,
      rgba(255, 77, 141, 0.12) 28px,
      rgba(255, 77, 141, 0.12) 42px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.card--tight {
  padding: 14px;
}

.card--wide {
  padding: 22px;
}

.card--ssh {
  border-color: rgba(255, 77, 141, 0.8);
  background: repeating-linear-gradient(
      90deg,
      rgba(255, 77, 141, 0.22) 0 10px,
      rgba(0, 0, 0, 0.08) 10px 20px,
      rgba(255, 210, 63, 0.18) 20px 30px,
      rgba(0, 0, 0, 0.08) 30px 40px
    ),
    rgba(0, 0, 0, 0.25);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(255, 77, 141, 0.12), 0 0 0 14px rgba(106, 228, 255, 0.08);
  animation: sshPulse 0.9s ease-in-out infinite, hueSpin 5s linear infinite;
}

.card--ssh .h2 {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.card--ssh .mono {
  font-size: 14px;
}

.card--ssh .note {
  border-style: solid;
  border-color: rgba(255, 77, 141, 0.45);
  background: rgba(0, 0, 0, 0.22);
}

.card--alarm {
  border-color: rgba(255, 77, 141, 0.65);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45),
    0 0 0 6px rgba(255, 77, 141, 0.08), 0 0 0 14px rgba(255, 210, 63, 0.06);
  background: repeating-linear-gradient(
      135deg,
      rgba(255, 210, 63, 0.28) 0 14px,
      rgba(0, 0, 0, 0.08) 14px 28px,
      rgba(255, 77, 141, 0.24) 28px 42px,
      rgba(0, 0, 0, 0.08) 42px 56px
    ),
    rgba(0, 0, 0, 0.18);
  background-size: 240px 240px, auto;
  animation: alarmFlash 0.22s steps(2, end) infinite,
    jit 140ms ease-in-out infinite, hueSpin 1.4s linear infinite,
    alarmScroll 0.6s linear infinite;
}

.card--alarm::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: conic-gradient(
    from 90deg,
    rgba(255, 77, 141, 0.95),
    rgba(255, 210, 63, 0.95),
    rgba(106, 228, 255, 0.95),
    rgba(46, 242, 167, 0.95),
    rgba(255, 77, 141, 0.95)
  );
  opacity: 0.55;
  filter: saturate(2.2) contrast(1.15);
  animation: alarmBorderSpin 0.75s linear infinite;
  pointer-events: none;
}

.card--alarm::after {
  content: "ACCESS DENIED · ERROR 67 · WOAH";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 8px);
  border: 5px solid rgba(255, 210, 63, 0.65);
  background: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06) 0 6px,
      rgba(0, 0, 0, 0.12) 6px 12px
    ),
    rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  mix-blend-mode: screen;
  pointer-events: none;
  text-shadow: 0 0 12px rgba(255, 210, 63, 0.25),
    0 0 26px rgba(255, 77, 141, 0.22), 0 0 40px rgba(106, 228, 255, 0.18);
  animation: stampSpin 0.28s ease-in-out infinite,
    alarmGlitch 0.42s steps(2, end) infinite;
}

.card--alarm .alert {
  background: rgba(255, 77, 141, 0.28);
  border-color: rgba(255, 77, 141, 0.75);
  font-weight: 950;
  text-shadow: 0 0 12px rgba(255, 77, 141, 0.18);
}

.card--alarm-ssh {
  border-width: 2px;
  border-color: rgba(255, 77, 141, 0.95);
  box-shadow: 0 26px 110px rgba(0, 0, 0, 0.78),
    0 0 0 10px rgba(255, 77, 141, 0.16), 0 0 0 22px rgba(255, 210, 63, 0.1),
    0 0 90px rgba(255, 77, 141, 0.22);
}

.card--alarm-ssh::before {
  opacity: 0.85;
  filter: saturate(3.2) contrast(1.35);
}

.card--alarm-ssh::after {
  inset: 8px;
  border-width: 6px;
  animation: stampSpin 0.18s ease-in-out infinite,
    alarmGlitch 0.28s steps(2, end) infinite;
}

.card--alarm-ssh .card-head {
  position: relative;
  z-index: 2;
}

.card--alarm-ssh .h2 {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  text-shadow: 0 0 12px rgba(255, 77, 141, 0.25),
    0 0 26px rgba(255, 210, 63, 0.18), 0 0 38px rgba(106, 228, 255, 0.14);
}

.card--alarm-ssh .pill--bad {
  border-color: rgba(255, 77, 141, 0.85);
  background: rgba(255, 77, 141, 0.16);
  box-shadow: 0 0 0 6px rgba(255, 77, 141, 0.08);
}

.card--alarm-ssh .alert {
  position: relative;
  z-index: 2;
  border-width: 3px;
  background: rgba(255, 77, 141, 0.32);
  text-shadow: 0 0 14px rgba(255, 77, 141, 0.22),
    0 0 28px rgba(255, 210, 63, 0.12);
}

.alarm-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 10px 12px;
  border-radius: 999px;
  border: 3px dashed rgba(255, 210, 63, 0.65);
  background: rgba(0, 0, 0, 0.25);
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.8px;
  color: rgba(255, 210, 63, 0.95);
  box-shadow: 0 0 0 8px rgba(255, 210, 63, 0.06),
    0 0 50px rgba(255, 210, 63, 0.12);
  animation: badgePop 0.55s ease-in-out infinite, hueSpin 1.2s linear infinite;
}

.locked {
  position: relative;
}

.locked::after {
  content: "LOCKED · login required · 67 clearance (skibidi)";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: inherit;
  border: 3px dashed rgba(255, 210, 63, 0.32);
  background: rgba(0, 0, 0, 0.55);
  font-weight: 950;
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.locked > * {
  filter: blur(1.8px) saturate(0.9);
  opacity: 0.75;
  pointer-events: none;
  user-select: none;
}

.sparkline {
  height: 90px;
  width: 100%;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.sparkline svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 0%,
    rgba(255, 255, 255, 0.08),
    transparent 45%
  );
  opacity: 0.5;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  bottom: -70px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 210, 63, 0.22),
    rgba(46, 242, 167, 0) 62%
  );
  filter: blur(8px);
  opacity: 0.55;
  pointer-events: none;
  animation: blobBop 6s ease-in-out infinite;
}

.card--hero {
  position: relative;
  overflow: hidden;
}

.card--hero::before {
  content: "";
  position: absolute;
  inset: -100px -60px auto auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(106, 228, 255, 0.9),
    rgba(165, 180, 255, 0) 60%
  );
  transform: rotate(18deg);
  filter: blur(0.4px);
  opacity: 0.8;
  pointer-events: none;
}

.card--hero::after {
  content: "";
  position: absolute;
  inset: -60px -80px auto auto;
  width: 260px;
  height: 260px;
  background: conic-gradient(
    from 120deg,
    rgba(255, 210, 63, 0.25),
    rgba(255, 77, 141, 0.2),
    rgba(106, 228, 255, 0.25),
    rgba(46, 242, 167, 0.18),
    rgba(255, 210, 63, 0.25)
  );
  filter: blur(18px);
  opacity: 0.45;
  animation: spinSlow 12s linear infinite;
  pointer-events: none;
}

.h1 {
  margin: 6px 0 8px;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.6px;
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  background: linear-gradient(
    90deg,
    rgba(106, 228, 255, 0.95),
    rgba(255, 77, 141, 0.9),
    rgba(255, 210, 63, 0.95)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.35));
  animation: titleGlitch 5.6s ease-in-out infinite;
}

.h2 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.highlight {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
  text-shadow: 0 8px 24px rgba(106, 228, 255, 0.14);
}

.grid {
  display: grid;
  column-gap: 22px;
  row-gap: 28px;
}

.page > section + section {
  margin-top: 28px;
}

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

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

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

@media (max-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 760px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .brand-sub {
    display: none;
  }
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.btn {
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 120ms ease, box-shadow 120ms ease,
    border-color 120ms ease, background 120ms ease;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 210, 63, 0);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  animation: jit 420ms ease-in-out 1;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35),
    0 0 0 10px rgba(255, 210, 63, 0.08), 0 0 0 18px rgba(255, 77, 141, 0.06);
}

.btn:active {
  transform: translateY(0px) scale(0.99);
}

.btn--primary {
  border-color: rgba(106, 228, 255, 0.45);
  background: linear-gradient(
    135deg,
    rgba(106, 228, 255, 0.22),
    rgba(255, 77, 141, 0.12)
  );
  box-shadow: 0 18px 55px rgba(106, 228, 255, 0.08);
}

.btn--danger {
  position: relative;
  border-color: rgba(255, 77, 141, 0.5);
  background: linear-gradient(
    135deg,
    rgba(255, 77, 141, 0.22),
    rgba(255, 210, 63, 0.08)
  );
}

.btn--danger::after {
  content: "⚠";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 77, 141, 0.22);
  border: 1px solid rgba(255, 77, 141, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: rotate(-10deg);
  animation: badgePop 2.1s ease-in-out infinite;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.pill--ok {
  border-color: rgba(46, 242, 167, 0.35);
}

.pill--warn {
  border-color: rgba(255, 210, 63, 0.4);
}

.pill--bad {
  border-color: rgba(255, 77, 141, 0.45);
}

.tiny {
  font-size: 12px;
}

.muted {
  color: var(--muted);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.note {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
}

.note--alt {
  border-style: solid;
  border-color: rgba(106, 228, 255, 0.2);
}

.note-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.stickers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 10px;
}

.sticker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(106, 228, 255, 0.35);
  background: rgba(106, 228, 255, 0.08);
  transform: rotate(-1.2deg);
  animation: stickerFloat 3.2s ease-in-out infinite;
}

.sticker--alt {
  border-color: rgba(255, 210, 63, 0.35);
  background: rgba(255, 210, 63, 0.08);
  transform: rotate(1.2deg);
  animation-delay: 0.35s;
}

.sticker--danger {
  border-color: rgba(255, 77, 141, 0.4);
  background: rgba(255, 77, 141, 0.08);
  transform: rotate(-0.6deg);
  animation-delay: 0.7s;
}

.landing {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  align-items: start;
}

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

.tagline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.mini {
  padding: 14px;
  box-shadow: none;
}

.mini-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.mini-body {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.overview {
  display: grid;
  gap: 10px;
}

.overview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  outline: none;
  transition: transform 120ms ease, border-color 120ms ease,
    box-shadow 120ms ease;
}

.input:focus {
  border-color: rgba(106, 228, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(106, 228, 255, 0.15);
  transform: translateY(-1px);
}

.alert {
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.alert--bad {
  border-color: rgba(255, 77, 141, 0.9);
  background: rgba(255, 77, 141, 0.6);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
}

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

.hero-left,
.hero-right {
  display: grid;
  gap: 10px;
}

.donut {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.donut-ring {
  --p: 84%;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: conic-gradient(
      from 220deg,
      rgba(46, 242, 167, 0.95) var(--p),
      rgba(255, 255, 255, 0.1) 0
    ),
    radial-gradient(
      circle at 30% 30%,
      rgba(106, 228, 255, 0.15),
      transparent 55%
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  filter: saturate(1.05);
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.donut-center {
  position: absolute;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(8, 12, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.donut-kpi {
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.kpi {
  padding: 16px;
}

.kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.kpi-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.kpi-value {
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin-top: 6px;
}

.kpi-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.meter {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-top: 12px;
}

.meter-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(106, 228, 255, 0.95),
    rgba(46, 242, 167, 0.85)
  );
}

.meter-fill--warn {
  background: linear-gradient(
    90deg,
    rgba(255, 210, 63, 0.95),
    rgba(106, 228, 255, 0.7)
  );
}

.meter-fill--bad {
  background: linear-gradient(
    90deg,
    rgba(255, 77, 141, 0.95),
    rgba(255, 210, 63, 0.75)
  );
}

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bars {
  display: grid;
  gap: 10px;
}

.bar {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.bar-fill {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(165, 180, 255, 0.6),
    rgba(106, 228, 255, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );
  transform: translateX(-60%);
  animation: scan 1.8s ease-in-out infinite;
}

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

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

.tile {
  cursor: pointer;
  text-align: left;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: transform 120ms ease, border-color 120ms ease,
    background 120ms ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: rgba(106, 228, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.tile--danger {
  border-color: rgba(255, 77, 141, 0.3);
}

.tile-title {
  font-weight: 950;
  letter-spacing: -0.2px;
}

.tile-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: min(520px, calc(100vw - 32px));
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 24, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
  pointer-events: none;
  font-weight: 850;
}

.toast--show {
  transform: translateY(0);
  opacity: 1;
  animation: toastWiggle 1.1s ease-in-out 1;
}

.toast[data-tone="ok"] {
  border-color: rgba(46, 242, 167, 0.35);
}

.toast[data-tone="warn"] {
  border-color: rgba(255, 210, 63, 0.4);
}

.toast[data-tone="bad"] {
  border-color: rgba(255, 77, 141, 0.45);
}

.tile:active,
.btn:active {
  filter: saturate(1.15) contrast(1.05);
}

@keyframes wobble {
  0%,
  100% {
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-1px);
  }
}

@keyframes shimmerPan {
  0% {
    transform: translateX(-2%);
  }
  50% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(-2%);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes marqueeGlow {
  0% {
    transform: translateX(-12%);
  }
  100% {
    transform: translateX(12%);
  }
}

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

@keyframes spinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes stickerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-3px) rotate(-0.2deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 0 rgba(106, 228, 255, 0);
  }
  50% {
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45),
      0 0 42px rgba(106, 228, 255, 0.12);
  }
}

@keyframes scan {
  0% {
    transform: translateX(-80%);
    opacity: 0;
  }
  35% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

@keyframes jit {
  0% {
    transform: translateY(-1px) rotate(0deg);
  }
  25% {
    transform: translateY(-2px) rotate(-0.4deg);
  }
  55% {
    transform: translateY(-1px) rotate(0.35deg);
  }
  100% {
    transform: translateY(-1px) rotate(0deg);
  }
}

@keyframes hueSpin {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes blobBop {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-8px, -10px) scale(1.05);
  }
}

@keyframes titleGlitch {
  0%,
  92%,
  100% {
    text-shadow: 0 0 18px rgba(106, 228, 255, 0.14),
      0 0 28px rgba(255, 77, 141, 0.08);
    letter-spacing: -0.6px;
  }
  94% {
    text-shadow: -2px 0 rgba(255, 77, 141, 0.24),
      2px 0 rgba(106, 228, 255, 0.22), 0 0 34px rgba(255, 210, 63, 0.12);
    letter-spacing: -0.2px;
  }
  96% {
    text-shadow: 2px 0 rgba(255, 77, 141, 0.22), -2px 0 rgba(46, 242, 167, 0.18),
      0 0 36px rgba(106, 228, 255, 0.12);
    letter-spacing: -0.9px;
  }
}

@keyframes badgePop {
  0%,
  100% {
    transform: rotate(-10deg) scale(1);
  }
  50% {
    transform: rotate(6deg) scale(1.08);
  }
}

@keyframes toastWiggle {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-2px) rotate(-0.6deg);
  }
  45% {
    transform: translateY(0) rotate(0.5deg);
  }
  70% {
    transform: translateY(-1px) rotate(-0.3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes alarmFlash {
  0% {
    filter: saturate(2.5) contrast(1.4) hue-rotate(0deg);
  }
  50% {
    filter: saturate(3.5) contrast(1.8) hue-rotate(22deg);
  }
  100% {
    filter: saturate(2.5) contrast(1.4) hue-rotate(0deg);
  }
}

@keyframes stampSpin {
  0%,
  100% {
    transform: rotate(-2deg) scale(1);
    opacity: 0.78;
  }
  50% {
    transform: rotate(2deg) scale(1.03);
    opacity: 1;
  }
}

@keyframes alarmScroll {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 240px -240px, 0 0;
  }
}

@keyframes alarmBorderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes alarmGlitch {
  0%,
  100% {
    letter-spacing: 0.6px;
    transform: translateY(0) scale(1);
    opacity: 0.85;
  }
  50% {
    letter-spacing: 1.6px;
    transform: translateY(-1px) scale(1.04);
    opacity: 1;
  }
}

@keyframes sshPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1.8) contrast(1.15);
  }
  50% {
    transform: translateY(-2px) scale(1.01);
    filter: saturate(2.4) contrast(1.35);
  }
}

@keyframes bannerShake {
  0%,
  100% {
    transform: translateY(0) skewX(0deg);
  }
  20% {
    transform: translateY(-1px) skewX(-0.6deg);
  }
  45% {
    transform: translateY(0) skewX(0.5deg);
  }
  70% {
    transform: translateY(-1px) skewX(-0.3deg);
  }
}

@keyframes nagBreathe {
  0%,
  100% {
    transform: translateY(0) rotate(var(--nag-rot, 0deg)) scale(1);
    filter: saturate(1.05);
  }
  50% {
    transform: translateY(-3px) rotate(var(--nag-rot, 0deg)) scale(1.02);
    filter: saturate(1.25);
  }
}

.nag--left {
  --nag-rot: -1.5deg;
}

.nag--right {
  --nag-rot: 1.2deg;
}

@keyframes popupDrop {
  0% {
    transform: translateY(-10px) scale(0.98);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes popupWob {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0.35deg);
  }
}

@keyframes tickerRun {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(110%);
  }
}

@keyframes navWiggle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-1px) rotate(-0.3deg);
  }
}

@keyframes screenBuzz {
  0%,
  100% {
    opacity: 0.26;
  }
  50% {
    opacity: 0.42;
  }
}

.captcha {
  border-radius: 20px;
  border: 4px solid rgba(106, 228, 255, 0.22);
  background: rgba(0, 0, 0, 0.14);
  padding: 12px;
}

.captcha__head {
  display: grid;
  gap: 6px;
}

.captcha__title {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.3px;
}

.captcha__sub {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.captcha__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

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

.captcha__box {
  position: relative;
  min-height: 210px;
  border-radius: 18px;
  border: 4px double rgba(255, 255, 255, 0.14);
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 77, 141, 0.14) 0 16px,
    rgba(255, 210, 63, 0.14) 16px 32px,
    rgba(106, 228, 255, 0.12) 32px 48px
  );
  overflow: hidden;
}

.captcha__box--rot {
  padding: 10px;
}

.captcha__rotWrap {
  display: grid;
  place-items: center;
  min-height: 160px;
}

.captcha__img {
  width: 160px;
  height: 160px;
  transform-origin: 50% 50%;
  transition: transform 60ms linear;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
}

.captcha__rotControls {
  display: grid;
  gap: 8px;
  padding-bottom: 64px;
}

.captcha__rotSlider {
  width: 100%;
}

.captcha__rotReadout {
  font-weight: 950;
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
}

.captcha__runner {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  font-weight: 950;
  cursor: pointer;
  user-select: none;
  animation: navWiggle 0.9s ease-in-out infinite;
}

.captcha__check {
  color: rgba(46, 242, 167, 0.95);
}

.captcha__text {
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
}

.captcha__taunt {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 2px dashed rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  font-weight: 900;
}

.captcha__side {
  display: grid;
  gap: 10px;
  align-content: start;
}

.captcha__meter {
  height: 16px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.captcha__meterbar {
  height: 100%;
  width: 2%;
  background: repeating-linear-gradient(
    90deg,
    rgba(46, 242, 167, 0.9) 0 12px,
    rgba(106, 228, 255, 0.85) 12px 24px,
    rgba(255, 210, 63, 0.9) 24px 36px,
    rgba(255, 77, 141, 0.85) 36px 48px
  );
  transition: width 160ms ease;
}

.captcha__status {
  font-weight: 950;
  font-family: "Comic Sans MS", "Comic Neue", Inter, system-ui, sans-serif;
}

.captcha__tasks {
  display: grid;
  gap: 8px;
}

.captcha__task {
  padding: 8px 10px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  font-weight: 850;
}

.captcha__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.captcha__phrase {
  padding: 10px 12px;
  border-radius: 14px;
  border: 3px dashed rgba(255, 210, 63, 0.35);
  background: rgba(0, 0, 0, 0.22);
  user-select: none;
}

.captcha__ch {
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .brand-badge,
  .sticker,
  .donut-ring,
  .bar-fill::after,
  .page::before,
  .page::after,
  .card--hero::after,
  .btn:hover,
  .topbar::before,
  .page .card,
  .card::after,
  .toast--show,
  .h1,
  .btn--danger::after,
  .mega-banner,
  .nag,
  .popup,
  .ticker__track,
  body::before,
  .nav-link,
  .captcha__runner,
  .card--alarm,
  .card--alarm::before,
  .card--alarm::after,
  .card--ssh,
  .alarm-badge,
  .fake-perm {
    animation: none !important;
  }
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 24, 0.45);
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
