:root {
  --bg-0: #020812;
  --bg-1: #04101d;
  --bg-2: #06182b;
  --panel: rgba(5, 18, 32, 0.86);
  --panel-strong: rgba(8, 24, 42, 0.96);
  --line: rgba(58, 177, 255, 0.2);
  --line-strong: rgba(53, 215, 255, 0.42);
  --cyan: #35d7ff;
  --cyan-soft: #67e8f9;
  --blue: #2f8cff;
  --teal: #35f0d2;
  --green: #42f69d;
  --orange: #ffb247;
  --red: #ff4f5f;
  --yellow: #ffd36a;
  --text: #edf8ff;
  --muted: #8aa4bd;
  --muted-2: #607a95;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 1180px;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: auto;
  background:
    radial-gradient(circle at 17% 0%, rgba(53, 215, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(47, 140, 255, 0.1), transparent 32rem),
    linear-gradient(145deg, #020812 0%, #03111d 48%, #02050c 100%);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(53, 215, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 215, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 25%, #000 0%, transparent 78%);
}

#ssc-root {
  min-height: 100vh;
}

.ssc-boot-screen {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 100vh;
  padding: 56px;
  color: var(--text);
  background:
    radial-gradient(circle at 24% 38%, rgba(53, 215, 255, 0.18), transparent 28rem),
    linear-gradient(145deg, #020812, #03111d 58%, #02050c);
}

.ssc-boot-logo {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(53, 215, 255, 0.5);
  border-radius: 18px;
  color: #effcff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(5, 18, 32, 0.88);
  box-shadow:
    0 0 42px rgba(53, 215, 255, 0.18),
    inset 0 0 28px rgba(53, 215, 255, 0.12);
}

.ssc-boot-screen p,
.ssc-boot-screen span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ssc-boot-screen h1 {
  margin: 8px 0 12px;
  color: #f2fbff;
  font-size: 34px;
  line-height: 1.05;
}

html[data-ssc-boot-state="error"] .ssc-boot-screen span {
  color: var(--orange);
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  color: inherit;
}

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

.ssc-app {
  display: grid;
  grid-template-columns: 220px minmax(960px, 1fr);
  min-height: 100vh;
  border: 1px solid rgba(53, 215, 255, 0.35);
  border-radius: 8px;
  background: rgba(1, 8, 18, 0.54);
  box-shadow: inset 0 0 80px rgba(53, 215, 255, 0.03);
}

.ssc-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  border-right: 1px solid rgba(53, 215, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(4, 25, 44, 0.94), rgba(2, 8, 18, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(53, 215, 255, 0.14), transparent 18rem);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.03);
}

.ssc-logo {
  display: grid;
  height: 108px;
  place-items: center;
  border: 0;
  border-bottom: 1px solid rgba(53, 215, 255, 0.18);
  text-decoration: none;
  background: transparent;
}

.ssc-logo-mark {
  position: relative;
  color: #eafaff;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(53, 215, 255, 0.42);
}

.ssc-logo-mark::before,
.ssc-logo-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.ssc-logo-mark::before {
  top: -5px;
}

.ssc-logo-mark::after {
  bottom: -6px;
}

.ssc-nav {
  display: grid;
  align-content: start;
  overflow-y: auto;
  padding: 14px 0;
}

.nav-item {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 52px;
  border: 0;
  border-left: 3px solid transparent;
  padding: 0 18px;
  color: #c8d8e8;
  background: transparent;
  text-align: left;
}

.nav-item svg,
.top-actions svg,
.global-search svg,
.kpi-icon svg,
.alert-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-item:hover {
  color: #ffffff;
  background: rgba(53, 215, 255, 0.08);
}

.nav-item.is-active {
  border-left-color: var(--cyan);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(53, 215, 255, 0.24), rgba(53, 215, 255, 0.04)),
    rgba(4, 25, 44, 0.68);
  box-shadow: inset 0 0 34px rgba(53, 215, 255, 0.12);
}

.nav-item.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 13px;
  bottom: 13px;
  width: 2px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.assistant-card {
  margin: 0 16px 22px;
  border: 1px solid rgba(53, 215, 255, 0.24);
  border-radius: var(--radius);
  padding: 16px;
  background:
    radial-gradient(circle at 50% 34%, rgba(53, 215, 255, 0.19), transparent 7.5rem),
    linear-gradient(180deg, rgba(7, 28, 49, 0.9), rgba(3, 13, 24, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.assistant-title {
  display: block;
  margin-bottom: 12px;
  color: #d9f7ff;
  font-size: 13px;
  font-weight: 800;
}

.assistant-orb {
  position: relative;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  margin: 6px auto 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(53, 215, 255, 0.88) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(53, 215, 255, 0.3) 0 1px, transparent 1px 13px),
    radial-gradient(circle, rgba(53, 215, 255, 0.24), rgba(47, 140, 255, 0.04) 68%, transparent 70%);
  box-shadow: 0 0 30px rgba(53, 215, 255, 0.28);
}

.assistant-orb span,
.assistant-orb i {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(53, 215, 255, 0.48);
}

.assistant-orb span {
  inset: 17px;
  animation: spinSlow 12s linear infinite;
}

.assistant-orb i {
  inset: 34px;
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.34);
  animation: breathe 4s ease-in-out infinite;
}

.assistant-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.ssc-main {
  min-width: 0;
  padding: 0 16px 22px;
}

.ssc-topbar {
  display: grid;
  grid-template-columns: 330px 210px minmax(280px, 520px) minmax(420px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid rgba(53, 215, 255, 0.22);
}

.brand-lockup {
  display: grid;
  grid-template-columns: 1px 1fr;
  gap: 18px;
  align-items: center;
}

.brand-divider {
  height: 52px;
  background: rgba(53, 215, 255, 0.3);
}

.brand-lockup h1 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-lockup p,
.system-status small,
.clock-card span,
.admin-profile small {
  margin: 0;
  color: var(--muted);
}

.system-status {
  border-left: 1px solid rgba(53, 215, 255, 0.18);
  padding-left: 18px;
}

.system-status span {
  display: block;
  margin-bottom: 6px;
  color: #a8bdd2;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.system-status strong {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--green);
  font-size: 15px;
  text-transform: uppercase;
}

.system-status i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px var(--green);
}

.global-search {
  display: grid;
  grid-template-columns: 24px 1fr auto auto;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  border: 1px solid rgba(111, 148, 190, 0.28);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(5, 16, 30, 0.78);
}

.global-search:focus-within {
  border-color: rgba(53, 215, 255, 0.52);
  box-shadow: 0 0 0 3px rgba(53, 215, 255, 0.08);
}

.global-search input {
  min-width: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  outline: none;
}

.global-search input::placeholder {
  color: #8198af;
}

kbd {
  min-width: 20px;
  border: 1px solid rgba(139, 164, 190, 0.24);
  border-radius: 4px;
  padding: 2px 5px;
  color: #bfd3e8;
  font-size: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

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

.icon-button,
.admin-profile,
.soc-button,
select {
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 6px;
  background: rgba(7, 22, 39, 0.72);
}

.icon-button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #c4d8eb;
}

.icon-button:hover,
.icon-button.is-active,
.admin-profile:hover,
.soc-button:hover {
  border-color: rgba(53, 215, 255, 0.48);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(53, 215, 255, 0.1);
}

.icon-button em {
  position: absolute;
  top: -7px;
  right: -6px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  background: #ff384f;
  box-shadow: 0 0 14px rgba(255, 56, 79, 0.6);
}

.icon-button.compact {
  width: 36px;
  height: 36px;
}

.admin-profile {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 11px;
  align-items: center;
  min-height: 54px;
  padding: 6px 11px;
  text-align: left;
}

.admin-profile > span:first-child {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #b9dcff;
  background: rgba(53, 215, 255, 0.12);
}

.admin-profile strong,
.clock-card strong {
  display: block;
  color: #ffffff;
}

.admin-profile i {
  color: var(--muted-2);
  font-style: normal;
}

.admin-profile.is-authenticated {
  border-color: rgba(66, 246, 157, 0.3);
  background:
    linear-gradient(145deg, rgba(66, 246, 157, 0.08), transparent),
    rgba(7, 22, 39, 0.72);
}

.admin-profile.is-guest {
  border-color: rgba(255, 178, 71, 0.34);
}

.clock-card {
  min-width: 122px;
  border-left: 1px solid rgba(53, 215, 255, 0.18);
  padding-left: 18px;
}

.clock-card strong {
  font-variant-numeric: tabular-nums;
  font-size: 21px;
  letter-spacing: 0.08em;
}

.admin-login-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(53, 215, 255, 0.16), transparent 24rem),
    rgba(0, 5, 12, 0.78);
  backdrop-filter: blur(16px);
}

.admin-login-panel {
  width: min(440px, 100%);
  border: 1px solid rgba(53, 215, 255, 0.28);
  border-radius: 10px;
  padding: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(53, 215, 255, 0.15), transparent 11rem),
    linear-gradient(145deg, rgba(8, 24, 43, 0.96), rgba(2, 9, 18, 0.98));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(53, 215, 255, 0.12);
}

.admin-login-heading span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-login-heading h2 {
  margin: 8px 0 6px;
  color: #f5fbff;
  font-size: 28px;
  letter-spacing: 0;
}

.admin-login-heading p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.admin-login-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.admin-login-steps span {
  min-height: 38px;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 7px;
  padding: 0 12px;
  color: #8da6bc;
  background: rgba(1, 8, 17, 0.52);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.admin-login-steps span.is-active {
  border-color: rgba(53, 215, 255, 0.48);
  color: #e9fbff;
  background: rgba(53, 215, 255, 0.12);
  box-shadow: 0 0 18px rgba(53, 215, 255, 0.1);
}

.admin-login-steps span.is-complete {
  border-color: rgba(66, 246, 157, 0.34);
  color: #eafff6;
  background: rgba(66, 246, 157, 0.08);
}

.admin-login-steps span.is-muted {
  opacity: 0.72;
}

.admin-login-panel label {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: #9fb8cf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-login-panel input {
  min-height: 46px;
  border: 1px solid rgba(53, 215, 255, 0.2);
  border-radius: 7px;
  padding: 0 13px;
  color: #edf9ff;
  background: rgba(1, 8, 17, 0.78);
  outline: none;
}

.admin-login-panel input:focus {
  border-color: rgba(53, 215, 255, 0.62);
  box-shadow: 0 0 24px rgba(53, 215, 255, 0.12);
}

.admin-password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.admin-password-field input {
  min-width: 0;
}

.admin-password-field button {
  min-height: 46px;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 7px;
  padding: 0 12px;
  background: rgba(0, 183, 255, 0.1);
  color: #dff9ff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-password-field button:hover {
  border-color: rgba(53, 215, 255, 0.54);
  box-shadow: 0 0 18px rgba(53, 215, 255, 0.12);
}

.admin-login-error {
  margin: 12px 0 0;
  border: 1px solid rgba(255, 79, 95, 0.35);
  border-radius: 7px;
  padding: 10px 12px;
  color: #ffd0d5;
  background: rgba(255, 79, 95, 0.08);
}

.admin-passkey-panel {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  border: 1px solid rgba(53, 215, 255, 0.2);
  border-radius: 9px;
  padding: 16px;
  background:
    radial-gradient(circle at 82% 12%, rgba(53, 215, 255, 0.1), transparent 10rem),
    rgba(1, 8, 17, 0.72);
}

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

.admin-passkey-header strong {
  color: #f5fbff;
  font-size: 15px;
  font-weight: 900;
}

.admin-passkey-header span {
  min-height: 28px;
  border-radius: 999px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-passkey-header span.is-ready {
  border: 1px solid rgba(66, 246, 157, 0.32);
  color: #dffff0;
  background: rgba(66, 246, 157, 0.1);
}

.admin-passkey-header span.is-blocked {
  border: 1px solid rgba(255, 178, 71, 0.32);
  color: #ffe8be;
  background: rgba(255, 178, 71, 0.1);
}

.admin-passkey-note {
  margin: 0;
  color: #9db7cb;
  line-height: 1.6;
}

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

.admin-passkey-facts div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(4, 14, 27, 0.6);
}

.admin-passkey-facts span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-passkey-facts strong {
  color: #eefbff;
  font-size: 14px;
  font-weight: 800;
}

.admin-passkey-facts small {
  color: #88a6ba;
  line-height: 1.45;
}

.admin-login-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.admin-login-actions button {
  min-height: 40px;
  border: 1px solid rgba(53, 215, 255, 0.26);
  border-radius: 7px;
  padding: 0 14px;
  color: #d9f4ff;
  background: rgba(8, 24, 43, 0.86);
}

.admin-login-actions button[type="submit"] {
  border-color: rgba(53, 215, 255, 0.58);
  color: #00131e;
  background: linear-gradient(135deg, var(--cyan), #4ff3d2);
  font-weight: 900;
}

.admin-login-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  box-shadow: none;
}

@media (max-width: 640px) {
  .admin-login-steps,
  .admin-passkey-facts {
    grid-template-columns: minmax(0, 1fr);
  }

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

.workspace,
.module-page {
  padding-top: 14px;
}

.dashboard-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 12px;
}

.dashboard-source-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 7px;
  padding: 0 12px;
  color: #9bb0c7;
  background:
    linear-gradient(90deg, rgba(53, 215, 255, 0.08), rgba(4, 14, 27, 0.74)),
    rgba(4, 14, 27, 0.7);
}

.dashboard-source-strip span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-source-strip strong {
  min-width: 0;
  overflow: hidden;
  color: #eaf8ff;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-source-strip small {
  color: #88a5bb;
  font-size: 11px;
}

.dashboard-source-strip.is-mock span {
  color: #ffb247;
}

.angel-voice-panel {
  display: grid;
  gap: 12px;
  min-height: 36px;
  margin-bottom: 12px;
  padding: 14px;
}

.angel-voice-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.angel-voice-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.angel-voice-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(53, 215, 255, 0.1);
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.08);
}

.angel-voice-title small,
.angel-voice-metrics small,
.angel-voice-line em,
.angel-voice-pills span {
  color: #88a5bb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.angel-voice-title strong {
  display: block;
  margin-top: 3px;
  color: #f1fbff;
  font-size: 18px;
}

.angel-voice-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 999px;
  color: #a6f4e2;
  background: rgba(53, 240, 210, 0.08);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.angel-voice-status.is-interaction-requise,
.angel-voice-status.is-voix-navigateur-indisponible {
  color: #ffb247;
  background: rgba(255, 178, 71, 0.08);
}

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

.angel-voice-metrics span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(5, 17, 31, 0.7);
}

.angel-voice-metrics strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.angel-voice-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.angel-voice-actions button {
  min-height: 34px;
  border: 1px solid rgba(53, 215, 255, 0.2);
  border-radius: 8px;
  padding: 0 12px;
  color: #e9fbff;
  background: rgba(6, 19, 34, 0.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.angel-voice-actions button.is-muted {
  color: #87a1b7;
  border-color: rgba(135, 161, 183, 0.18);
}

.angel-voice-actions button:hover {
  border-color: rgba(53, 215, 255, 0.45);
}

.angel-voice-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.angel-voice-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 999px;
  background: rgba(4, 15, 27, 0.72);
}

.angel-voice-pills span.is-live {
  color: #7df2d9;
  border-color: rgba(53, 240, 210, 0.24);
}

.angel-voice-pills span.is-muted {
  color: #88a5bb;
}

.angel-voice-briefing {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 9px;
  padding: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.07), transparent 42%),
    rgba(4, 14, 25, 0.78);
}

.angel-voice-briefing strong {
  color: #eef9ff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.angel-voice-briefing p {
  margin: 0;
  color: #9cb5ca;
  font-size: 12px;
  line-height: 1.55;
}

.angel-voice-prompt-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.angel-voice-prompt-bar button,
.angel-voice-console-form button {
  min-height: 34px;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  color: #e9fbff;
  background: rgba(6, 19, 34, 0.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.angel-voice-prompt-bar button:disabled,
.angel-voice-console-form button:disabled {
  color: #7690a6;
  border-color: rgba(118, 144, 166, 0.14);
}

.angel-voice-console-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.angel-voice-console-form input {
  min-width: 0;
  min-height: 38px;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  color: #eef9ff;
  background: rgba(5, 17, 31, 0.74);
  font-size: 12px;
}

.angel-voice-console-form input::placeholder {
  color: #6f8aa1;
}

.angel-voice-transcript {
  display: grid;
  gap: 8px;
}

.angel-voice-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(53, 215, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.08), transparent 48%),
    rgba(3, 11, 21, 0.76);
}

.angel-voice-line strong {
  display: block;
  margin-bottom: 4px;
  color: #eef9ff;
  font-size: 13px;
}

.angel-voice-line p {
  margin: 0;
  color: #91abc3;
  font-size: 12px;
  line-height: 1.45;
}

.angel-voice-line.is-critical {
  border-color: rgba(255, 79, 95, 0.24);
}

.angel-voice-line.is-high {
  border-color: rgba(255, 178, 71, 0.24);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.dashboard-agent-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.dashboard-ops-workbench {
  margin-bottom: 12px;
  padding: 14px;
}

.dashboard-ops-tabbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.dashboard-ops-tabbar button {
  display: grid;
  gap: 5px;
  min-height: 60px;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 9px;
  padding: 12px 14px;
  background:
    linear-gradient(145deg, rgba(7, 22, 38, 0.88), rgba(2, 10, 20, 0.76)),
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.07), transparent 42%);
  color: #eaf9ff;
  text-align: left;
}

.dashboard-ops-tabbar button span {
  color: #f3fbff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.dashboard-ops-tabbar button small {
  color: #8da7c1;
  font-size: 11px;
}

.dashboard-ops-tabbar button.is-active {
  border-color: rgba(53, 215, 255, 0.52);
  background:
    linear-gradient(145deg, rgba(12, 37, 58, 0.96), rgba(3, 14, 27, 0.88)),
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.16), transparent 48%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px rgba(53, 215, 255, 0.08);
}

.dashboard-ops-stack > .dashboard-operation-status,
.dashboard-ops-stack > .dashboard-agent-summary,
.dashboard-ops-stack > .dashboard-next-evidence {
  margin-bottom: 0;
}

.dashboard-agent-card {
  display: grid;
  grid-template-columns: minmax(82px, 0.48fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 8px;
  padding: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(8, 24, 43, 0.86), rgba(3, 11, 22, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-agent-card span {
  display: block;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-agent-card strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 23px;
  line-height: 1;
}

.dashboard-agent-card small {
  display: block;
  margin-top: 4px;
  color: #8ba4bb;
  font-size: 11px;
}

.dashboard-agent-card em {
  display: inline-grid;
  width: fit-content;
  min-height: 22px;
  place-items: center;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 999px;
  padding: 3px 8px;
  color: #cfe4f7;
  background: rgba(53, 215, 255, 0.08);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-agent-card p {
  margin: 6px 0 0;
  color: #9bb0c7;
  font-size: 12px;
  line-height: 1.35;
}

.dashboard-agent-card .dashboard-card-source {
  margin-top: 7px;
  color: #6f8ca8;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.88;
}

.dashboard-agent-card button {
  min-width: 74px;
  min-height: 34px;
  border: 1px solid rgba(53, 215, 255, 0.25);
  border-radius: 7px;
  color: #dff8ff;
  background: rgba(53, 215, 255, 0.08);
  font-weight: 900;
}

.dashboard-agent-card button:hover {
  border-color: rgba(53, 215, 255, 0.62);
  color: #00131e;
  background: linear-gradient(135deg, var(--cyan), #4ff3d2);
}

.dashboard-operation-status {
  margin-bottom: 12px;
  padding: 16px;
}

.operation-status-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.22fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}

.operation-status-header h3 {
  margin: 0;
  color: #f3fbff;
  font-size: 18px;
}

.operation-status-header p {
  max-width: 820px;
  margin: 5px 0 0;
  color: #94aeca;
  line-height: 1.45;
}

.operation-status-mode {
  display: grid;
  gap: 5px;
  justify-items: end;
  text-align: right;
}

.operation-status-mode span,
.operation-status-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operation-status-mode strong {
  color: #f3fbff;
  font-size: 17px;
}

.operation-status-mode small {
  color: #8ba4bb;
  font-size: 11px;
}

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

.dashboard-runtime-anomalies {
  margin-bottom: 12px;
  padding: 16px;
}

.dashboard-runtime-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.dashboard-runtime-summary span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 215, 255, 0.1), transparent 7rem),
    rgba(4, 14, 27, 0.72);
}

.dashboard-runtime-summary strong {
  color: #f3fbff;
  font-size: 24px;
  line-height: 1;
}

.dashboard-runtime-summary small {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-runtime-grid {
  display: grid;
  gap: 10px;
}

.dashboard-runtime-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.09), transparent 38%),
    linear-gradient(145deg, rgba(8, 24, 43, 0.86), rgba(3, 11, 22, 0.74));
}

.dashboard-runtime-row.is-empty {
  grid-template-columns: minmax(0, 1fr);
}

.dashboard-runtime-main {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.dashboard-runtime-main span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-runtime-main strong {
  color: #ffffff;
  font-size: 18px;
}

.dashboard-runtime-main p {
  margin: 0;
  color: #8fa8c2;
  font-size: 12px;
  line-height: 1.4;
}

.dashboard-runtime-side {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.dashboard-runtime-side em {
  color: #8ba4bb;
  font-size: 11px;
  font-style: normal;
}

.dashboard-runtime-side button {
  min-height: 30px;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 7px;
  padding: 0 10px;
  color: #dff8ff;
  background: rgba(53, 215, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.dashboard-runtime-side button:hover {
  border-color: rgba(53, 215, 255, 0.62);
  color: #00131e;
  background: linear-gradient(135deg, var(--cyan), #4ff3d2);
}

.operation-status-card {
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  min-height: 156px;
  padding: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(8, 24, 43, 0.9), rgba(3, 11, 22, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px rgba(53, 215, 255, 0.035);
}

.operation-status-card strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.operation-status-card p {
  margin: 0;
  color: #8fa8c2;
  font-size: 12px;
  line-height: 1.35;
}

.operation-status-card .operation-status-source {
  color: #6f8ca8;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.88;
}

.operation-status-card button {
  width: fit-content;
  min-height: 30px;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 7px;
  padding: 0 10px;
  color: #dff8ff;
  background: rgba(53, 215, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.operation-status-card button:hover {
  border-color: rgba(53, 215, 255, 0.62);
  color: #00131e;
  background: linear-gradient(135deg, var(--cyan), #4ff3d2);
}

.soc-panel,
.kpi-card {
  position: relative;
  border: 1px solid rgba(53, 215, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(9, 30, 51, 0.88), rgba(4, 14, 27, 0.94)),
    radial-gradient(circle at 18% 0%, rgba(53, 215, 255, 0.08), transparent 14rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 38px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.soc-panel::before,
.kpi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(53, 215, 255, 0.05), transparent 22%, transparent 78%, rgba(53, 215, 255, 0.03)),
    linear-gradient(rgba(255, 255, 255, 0.025), transparent);
}

.kpi-card {
  display: grid;
  grid-template-columns: 48px 1fr 56px;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 16px;
}

.kpi-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(53, 215, 255, 0.11);
}

.kpi-card.is-red .kpi-icon {
  color: var(--red);
  background: rgba(255, 79, 95, 0.13);
}

.kpi-card.is-green .kpi-icon {
  color: var(--teal);
  background: rgba(53, 240, 210, 0.13);
}

.kpi-content span {
  display: block;
  margin-bottom: 5px;
  color: #9bb0c7;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.kpi-content strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.kpi-content small {
  color: var(--cyan);
  font-size: 11px;
}

.kpi-card.is-red .kpi-content small {
  color: var(--red);
}

.sparkline {
  align-self: end;
  width: 56px;
  height: 30px;
}

.sparkline polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 12px;
}

.threat-map-panel {
  display: grid;
  grid-template-rows: auto minmax(430px, 1fr) auto;
  gap: 12px;
  min-height: 464px;
  padding: 16px;
}

.threat-map-panel.is-expanded {
  position: fixed;
  z-index: 50;
  inset: 16px;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(4, 14, 27, 0.98);
}

.threat-map-panel.is-expanded .threat-map {
  min-height: 0;
}

.panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.panel-header h2,
.module-hero h2 {
  margin: 0;
  color: #f6fbff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.panel-header p {
  margin: 9px 0 0;
  color: #98aec6;
  font-size: 12px;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px var(--red);
}

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

.threat-scene-badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(68, 197, 255, 0.24);
  border-radius: 999px;
  color: #dff7ff;
  background: rgba(8, 22, 40, 0.84);
  box-shadow: inset 0 0 18px rgba(68, 197, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.threat-scene-badge.is-premium_simulated {
  border-color: rgba(68, 197, 255, 0.34);
  color: #67dfff;
}

.threat-scene-badge.is-backend_geo_live {
  border-color: rgba(53, 240, 210, 0.34);
  color: #7af2d8;
}

.panel-controls label {
  display: grid;
  grid-template-columns: auto 150px;
  gap: 8px;
  align-items: center;
  color: var(--muted-2);
  font-size: 11px;
}

select {
  height: 36px;
  padding: 0 12px;
  color: #e5f6ff;
  background-color: rgba(3, 12, 24, 0.86);
  outline: none;
}

.threat-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 79, 95, 0.09), transparent 21rem),
    linear-gradient(rgba(53, 215, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 215, 255, 0.035) 1px, transparent 1px),
    #04101c;
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.threat-globe-map {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 79, 95, 0.09), transparent 21rem),
    #020812;
}

.cesium-globe-shell,
.cesium-globe {
  position: absolute;
  inset: 0;
}

.cesium-globe-shell {
  background:
    radial-gradient(circle at 50% 42%, rgba(53, 215, 255, 0.08), transparent 22rem),
    #020812;
}

.cesium-widget,
.cesium-widget canvas {
  width: 100%;
  height: 100%;
}

.cesium-widget canvas {
  filter: saturate(1.18) contrast(1.13) brightness(1.08);
}

.cesium-fallback-world {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #dff8ff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(53, 215, 255, 0.16), transparent 16rem),
    radial-gradient(circle at 50% 44%, rgba(47, 140, 255, 0.12), transparent 26rem),
    linear-gradient(rgba(53, 215, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 215, 255, 0.035) 1px, transparent 1px),
    #020812;
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
}

.fallback-earth-scope {
  position: relative;
  width: min(100%, 760px);
  height: min(100%, 500px);
  display: grid;
  place-items: center;
}

.fallback-orbit {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(53, 215, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(53, 215, 255, 0.08);
  animation: spinSlow 16s linear infinite;
}

.fallback-orbit::before,
.fallback-orbit::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.fallback-orbit::before {
  transform: translate(142px, -5px);
}

.fallback-orbit::after {
  transform: translate(-151px, -5px);
}

.fallback-earth {
  position: relative;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(53, 215, 255, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 34%, rgba(53, 215, 255, 0.3), transparent 2rem),
    radial-gradient(circle at 62% 58%, rgba(66, 246, 157, 0.18), transparent 2.4rem),
    repeating-linear-gradient(90deg, rgba(53, 215, 255, 0.18) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(rgba(53, 215, 255, 0.12) 0 1px, transparent 1px 22px),
    rgba(4, 28, 48, 0.75);
  box-shadow:
    inset -34px -18px 46px rgba(0, 0, 0, 0.36),
    0 0 54px rgba(53, 215, 255, 0.18);
}

.fallback-earth span,
.fallback-earth i {
  position: absolute;
  border-radius: 999px;
  background: rgba(66, 246, 157, 0.4);
}

.fallback-earth span {
  left: 44px;
  top: 52px;
  width: 56px;
  height: 24px;
  transform: rotate(-18deg);
}

.fallback-earth i {
  right: 36px;
  bottom: 46px;
  width: 46px;
  height: 18px;
  transform: rotate(23deg);
}

.fallback-route-map {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(560px, 82%);
  height: min(360px, 66%);
  transform: translate(-50%, -50%);
  overflow: visible;
}

.fallback-globe-ring,
.fallback-globe-lat,
.fallback-globe-meridian {
  fill: none;
  stroke: rgba(53, 215, 255, 0.18);
  stroke-width: 0.28;
}

.fallback-globe-lat.is-lower {
  stroke-opacity: 0.44;
}

.fallback-route-line {
  fill: none;
  stroke-width: 0.44;
  stroke-linecap: round;
  stroke-dasharray: 1.4 1;
  opacity: 0.78;
  animation: fallbackRoutePulse 5.2s linear infinite;
}

.fallback-route.is-low .fallback-route-line {
  stroke: rgba(53, 215, 255, 0.78);
}

.fallback-route.is-medium .fallback-route-line {
  stroke: rgba(255, 178, 71, 0.86);
}

.fallback-route.is-high .fallback-route-line {
  stroke: rgba(255, 79, 95, 0.92);
}

.fallback-route.is-critical .fallback-route-line {
  stroke: rgba(255, 45, 122, 0.96);
}

.fallback-node {
  fill: rgba(223, 248, 255, 0.98);
}

.fallback-route.is-low .fallback-node.source,
.fallback-route.is-low .fallback-node.target {
  filter: drop-shadow(0 0 10px rgba(53, 215, 255, 0.45));
}

.fallback-route.is-medium .fallback-node.source,
.fallback-route.is-medium .fallback-node.target {
  filter: drop-shadow(0 0 10px rgba(255, 178, 71, 0.48));
}

.fallback-route.is-high .fallback-node.source,
.fallback-route.is-high .fallback-node.target {
  filter: drop-shadow(0 0 10px rgba(255, 79, 95, 0.5));
}

.fallback-route.is-critical .fallback-node.source,
.fallback-route.is-critical .fallback-node.target {
  filter: drop-shadow(0 0 12px rgba(255, 45, 122, 0.54));
}

.fallback-node-pulse {
  fill: none;
  stroke-width: 0.38;
  opacity: 0;
  transform-origin: center;
  animation: fallbackNodePulse 4.8s ease-out infinite;
}

.fallback-route.is-low .fallback-node-pulse {
  stroke: rgba(53, 215, 255, 0.76);
}

.fallback-route.is-medium .fallback-node-pulse {
  stroke: rgba(255, 178, 71, 0.82);
}

.fallback-route.is-high .fallback-node-pulse {
  stroke: rgba(255, 79, 95, 0.88);
}

.fallback-route.is-critical .fallback-node-pulse {
  stroke: rgba(255, 45, 122, 0.96);
}

.fallback-core {
  opacity: 0.85;
}

.fallback-status-chip {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  display: grid;
  gap: 4px;
  min-width: 270px;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(3, 12, 24, 0.88);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 0 24px rgba(53, 215, 255, 0.08);
}

.fallback-status-chip strong {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fallback-status-chip small {
  color: var(--muted);
  font-size: 11px;
}

.fallback-route-legend {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 112px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.fallback-legend-pill {
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(4, 18, 30, 0.84);
  color: #e6f9ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fallback-legend-pill.is-low {
  border-color: rgba(53, 215, 255, 0.28);
}

.fallback-legend-pill.is-medium {
  border-color: rgba(255, 178, 71, 0.3);
}

.fallback-legend-pill.is-high {
  border-color: rgba(255, 79, 95, 0.34);
}

.fallback-legend-pill.is-critical {
  border-color: rgba(255, 45, 122, 0.4);
}

.fallback-earth-scope.is-europe .fallback-earth,
.fallback-earth-scope.is-africa .fallback-earth,
.fallback-earth-scope.is-americas .fallback-earth,
.fallback-earth-scope.is-asia .fallback-earth {
  box-shadow:
    inset -34px -18px 46px rgba(0, 0, 0, 0.36),
    0 0 64px rgba(53, 215, 255, 0.24);
}

.cesium-viewer {
  font-family: inherit;
}

.cesium-viewer-bottom,
.cesium-viewer-toolbar,
.cesium-viewer-animationContainer,
.cesium-viewer-timelineContainer,
.cesium-widget-errorPanel {
  display: none !important;
}

.cesium-infoBox {
  top: 70px;
  right: 18px;
  border: 1px solid rgba(53, 215, 255, 0.24);
  background: rgba(3, 12, 24, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.cesium-notice {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 3;
  max-width: 250px;
  border: 1px solid rgba(53, 215, 255, 0.2);
  border-radius: 6px;
  padding: 7px 9px;
  color: rgba(207, 224, 236, 0.66);
  font-size: 10px;
  line-height: 1.35;
  background: rgba(4, 16, 29, 0.54);
  backdrop-filter: blur(10px);
}

.earth-zone-controls {
  position: absolute;
  top: 14px;
  right: 16px;
  left: 286px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.earth-zone-controls button {
  min-height: 30px;
  border: 1px solid rgba(53, 215, 255, 0.23);
  border-radius: 6px;
  padding: 0 10px;
  color: rgba(219, 241, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  background: rgba(3, 12, 24, 0.7);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    border-color 240ms ease,
    color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.earth-zone-controls button:hover,
.earth-zone-controls button.is-active {
  border-color: rgba(53, 215, 255, 0.66);
  color: #f3fbff;
  background: rgba(0, 177, 255, 0.16);
  box-shadow: 0 0 24px rgba(53, 215, 255, 0.18);
}

.real-world-map {
  position: absolute;
  inset: 0;
  background: #030a14;
}

.real-world-map canvas {
  filter: saturate(1.08) contrast(1.05);
}

.map-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 47%, rgba(255, 79, 95, 0.09), transparent 19rem),
    linear-gradient(rgba(53, 215, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 215, 255, 0.022) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mix-blend-mode: screen;
  opacity: 0.72;
}

@media (max-width: 1180px) {
  .earth-zone-controls {
    top: 48px;
    left: 16px;
    justify-content: flex-start;
  }

  .cesium-notice {
    right: 16px;
    max-width: none;
  }

  .connected-sessions {
    top: 92px;
  }
}

.map-error {
  position: absolute;
  top: 62px;
  left: 50%;
  z-index: 5;
  max-width: 360px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 178, 71, 0.42);
  border-radius: 6px;
  padding: 10px 12px;
  color: #ffe5bd;
  font-size: 12px;
  background: rgba(28, 17, 5, 0.88);
  box-shadow: 0 0 24px rgba(255, 178, 71, 0.12);
}

.maplibregl-control-container {
  position: relative;
  z-index: 4;
}

.maplibregl-ctrl-group {
  border: 1px solid rgba(53, 215, 255, 0.28) !important;
  background: rgba(4, 16, 29, 0.86) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28) !important;
}

.maplibregl-ctrl-group button {
  width: 31px !important;
  height: 31px !important;
  background-color: transparent !important;
  filter: invert(1) hue-rotate(165deg) saturate(2.2);
}

.maplibregl-ctrl-group button + button {
  border-top-color: rgba(53, 215, 255, 0.18) !important;
}

.ssc-map-popup .maplibregl-popup-content {
  border: 1px solid rgba(53, 215, 255, 0.28);
  border-radius: 6px;
  padding: 10px 12px;
  color: #edf8ff;
  background: rgba(3, 12, 24, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38), 0 0 22px rgba(53, 215, 255, 0.14);
}

.ssc-map-popup strong,
.ssc-map-popup span,
.ssc-map-popup small {
  display: block;
}

.ssc-map-popup strong {
  margin-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
}

.ssc-map-popup span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.ssc-map-popup small {
  margin-top: 4px;
  color: var(--muted);
}

.ssc-map-popup .maplibregl-popup-tip {
  border-top-color: rgba(3, 12, 24, 0.94);
}

.world-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-grid-lines {
  fill: none;
  stroke: rgba(53, 215, 255, 0.05);
}

.land .continent {
  fill: url(#landGlow);
  stroke: rgba(97, 150, 205, 0.24);
  stroke-width: 1;
  stroke-dasharray: 1 3;
  vector-effect: non-scaling-stroke;
}

.land .continent:hover {
  fill-opacity: 0.9;
  stroke: rgba(53, 215, 255, 0.46);
}

.continent-labels text {
  fill: rgba(179, 214, 245, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  paint-order: stroke;
  stroke: rgba(3, 12, 24, 0.8);
  stroke-width: 4px;
}

.route {
  fill: none;
  stroke: rgba(255, 79, 95, 0.72);
  stroke-width: 1.5;
  filter: url(#nodeGlow);
  opacity: 0.8;
  stroke-dasharray: 6 8;
  animation: routeFlow 8s linear infinite;
}

.route.is-medium {
  stroke: rgba(255, 178, 71, 0.7);
}

.route.is-low {
  stroke: rgba(53, 215, 255, 0.6);
}

.node-core {
  fill: currentColor;
  filter: url(#nodeGlow);
}

.event-label {
  fill: rgba(237, 248, 255, 0.8);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  paint-order: stroke;
  pointer-events: none;
  stroke: rgba(2, 8, 18, 0.92);
  stroke-width: 4px;
}

.node-ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  opacity: 0.86;
  animation: pulseRing 3.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.node-high {
  color: var(--red);
}

.node-medium {
  color: var(--orange);
}

.node-low {
  color: var(--cyan);
}

.targeted-regions {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  width: 260px;
  border: 1px solid rgba(53, 215, 255, 0.26);
  border-radius: 6px;
  padding: 13px;
  background: rgba(4, 16, 29, 0.88);
  backdrop-filter: blur(12px);
}

.connected-sessions {
  position: absolute;
  right: 16px;
  top: 56px;
  z-index: 3;
  width: 236px;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 6px;
  padding: 13px;
  background: rgba(4, 16, 29, 0.78);
  backdrop-filter: blur(12px);
}

.targeted-regions h3,
.connected-sessions h3,
.map-legend span,
.section-kicker {
  margin: 0 0 10px;
  color: #c9dcec;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.session-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
  color: #c8d8e9;
  font-size: 12px;
}

.session-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.session-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.session-row small {
  color: var(--muted-2);
}

.region-row {
  display: grid;
  grid-template-columns: 18px minmax(78px, 1fr) 70px 44px;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
  color: #c8d8e9;
  font-size: 12px;
}

.region-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.region-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff9a64);
}

.map-legend {
  position: absolute;
  right: 270px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  gap: 7px;
  min-width: 148px;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 6px;
  padding: 10px 13px;
  background: rgba(4, 16, 29, 0.78);
}

.map-legend span {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: #8fa9bf;
  text-transform: none;
}

.map-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.map-legend .high {
  background: var(--red);
}

.map-legend .medium {
  background: var(--orange);
}

.map-legend .low {
  background: var(--cyan);
}

.world-signal-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  grid-template-rows: auto 1fr;
  gap: 10px 14px;
  min-height: 206px;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 6px;
  padding: 12px;
  background:
    radial-gradient(circle at 92% 28%, rgba(53, 215, 255, 0.16), transparent 9rem),
    linear-gradient(145deg, rgba(5, 18, 32, 0.94), rgba(2, 9, 18, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.22);
}

.world-signal-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(53, 215, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 215, 255, 0.028) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.3) 74%, transparent);
}

.world-signal-header {
  position: relative;
  z-index: 1;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.world-signal-header span,
.world-city-card header small,
.world-city-card footer span,
.world-city-card em,
.satellite-relay strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-signal-header strong {
  display: block;
  margin-top: 2px;
  color: #f2fbff;
  font-size: 13px;
  text-transform: uppercase;
}

.weather-state {
  border: 1px solid rgba(53, 215, 255, 0.26);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--cyan);
  background: rgba(53, 215, 255, 0.08);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.weather-state.is-live {
  color: var(--green);
  background: rgba(66, 246, 157, 0.1);
}

.weather-state.is-local {
  color: var(--orange);
  background: rgba(255, 178, 71, 0.1);
}

.world-city-strip {
  position: relative;
  z-index: 1;
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 8px;
}

.world-city-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.15);
  border-radius: 6px;
  padding: 9px;
  background:
    radial-gradient(circle at 70% 0%, rgba(53, 215, 255, 0.1), transparent 5rem),
    rgba(3, 12, 24, 0.58);
  overflow: hidden;
}

.world-city-card::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.86), transparent);
  opacity: 0.58;
}

.world-city-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.world-city-card header span {
  color: #f2fbff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.world-city-card > strong {
  display: block;
  margin: 6px 0 5px;
  color: var(--cyan);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(53, 215, 255, 0.22);
  white-space: nowrap;
}

.city-weather {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.city-weather b {
  color: var(--green);
  font-size: 15px;
}

.city-weather span {
  min-width: 0;
  color: #aec4d8;
  font-size: 11px;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.world-city-card footer {
  display: grid;
  gap: 3px;
}

.world-city-card footer span {
  color: #7f9ab3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.world-city-card em {
  display: block;
  margin-top: 7px;
  color: #668098;
  font-style: normal;
}

.satellite-relay {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  min-height: 100%;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 35%, rgba(53, 215, 255, 0.16), transparent 5.5rem),
    rgba(2, 9, 18, 0.64);
  overflow: hidden;
}

.satellite-dish {
  position: relative;
  width: 66px;
  height: 66px;
  animation: satelliteSweep 4.8s ease-in-out infinite;
  transform-origin: 50% 74%;
}

.satellite-dish span {
  position: absolute;
  left: 11px;
  top: 16px;
  width: 39px;
  height: 25px;
  border: 2px solid var(--cyan);
  border-right: 0;
  border-radius: 44px 0 0 44px;
  box-shadow: inset 0 0 16px rgba(53, 215, 255, 0.12), 0 0 20px rgba(53, 215, 255, 0.25);
  transform: rotate(-28deg);
}

.satellite-dish i {
  position: absolute;
  left: 31px;
  bottom: 10px;
  width: 4px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), rgba(53, 215, 255, 0.1));
  box-shadow: 0 0 16px rgba(53, 215, 255, 0.28);
}

.satellite-signal {
  position: absolute;
  right: 12px;
  top: 30px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(53, 215, 255, 0.42);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transform: rotate(-28deg) scale(0.42);
  transform-origin: 20% 80%;
  animation: satelliteSignal 2.4s ease-out infinite;
}

.satellite-signal.signal-two {
  animation-delay: 0.55s;
}

.satellite-signal.signal-three {
  animation-delay: 1.1s;
}

.satellite-relay strong {
  align-self: end;
  margin-bottom: 13px;
  color: var(--cyan);
}

.right-column {
  display: grid;
  gap: 12px;
}

.stack-panel {
  min-height: 224px;
  padding: 16px;
}

.panel-header.mini {
  align-items: center;
  margin-bottom: 14px;
}

.panel-header.mini button {
  border: 0;
  color: var(--cyan);
  background: transparent;
  font-size: 12px;
}

.alert-list,
.incident-list {
  display: grid;
}

.panel-empty-state {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(53, 215, 255, 0.09);
}

.panel-empty-state strong {
  display: block;
  color: #eff8ff;
  font-size: 13px;
}

.panel-empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.alert-item,
.incident-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(53, 215, 255, 0.09);
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.alert-item:hover,
.incident-item:hover,
.alert-item:focus-visible,
.incident-item:focus-visible {
  outline: none;
  background: rgba(53, 215, 255, 0.06);
  box-shadow: inset 3px 0 0 rgba(53, 215, 255, 0.52);
}

.alert-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: var(--red);
  background: rgba(255, 79, 95, 0.12);
}

.alert-item.is-high .alert-icon,
.incident-item.is-high .incident-severity {
  color: var(--orange);
  background: rgba(255, 178, 71, 0.12);
}

.alert-item.is-medium .alert-icon,
.incident-item.is-medium .incident-severity {
  color: var(--yellow);
  background: rgba(255, 211, 106, 0.12);
}

.alert-item strong,
.incident-item strong {
  display: block;
  margin-bottom: 4px;
  color: #eff8ff;
  font-size: 13px;
}

.alert-item p,
.incident-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.severity,
.incident-severity {
  justify-self: end;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.alert-time,
.incident-time {
  color: var(--muted-2);
  font-size: 11px;
}

.incident-item {
  grid-template-columns: 28px 1fr auto;
  min-height: 56px;
}

.incident-severity {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 79, 95, 0.12);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.analytics-card {
  min-height: 188px;
  padding: 16px;
}

.analytics-card.wide {
  grid-column: span 2;
}

.analytics-card h3 {
  margin: 0 0 12px;
  color: #d6e9f7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.donut-layout {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: center;
}

.donut {
  --value: 75;
  --color: var(--cyan);
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #06111f 0 48%, transparent 49%),
    conic-gradient(var(--color) calc(var(--value) * 1%), rgba(63, 98, 132, 0.35) 0);
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.1);
}

.donut strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.donut small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

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

.stats-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #cfe0ec;
  font-size: 12px;
}

.stats-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.stats-list span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.stats-list svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.gauge {
  position: relative;
  display: grid;
  width: 140px;
  height: 80px;
  place-items: end center;
  margin: 6px auto 12px;
  overflow: hidden;
}

.gauge::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 14px solid rgba(58, 177, 255, 0.16);
  border-bottom: 0;
  border-radius: 140px 140px 0 0;
}

.gauge::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 14px solid transparent;
  border-left-color: var(--orange);
  border-top-color: var(--orange);
  border-bottom: 0;
  border-radius: 140px 140px 0 0;
  transform: rotate(-24deg);
  transform-origin: 50% 100%;
}

.gauge strong {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 28px;
}

.mini-chart {
  width: 100%;
  height: 116px;
}

.mini-chart polyline {
  fill: none;
  stroke-width: 2;
}

.bar-chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 108px;
  gap: 11px;
  margin-top: 10px;
}

.bar-chart span {
  flex: 1;
  min-width: 10px;
  border: 1px solid rgba(53, 215, 255, 0.25);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(53, 240, 210, 0.86), rgba(53, 215, 255, 0.32));
  box-shadow: 0 0 18px rgba(53, 240, 210, 0.15);
}

.soc-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  font-weight: 700;
}

.soc-button.ghost {
  background: rgba(7, 22, 39, 0.58);
}

.soc-button.wide {
  width: 100%;
  margin-top: 14px;
}

.button-arrow {
  color: var(--cyan);
  font-size: 20px;
}

.module-page {
  min-height: calc(100vh - 108px);
}

.module-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: center;
  min-height: 220px;
  border: 1px solid rgba(53, 215, 255, 0.24);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 78% 28%, rgba(53, 215, 255, 0.18), transparent 20rem),
    linear-gradient(145deg, rgba(8, 30, 51, 0.92), rgba(3, 12, 24, 0.94));
}

.module-hero h2 {
  margin-bottom: 10px;
  font-size: 34px;
  text-transform: none;
}

.module-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.module-page.has-dedicated-tabs .module-hero {
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  min-height: 132px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 215, 255, 0.12), transparent 15rem),
    linear-gradient(145deg, rgba(7, 25, 43, 0.9), rgba(3, 12, 24, 0.94));
}

.module-page.has-dedicated-tabs .module-hero h2 {
  margin-bottom: 6px;
  font-size: 26px;
}

.module-page.has-dedicated-tabs .module-hero p {
  max-width: 920px;
  line-height: 1.45;
}

.module-page.has-dedicated-tabs .module-status {
  padding: 12px;
}

.module-page.has-dedicated-tabs .module-status strong {
  margin: 5px 0 2px;
  font-size: 18px;
}

.module-page.has-dedicated-tabs .module-refresh-button {
  margin-top: 8px;
  padding: 7px 10px;
  font-size: 10px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--cyan);
  letter-spacing: 0.16em;
}

.module-status {
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(3, 12, 24, 0.68);
}

.module-status span,
.module-status small {
  display: block;
  color: var(--muted);
}

.module-status strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--green);
  font-size: 24px;
  text-transform: uppercase;
}

.module-sync-time {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.module-sync-time.is-error {
  color: var(--red);
}

.module-refresh-button {
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(53, 215, 255, 0.34);
  border-radius: 10px;
  padding: 9px 12px;
  background: linear-gradient(135deg, rgba(53, 215, 255, 0.14), rgba(36, 117, 255, 0.08));
  color: #dff8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.08);
}

.module-refresh-button:hover:not(:disabled) {
  border-color: rgba(53, 215, 255, 0.68);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(53, 215, 255, 0.16);
}

.module-refresh-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

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

.module-card {
  min-height: 180px;
  padding: 18px;
}

.module-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 16px;
}

.module-card p,
.module-card li {
  color: var(--muted);
  line-height: 1.55;
}

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

.module-card strong {
  color: var(--cyan);
}

.endpoint-contract-panel {
  margin-top: 12px;
  padding: 18px;
}

.contract-panel-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.contract-panel-header h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
}

.contract-panel-header p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contract-mode {
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(3, 12, 24, 0.58);
}

.contract-mode span,
.contract-mode small {
  display: block;
  color: var(--muted);
}

.contract-mode strong {
  display: block;
  margin: 5px 0 3px;
  color: var(--green);
  font-size: 18px;
  text-transform: uppercase;
}

.endpoint-contract-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.endpoint-contract-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) 118px minmax(360px, 1.5fr) 90px;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(2, 11, 22, 0.45);
}

.endpoint-contract-row.is-head {
  min-height: 34px;
  color: #9fb8cf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(53, 215, 255, 0.06);
}

.endpoint-path {
  color: #dff8ff;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

.contract-badge,
.contract-audit,
.contract-roles i {
  display: inline-grid;
  width: fit-content;
  min-height: 24px;
  place-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.contract-badge.is-low {
  color: var(--cyan);
  background: rgba(53, 215, 255, 0.1);
}

.contract-badge.is-medium {
  color: var(--orange);
  background: rgba(255, 178, 71, 0.12);
}

.contract-badge.is-high {
  color: var(--red);
  background: rgba(255, 79, 95, 0.13);
}

.contract-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contract-roles i {
  color: #cfe4f7;
  background: rgba(124, 162, 198, 0.12);
}

.contract-audit {
  color: var(--green);
  background: rgba(66, 246, 157, 0.1);
}

.audit-log-panel {
  margin-top: 12px;
  padding: 18px;
}

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

.audit-summary-grid span {
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 6px;
  padding: 12px;
  background: rgba(3, 12, 24, 0.58);
}

.audit-summary-grid strong {
  display: block;
  color: var(--cyan);
  font-size: 20px;
}

.audit-summary-grid small {
  color: var(--muted);
  font-size: 11px;
}

.audit-log-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.audit-log-row {
  display: grid;
  grid-template-columns: 80px 130px 94px 120px minmax(180px, 0.85fr) 90px minmax(260px, 1.15fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 6px;
  padding: 8px 10px;
  color: #cfe1f2;
  background: rgba(2, 11, 22, 0.45);
}

.audit-log-row.is-head {
  min-height: 34px;
  color: #9fb8cf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(53, 215, 255, 0.06);
}

.audit-time,
.audit-action {
  color: #dff8ff;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

.audit-role {
  color: var(--cyan);
  font-weight: 800;
}

.audit-result {
  display: inline-grid;
  width: fit-content;
  min-height: 24px;
  place-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-result.is-allowed {
  color: var(--green);
  background: rgba(66, 246, 157, 0.1);
}

.audit-result.is-denied,
.audit-result.is-blocked {
  color: var(--orange);
  background: rgba(255, 178, 71, 0.12);
}

.audit-note {
  color: var(--muted);
  line-height: 1.45;
}

.operational-panel,
.owner-validation-panel {
  margin-top: 12px;
  padding: 18px;
}

.ops-pill {
  display: inline-grid;
  width: fit-content;
  min-height: 24px;
  place-items: center;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 999px;
  padding: 4px 9px;
  color: #cfe4f7;
  background: rgba(53, 215, 255, 0.08);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ops-pill.is-critique,
.ops-pill.is-critical,
.ops-pill.is-a-corriger {
  color: var(--red);
  border-color: rgba(255, 79, 95, 0.28);
  background: rgba(255, 79, 95, 0.12);
}

.ops-pill.is-eleve,
.ops-pill.is-high,
.ops-pill.is-pending,
.ops-pill.is-pending-owner,
.ops-pill.is-pending-staging-test {
  color: var(--orange);
  border-color: rgba(255, 178, 71, 0.28);
  background: rgba(255, 178, 71, 0.12);
}

.ops-pill.is-ready,
.ops-pill.is-present,
.ops-pill.is-ready-to-validate,
.ops-pill.is-documented,
.ops-pill.is-approved,
.ops-pill.is-v1-documentee,
.ops-pill.is-protected,
.ops-pill.is-gate-active,
.ops-pill.is-public-edge-ok {
  color: var(--green);
  border-color: rgba(66, 246, 157, 0.26);
  background: rgba(66, 246, 157, 0.1);
}

.ops-pill.is-read-only-enforced,
.ops-pill.is-draftable,
.ops-pill.is-v2-prepared,
.ops-pill.is-request-draft,
.ops-pill.is-redirect-ok,
.ops-pill.is-redirect-chain {
  color: var(--cyan);
  border-color: rgba(53, 215, 255, 0.26);
  background: rgba(53, 215, 255, 0.1);
}

.ops-pill.is-locked-safe,
.ops-pill.is-locked-v1,
.ops-pill.is-locked-pending-owner,
.ops-pill.is-owner-required,
.ops-pill.is-pending-evidence,
.ops-pill.is-required-before-prod,
.ops-pill.is-agent-2-evidence,
.ops-pill.is-devops-evidence,
.ops-pill.is-action-required,
.ops-pill.is-not-ready-for-production,
.ops-pill.is-to-validate,
.ops-pill.is-planned,
.ops-pill.is-protection-required,
.ops-pill.is-public-edge-mismatch {
  color: var(--orange);
  border-color: rgba(255, 178, 71, 0.28);
  background: rgba(255, 178, 71, 0.12);
}

.ops-pill.is-gate-mismatch {
  color: var(--red);
  border-color: rgba(255, 79, 95, 0.28);
  background: rgba(255, 79, 95, 0.12);
}

.owner-validation-grid,
.findings-grid,
.backup-ops-grid,
.monitoring-grid,
.agent-contract-grid,
.agent-ops-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.agent-contract-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 10px;
}

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

.owner-validation-card,
.finding-card,
.backup-ops-grid article,
.monitoring-grid article,
.agent-ops-card {
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.86), rgba(3, 11, 22, 0.74)),
    rgba(4, 12, 24, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.owner-validation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(190px, 0.85fr);
  gap: 12px;
  align-items: start;
}

.owner-validation-card span,
.agent-ops-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owner-validation-id {
  display: block;
  margin-top: 6px;
  color: rgba(168, 220, 255, 0.72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-validation-card h4,
.finding-card h4,
.backup-ops-grid h4,
.monitoring-grid h4,
.agent-ops-card h4 {
  margin: 6px 0;
  color: #f3fbff;
  font-size: 15px;
}

.owner-validation-card p,
.finding-card p,
.agent-ops-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.agent-contract-card {
  display: grid;
  gap: 8px;
}

.settings-governance-panel {
  overflow: hidden;
}

.settings-governance-grid,
.settings-mode-summary,
.settings-gate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

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

.settings-governance-card,
.settings-gate-row,
.settings-mode-summary span {
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 26, 48, 0.88), rgba(2, 11, 22, 0.76)),
    rgba(4, 14, 27, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 26px rgba(53, 215, 255, 0.035);
}

.settings-governance-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 132px;
  padding: 14px;
}

.settings-governance-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.settings-governance-card h4 {
  margin: 7px 0 0;
  color: #f3fbff;
  font-size: 15px;
}

.settings-governance-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.settings-mode-summary {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 10px;
}

.settings-mode-summary span {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 12px;
}

.settings-mode-summary small {
  color: #7f97af;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.settings-mode-summary strong {
  color: #e9fbff;
  font-size: 13px;
}

.settings-gate-grid {
  margin-top: 10px;
}

.settings-gate-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) auto minmax(260px, 1.4fr);
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
}

.settings-gate-row strong {
  color: #e9fbff;
  font-size: 13px;
}

.settings-gate-row small {
  color: #8ba4bb;
  line-height: 1.35;
}

.analysys-vault-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(53, 215, 255, 0.32);
  background:
    radial-gradient(circle at 16% 10%, rgba(53, 215, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 86% 0%, rgba(255, 178, 71, 0.12), transparent 22rem),
    linear-gradient(145deg, rgba(3, 14, 27, 0.96), rgba(1, 7, 15, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 42px rgba(53, 215, 255, 0.09);
}

.analysys-vault-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(53, 215, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 215, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

.module-page-analysys {
  display: grid;
  gap: 12px;
}

.analysys-vault-panel.is-loading {
  display: grid;
  min-height: 340px;
  align-content: center;
  gap: 12px;
}

.analysys-vault-panel.is-loading h3 {
  margin: 0;
  color: #f5fcff;
  font-size: 32px;
}

.analysys-vault-panel.is-loading p {
  max-width: 740px;
  margin: 0;
  color: #9bb2c7;
  line-height: 1.5;
}

.analysys-vault-cover {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(220px, 0.52fr) minmax(300px, 0.82fr);
  gap: 18px;
  align-items: stretch;
  min-height: 520px;
}

.analysys-cover-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 10% 18%, rgba(53, 215, 255, 0.14), transparent 13rem),
    linear-gradient(145deg, rgba(4, 18, 34, 0.86), rgba(1, 7, 16, 0.76));
}

.analysys-cover-copy h3 {
  margin: 0;
  color: #f7fcff;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 0.94;
  letter-spacing: 0;
}

.analysys-cover-copy p {
  max-width: 640px;
  margin: 0;
  color: #a7bed3;
  line-height: 1.58;
}

.analysys-cover-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.analysys-cover-status-row span,
.analysys-vault-lanes article,
.analysys-command-matrix span,
.analysys-bridge-grid article {
  border: 1px solid rgba(53, 215, 255, 0.15);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(8, 29, 50, 0.82), rgba(2, 10, 20, 0.78)),
    rgba(3, 14, 28, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.analysys-cover-status-row span {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 12px;
}

.analysys-cover-status-row strong,
.analysys-vault-lanes strong,
.analysys-command-matrix strong,
.analysys-bridge-grid strong {
  color: #f0fbff;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.analysys-cover-status-row small,
.analysys-vault-lanes small,
.analysys-command-matrix small,
.analysys-bridge-grid small {
  color: #8aa3ba;
  line-height: 1.35;
}

.analysys-vault-core {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 48%, rgba(53, 215, 255, 0.26), transparent 6rem),
    radial-gradient(circle at 50% 50%, rgba(1, 8, 18, 0.2), rgba(0, 0, 0, 0.52) 72%),
    linear-gradient(145deg, rgba(1, 8, 18, 0.96), rgba(2, 13, 25, 0.9));
}

.analysys-vault-core::before,
.analysys-vault-core::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.analysys-vault-core::before {
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(53, 215, 255, 0.22);
  box-shadow:
    inset 0 0 34px rgba(53, 215, 255, 0.1),
    0 0 34px rgba(53, 215, 255, 0.1);
}

.analysys-vault-core::after {
  width: 52%;
  aspect-ratio: 1;
  border: 1px dashed rgba(251, 191, 36, 0.36);
  animation: analysysOrbit 18s linear infinite;
}

.analysys-core-ring {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.analysys-core-ring.is-outer {
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(53, 215, 255, 0.35);
}

.analysys-core-ring.is-middle {
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 32px rgba(53, 215, 255, 0.2);
}

.analysys-core-ring.is-inner {
  width: 22%;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 191, 36, 0.5);
  background: radial-gradient(circle, rgba(53, 215, 255, 0.18), transparent 70%);
}

.analysys-vault-core strong {
  position: relative;
  color: #f7fcff;
  font-size: clamp(24px, 2.6vw, 42px);
  letter-spacing: 0.08em;
  text-align: center;
}

.analysys-vault-core small {
  position: relative;
  align-self: start;
  margin-top: -44%;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.analysys-entry-side {
  display: grid;
  grid-template-rows: minmax(220px, 0.72fr) auto minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
}

.analysys-entry-side .analysys-vault-core {
  min-height: 220px;
}

.analysys-vault-core.is-verifying::after {
  border-color: rgba(53, 215, 255, 0.72);
  animation-duration: 6s;
}

.analysys-vault-core.is-granted::before {
  border-color: rgba(74, 222, 128, 0.46);
  box-shadow:
    inset 0 0 38px rgba(74, 222, 128, 0.12),
    0 0 38px rgba(74, 222, 128, 0.12);
}

.analysys-vault-core.is-denied {
  border-color: rgba(251, 113, 133, 0.42);
  animation: analysysAccessDenied 360ms ease-in-out 1;
}

.analysys-vault-core.is-denied::after {
  border-color: rgba(251, 113, 133, 0.58);
}

.analysys-entry-telemetry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.analysys-entry-telemetry span {
  position: relative;
  display: grid;
  gap: 5px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.15);
  border-radius: 10px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(8, 29, 50, 0.82), rgba(2, 10, 20, 0.86)),
    rgba(3, 14, 28, 0.72);
}

.analysys-entry-telemetry span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: var(--entry-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, rgba(53, 215, 255, 0.22), rgba(53, 215, 255, 0.92));
  content: "";
  transition: width 220ms ease;
}

.analysys-entry-telemetry span.is-ready {
  border-color: rgba(74, 222, 128, 0.32);
}

.analysys-entry-telemetry span.is-ready::after {
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.24), rgba(74, 222, 128, 0.94));
}

.analysys-entry-telemetry span.is-denied {
  border-color: rgba(251, 113, 133, 0.34);
}

.analysys-entry-telemetry span.is-denied::after {
  background: linear-gradient(90deg, rgba(251, 113, 133, 0.22), rgba(251, 113, 133, 0.92));
}

.analysys-entry-telemetry small {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-entry-telemetry strong {
  overflow: hidden;
  color: #f2fbff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes analysysOrbit {
  to {
    transform: rotate(360deg);
  }
}

.analysys-gate-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.3fr);
  gap: 18px;
  align-items: stretch;
}

.analysys-gate-shell h3,
.analysys-header h3 {
  margin: 0 0 8px;
  color: #f5fcff;
  font-size: 24px;
}

.analysys-gate-shell p,
.analysys-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.analysys-gate-status {
  display: inline-grid;
  width: fit-content;
  margin: 18px 0 8px;
  border: 1px solid rgba(255, 178, 71, 0.34);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--orange);
  background: rgba(255, 178, 71, 0.11);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.analysys-gate-status.is-ready {
  border-color: rgba(66, 246, 157, 0.32);
  color: var(--green);
  background: rgba(66, 246, 157, 0.1);
}

.analysys-auth-console {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.24);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 44%, rgba(53, 215, 255, 0.16), transparent 10rem),
    radial-gradient(circle at 50% 100%, rgba(251, 191, 36, 0.12), transparent 14rem),
    linear-gradient(145deg, rgba(2, 12, 24, 0.96), rgba(0, 5, 13, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 38px rgba(53, 215, 255, 0.1);
}

.analysys-auth-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.16), transparent),
    linear-gradient(rgba(53, 215, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 16px;
  opacity: 0.56;
  transform: translateX(calc(var(--gate-progress, 0%) - 100%));
  transition: transform 220ms ease;
}

.analysys-auth-head,
.analysys-auth-field,
.analysys-auth-message,
.analysys-auth-submit {
  position: relative;
  z-index: 1;
}

.analysys-auth-head {
  display: grid;
  gap: 5px;
}

.analysys-auth-head span,
.analysys-auth-field span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.analysys-auth-head strong {
  color: #f7fcff;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.analysys-auth-head small,
.analysys-auth-message {
  color: #9fb7cc;
  line-height: 1.45;
}

.analysys-auth-field {
  display: grid;
  gap: 7px;
}

.analysys-auth-field input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(53, 215, 255, 0.22);
  border-radius: 9px;
  padding: 0 12px;
  outline: none;
  background: rgba(0, 6, 14, 0.72);
  color: #f2fbff;
  font: inherit;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.3);
}

.analysys-auth-field input:focus {
  border-color: rgba(53, 215, 255, 0.78);
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(53, 215, 255, 0.18);
}

.analysys-password-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.analysys-password-row button,
.analysys-auth-submit {
  border: 1px solid rgba(53, 215, 255, 0.3);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(10, 54, 86, 0.92), rgba(2, 18, 32, 0.92)),
    rgba(5, 22, 42, 0.9);
  color: #eafaff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-password-row button {
  min-width: 80px;
  padding: 0 12px;
  font-size: 10px;
}

.analysys-input-tracker {
  position: relative;
  z-index: 1;
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 6, 14, 0.86);
}

.analysys-input-tracker span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(53, 215, 255, 0.2), rgba(53, 215, 255, 0.95), rgba(251, 191, 36, 0.82)),
    var(--cyan);
  box-shadow: 0 0 18px rgba(53, 215, 255, 0.46);
  transition: width 180ms ease;
}

.analysys-auth-sequence {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.analysys-auth-sequence span {
  position: relative;
  display: grid;
  gap: 4px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 10px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(7, 24, 42, 0.82), rgba(0, 6, 14, 0.86)),
    rgba(3, 14, 28, 0.7);
}

.analysys-auth-sequence span::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.18), transparent);
  transform: translateX(-100%);
}

.analysys-auth-sequence span.is-active {
  border-color: rgba(53, 215, 255, 0.46);
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.08);
}

.analysys-auth-sequence span.is-active::before {
  opacity: 1;
  animation: analysysSequenceSweep 1.8s ease-in-out infinite;
}

.analysys-auth-sequence span.is-granted {
  border-color: rgba(66, 246, 157, 0.52);
  background:
    radial-gradient(circle at 90% 0%, rgba(66, 246, 157, 0.16), transparent 5rem),
    linear-gradient(145deg, rgba(4, 34, 26, 0.86), rgba(0, 9, 14, 0.88));
}

.analysys-auth-sequence span.is-denied {
  border-color: rgba(255, 63, 105, 0.52);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 63, 105, 0.18), transparent 5rem),
    linear-gradient(145deg, rgba(35, 6, 16, 0.86), rgba(0, 8, 15, 0.88));
}

.analysys-auth-sequence small,
.analysys-auth-sequence i {
  color: #809ab1;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-auth-sequence strong {
  color: #f1fbff;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.analysys-auth-sequence span.is-active i {
  color: var(--cyan);
}

.analysys-auth-sequence span.is-granted i {
  color: var(--green);
}

.analysys-auth-sequence span.is-denied i {
  color: #ff6d85;
}

.analysys-vault-safe {
  --safe-glow: rgba(53, 215, 255, 0.24);
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 54%, var(--safe-glow), transparent 9rem),
    linear-gradient(180deg, rgba(7, 20, 34, 0.82), rgba(0, 4, 10, 0.92));
}

.analysys-safe-beam {
  position: absolute;
  left: 7%;
  right: 7%;
  z-index: 1;
  height: 1px;
  opacity: 0.72;
  background: linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.9), transparent);
  box-shadow: 0 0 14px rgba(53, 215, 255, 0.54);
  animation: analysysBeamScan 2.6s ease-in-out infinite;
}

.analysys-safe-beam.is-top {
  top: 18%;
}

.analysys-safe-beam.is-bottom {
  bottom: 18%;
  animation-delay: 1.2s;
}

.analysys-vault-safe::before,
.analysys-vault-safe::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.analysys-vault-safe::before {
  width: 72%;
  aspect-ratio: 1;
  border: 1px dashed rgba(53, 215, 255, 0.23);
  transform: rotate(calc(var(--gate-progress, 0%) * 1.8));
  transition: transform 260ms ease;
}

.analysys-vault-safe::after {
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 34px rgba(53, 215, 255, 0.12);
}

.analysys-safe-body {
  position: relative;
  width: min(220px, 80%);
  aspect-ratio: 1.16;
  border: 1px solid rgba(53, 215, 255, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(22, 46, 66, 0.96), rgba(2, 8, 16, 0.98)),
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.16), transparent 6rem);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.16),
    inset 0 -24px 38px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(53, 215, 255, 0.14);
}

.analysys-safe-door {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(53, 215, 255, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(53, 215, 255, 0.16), transparent 5rem),
    rgba(2, 9, 18, 0.64);
}

.analysys-safe-bolts {
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(53, 215, 255, 0.2);
  border-radius: 12px;
}

.analysys-safe-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(53, 215, 255, 0.54);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(calc(var(--gate-progress, 0%) * 2.1));
  transition: transform 240ms ease;
  box-shadow:
    inset 0 0 24px rgba(53, 215, 255, 0.16),
    0 0 24px rgba(53, 215, 255, 0.18);
}

.analysys-safe-handle::before,
.analysys-safe-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(216, 246, 255, 0.86), transparent);
  transform: translate(-50%, -50%);
}

.analysys-safe-handle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.analysys-safe-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(251, 191, 36, 0.56);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(251, 191, 36, 0.18), transparent 68%),
    rgba(0, 5, 11, 0.92);
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 0 18px rgba(251, 191, 36, 0.16),
    0 0 18px rgba(251, 191, 36, 0.18);
}

.analysys-safe-lock i {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(53, 215, 255, 0.42);
  border-radius: 999px;
  animation: analysysLockScan 2s linear infinite;
}

.analysys-safe-lock b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 20px;
  border-radius: 999px;
  background: var(--cyan);
  transform: translate(-50%, -22%);
  transform-origin: 50% 72%;
  box-shadow: 0 0 12px rgba(53, 215, 255, 0.72);
}

.analysys-safe-signal {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: grid;
  gap: 4px;
  min-width: 108px;
  color: #8fa8bf;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}

.analysys-safe-signal span {
  justify-self: end;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  animation: analysysSafeSignal 1.4s ease-in-out infinite;
}

.analysys-auth-console.is-verifying .analysys-safe-lock {
  animation: analysysLockVerify 720ms ease-in-out infinite;
}

.analysys-auth-console.is-granted .analysys-vault-safe {
  --safe-glow: rgba(66, 246, 157, 0.3);
}

.analysys-auth-console.is-granted .analysys-safe-handle {
  animation: analysysLockGranted 720ms cubic-bezier(0.2, 0.7, 0.1, 1) forwards;
}

.analysys-auth-console.is-granted .analysys-safe-door {
  animation: analysysDoorGranted 720ms ease forwards;
}

.analysys-auth-console.is-denied .analysys-vault-safe {
  --safe-glow: rgba(255, 63, 105, 0.22);
  animation: analysysAccessDenied 420ms ease;
}

.analysys-auth-console.is-denied .analysys-safe-lock {
  border-color: rgba(255, 63, 105, 0.76);
  box-shadow:
    inset 0 0 18px rgba(255, 63, 105, 0.18),
    0 0 24px rgba(255, 63, 105, 0.26);
}

.analysys-auth-console.is-denied .analysys-auth-message {
  color: #ff7b91;
}

.analysys-auth-console.is-granted .analysys-auth-message {
  color: var(--green);
}

.analysys-auth-submit {
  min-height: 44px;
  text-align: center;
}

.analysys-auth-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.analysys-chamber-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
}

.analysys-chamber-rail article {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 12px;
  padding: 14px;
  background:
    radial-gradient(circle at 85% 8%, rgba(53, 215, 255, 0.14), transparent 7rem),
    linear-gradient(145deg, rgba(7, 25, 44, 0.88), rgba(1, 8, 17, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 22px rgba(53, 215, 255, 0.06);
}

.analysys-chamber-rail article::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(53, 215, 255, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 215, 255, 0.14), transparent 65%);
  box-shadow: 0 0 18px rgba(53, 215, 255, 0.12);
}

.analysys-chamber-rail span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.analysys-chamber-rail strong {
  color: #f5fcff;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.analysys-chamber-rail small {
  max-width: calc(100% - 46px);
  color: #8da8bf;
  line-height: 1.38;
}

.analysys-tabbar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 6px;
  margin: 0 0 12px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 14px;
  padding: 7px;
  background:
    linear-gradient(180deg, rgba(7, 24, 41, 0.94), rgba(2, 10, 20, 0.94)),
    radial-gradient(circle at 18% 0%, rgba(53, 215, 255, 0.12), transparent 13rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.analysys-tabbar button {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 58px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 8px 9px 10px;
  background:
    linear-gradient(145deg, rgba(6, 20, 35, 0.82), rgba(1, 8, 17, 0.86)),
    rgba(2, 10, 21, 0.74);
  color: #d9f5ff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.analysys-tabbar button::before {
  content: "";
  position: absolute;
  inset: auto 9px 7px 9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.78), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.analysys-tabbar button:hover,
.analysys-tabbar button.is-active {
  border-color: rgba(53, 215, 255, 0.38);
  background:
    radial-gradient(circle at 88% 0%, rgba(53, 215, 255, 0.16), transparent 7rem),
    linear-gradient(145deg, rgba(8, 34, 56, 0.9), rgba(1, 8, 17, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px rgba(0, 208, 255, 0.13);
  transform: translateY(-1px);
}

.analysys-tabbar button.is-active::before {
  opacity: 1;
  transform: translateY(0);
}

.analysys-tabbar span,
.analysys-tabbar strong,
.analysys-tabbar small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-tabbar span {
  color: #f3fcff;
  font-size: 11px;
  font-weight: 900;
}

.analysys-tabbar strong {
  color: var(--cyan);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-tabbar small {
  color: #8ca6ba;
  font-size: 9px;
}

.analysys-tab-panel {
  display: none !important;
}

.analysys-tab-panel.is-active {
  animation: analysysPanelReveal 240ms ease both;
}

.analysys-command-matrix.analysys-tab-panel.is-active,
.analysys-vault-focus.analysys-tab-panel.is-active,
.analysys-coordination-board.analysys-tab-panel.is-active,
.analysys-workbench.analysys-tab-panel.is-active,
.analysys-security-board.analysys-tab-panel.is-active,
.analysys-format-row.analysys-tab-panel.is-active,
.analysys-bridge-grid.analysys-tab-panel.is-active,
.analysys-report-panel.analysys-tab-panel.is-active,
.analysys-vault-drawer.analysys-tab-panel.is-active {
  display: grid !important;
}

.analysys-workbench.is-evidence,
.analysys-workbench.is-tools,
.analysys-workbench.is-cameras,
.analysys-workbench.is-security,
.analysys-workbench.is-documents {
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.42fr) minmax(260px, 0.78fr);
  grid-template-areas:
    "left center right"
    "comment comment comment";
}

.analysys-workbench.is-evidence .analysys-readiness-panel,
.analysys-workbench.is-evidence .analysys-intake-panel {
  display: none;
}

.analysys-workbench.is-evidence .analysys-side-panel-left,
.analysys-workbench.is-evidence .analysys-player-shell,
.analysys-workbench.is-evidence .analysys-control-stack,
.analysys-workbench.is-tools .analysys-player-shell,
.analysys-workbench.is-cameras .analysys-player-shell,
.analysys-workbench.is-documents .analysys-control-stack,
.analysys-workbench.is-security .analysys-player-shell {
  display: grid;
}
.analysys-workbench.is-tools .analysys-password-generator,
.analysys-workbench.is-tools .analysys-camera-grid,
.analysys-workbench.is-cameras .analysys-password-generator,
.analysys-workbench.is-cameras .analysys-tool-grid,
.analysys-workbench.is-cameras .analysys-custody-log,
.analysys-workbench.is-security .analysys-tool-grid,
.analysys-workbench.is-security .analysys-camera-grid,
.analysys-workbench.is-security .analysys-custody-log {
  display: none;
}

.analysys-workbench.is-documents .analysys-player,
.analysys-workbench.is-documents .analysys-player-toolbar,
.analysys-workbench.is-documents .analysys-file-strip,
.analysys-workbench.is-documents .analysys-analysis-strip {
  display: none;
}

.analysys-workbench.is-documents .analysys-player-shell {
  display: grid;
}

.analysys-documents-head,
.analysys-evidence-head {
  display: none;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  border-bottom: 1px solid rgba(53, 215, 255, 0.12);
  padding: 14px;
  background:
    radial-gradient(circle at 90% 12%, rgba(53, 215, 255, 0.12), transparent 12rem),
    linear-gradient(145deg, rgba(5, 20, 36, 0.88), rgba(1, 8, 18, 0.9));
}

.analysys-workbench.is-documents .analysys-documents-head {
  display: grid;
}

.analysys-workbench.is-evidence .analysys-evidence-head {
  display: grid;
}

.analysys-documents-head h4,
.analysys-documents-head p,
.analysys-documents-head small,
.analysys-evidence-head h4,
.analysys-evidence-head p,
.analysys-evidence-head small {
  margin: 0;
}

.analysys-documents-head h4,
.analysys-evidence-head h4 {
  color: #f4fcff;
  font-size: 17px;
}

.analysys-documents-head small,
.analysys-evidence-head small {
  color: #8fa8bf;
  line-height: 1.45;
}

.analysys-documents-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.analysys-documents-metrics span {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 9px;
  padding: 9px;
  background: rgba(1, 8, 18, 0.66);
}

.analysys-documents-metrics strong {
  overflow: hidden;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-documents-metrics small {
  overflow: hidden;
  color: #8fa8bf;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes analysysPanelReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.996);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes analysysSequenceSweep {
  0% {
    transform: translateX(-100%);
  }
  52%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes analysysBeamScan {
  0%,
  100% {
    transform: translateY(-16px) scaleX(0.72);
    opacity: 0.28;
  }
  50% {
    transform: translateY(16px) scaleX(1);
    opacity: 0.9;
  }
}

.analysys-password-generator {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 14px;
  padding: 14px;
  background:
    radial-gradient(circle at 96% 12%, rgba(251, 191, 36, 0.12), transparent 9rem),
    linear-gradient(145deg, rgba(24, 19, 12, 0.72), rgba(3, 12, 24, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 24px rgba(251, 191, 36, 0.06);
}

.analysys-password-generator h4 {
  margin: 0;
  color: #f7fcff;
  font-size: 20px;
}

.analysys-password-generator p {
  margin: 0;
  color: #9eb4c8;
  line-height: 1.48;
}

.analysys-password-generator-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.analysys-password-generator-status small {
  color: #8ca5bb;
  font-size: 11px;
}

.analysys-password-generator button {
  min-height: 40px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(120, 82, 19, 0.42), rgba(2, 12, 24, 0.88));
  color: #fff8e8;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-password-generator button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

@keyframes analysysLockScan {
  to {
    transform: rotate(360deg);
  }
}

@keyframes analysysSafeSignal {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes analysysLockVerify {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes analysysLockGranted {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(132deg);
  }
}

@keyframes analysysDoorGranted {
  0% {
    transform: perspective(600px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(600px) rotateY(-16deg);
    opacity: 0.78;
  }
}

@keyframes analysysAccessDenied {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-8px);
  }
  40% {
    transform: translateX(7px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(4px);
  }
}

.analysys-gate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: stretch;
}

.analysys-vault-cover .analysys-gate-grid {
  grid-template-columns: 1fr;
}

.analysys-gate-card,
.analysys-tool,
.analysys-player-toolbar button,
.analysys-import-button {
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 27, 49, 0.92), rgba(2, 10, 20, 0.86)),
    rgba(3, 12, 24, 0.9);
  color: #eafaff;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.analysys-gate-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 14px;
}

.analysys-gate-card:hover,
.analysys-player-toolbar button:hover:not(:disabled),
.analysys-import-button:hover {
  border-color: rgba(53, 215, 255, 0.58);
  box-shadow: 0 0 24px rgba(53, 215, 255, 0.12);
}

.analysys-gate-card:disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.analysys-gate-card:disabled:hover {
  border-color: rgba(53, 215, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.analysys-gate-card span,
.analysys-safe-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-gate-card strong {
  color: #f2fbff;
  font-size: 13px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.analysys-gate-card small,
.analysys-safe-card small {
  color: #8fa8bf;
  line-height: 1.4;
}

.analysys-gate-card.is-owner {
  border-color: rgba(255, 178, 71, 0.28);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 178, 71, 0.12), transparent 8rem),
    linear-gradient(145deg, rgba(21, 28, 41, 0.94), rgba(5, 12, 23, 0.9));
}

.analysys-vault-lanes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.analysys-vault-lanes article {
  display: grid;
  gap: 6px;
  min-height: 98px;
  padding: 12px;
}

.analysys-vault-lanes span,
.analysys-command-matrix .section-kicker,
.analysys-bridge-grid span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-command-matrix {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 12px 0;
}

.analysys-command-matrix > div {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 12px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(3, 17, 31, 0.88), rgba(1, 8, 18, 0.82)),
    radial-gradient(circle at 100% 0%, rgba(53, 215, 255, 0.11), transparent 12rem);
}

.analysys-command-matrix > div:last-child {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.analysys-command-matrix > div:last-child .section-kicker {
  grid-column: 1 / -1;
}

.analysys-command-matrix span {
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 10px;
}

.analysys-command-matrix i {
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.analysys-vault-focus {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin: 12px 0;
  border: 1px solid rgba(53, 215, 255, 0.13);
  border-radius: 12px;
  padding: 8px;
  background:
    radial-gradient(circle at 8% 0%, rgba(53, 215, 255, 0.1), transparent 11rem),
    linear-gradient(145deg, rgba(3, 17, 31, 0.88), rgba(1, 8, 18, 0.84));
}

.analysys-vault-focus button {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 64px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 9px;
  padding: 10px;
  background: rgba(2, 11, 22, 0.68);
  color: #e8f8ff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.analysys-vault-focus button:hover,
.analysys-vault-focus button.is-active {
  border-color: rgba(53, 215, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 20px rgba(53, 215, 255, 0.12);
  transform: translateY(-1px);
}

.analysys-vault-focus span,
.analysys-vault-focus strong,
.analysys-vault-focus small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-vault-focus span {
  color: #f4fcff;
  font-size: 11px;
  font-weight: 900;
}

.analysys-vault-focus strong {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-vault-focus small {
  color: #8fa8bf;
  font-size: 10px;
}

.analysys-coordination-board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 12px 0;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 12px;
  padding: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(53, 215, 255, 0.12), transparent 14rem),
    linear-gradient(145deg, rgba(3, 17, 31, 0.9), rgba(1, 8, 18, 0.82));
}

.analysys-coordination-head,
.analysys-coordination-grid {
  display: grid;
  gap: 12px;
}

.analysys-coordination-head {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: start;
}

.analysys-coordination-head h4,
.analysys-coordination-grid h5 {
  margin: 0;
  color: #f5fcff;
}

.analysys-coordination-head p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.analysys-coordination-mode {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(92, 214, 255, 0.32);
  border-radius: 999px;
  color: #68e7ff;
  background: rgba(20, 132, 170, 0.14);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.analysys-protocol-reference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 191, 74, 0.18);
  border-radius: 10px;
  padding: 12px;
  background:
    radial-gradient(circle at 94% 12%, rgba(255, 191, 74, 0.16), transparent 9rem),
    rgba(4, 13, 23, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.analysys-protocol-reference h5,
.analysys-protocol-reference p {
  margin: 0;
}

.analysys-protocol-reference h5 {
  color: #f7fcff;
}

.analysys-protocol-reference small,
.analysys-protocol-reference span {
  color: #9fb5c8;
}

.analysys-protocol-reference > div {
  display: grid;
  gap: 6px;
}

.analysys-protocol-reference > div:last-child {
  justify-items: end;
  text-align: right;
}

.analysys-protocol-reference span {
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.analysys-coordination-metrics {
  display: grid;
  gap: 8px;
}

.analysys-coordination-focus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 12px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(5, 19, 34, 0.82), rgba(1, 8, 18, 0.82)),
    radial-gradient(circle at 10% 0%, rgba(53, 215, 255, 0.09), transparent 10rem);
}

.analysys-coordination-focus button {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 66px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 9px;
  padding: 10px;
  background: rgba(2, 11, 22, 0.7);
  color: #e8f8ff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.analysys-coordination-focus button:hover,
.analysys-coordination-focus button.is-active {
  border-color: rgba(53, 215, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 20px rgba(53, 215, 255, 0.12);
  transform: translateY(-1px);
}

.analysys-coordination-focus span,
.analysys-coordination-focus strong,
.analysys-coordination-focus small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-coordination-focus span {
  color: #f4fcff;
  font-size: 11px;
  font-weight: 900;
}

.analysys-coordination-focus strong {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-coordination-focus small {
  color: #8fa8bf;
  font-size: 10px;
}

.analysys-coordination-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 12px;
  padding: 12px;
  background:
    radial-gradient(circle at 96% 0%, rgba(53, 215, 255, 0.14), transparent 10rem),
    linear-gradient(145deg, rgba(4, 16, 30, 0.86), rgba(1, 8, 18, 0.9));
}

.analysys-coordination-summary h5,
.analysys-coordination-summary p,
.analysys-coordination-summary small {
  margin: 0;
}

.analysys-coordination-summary h5 {
  color: #f4fcff;
  font-size: 16px;
}

.analysys-coordination-summary p,
.analysys-coordination-summary small {
  color: #8fa8bf;
  line-height: 1.45;
}

.analysys-coordination-summary > div:first-child {
  display: grid;
  gap: 5px;
}

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

.analysys-coordination-summary-metrics span {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 9px;
  padding: 9px;
  background: rgba(1, 8, 18, 0.62);
}

.analysys-coordination-summary-metrics strong {
  overflow: hidden;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-coordination-summary-metrics small {
  overflow: hidden;
  color: #8fa8bf;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.analysys-coordination-metrics span,
.analysys-coordination-grid article {
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 9px;
  background: rgba(2, 11, 22, 0.56);
}

.analysys-coordination-metrics span {
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 10px;
}

.analysys-coordination-metrics strong {
  color: var(--cyan);
  font-size: 20px;
}

.analysys-coordination-metrics small,
.analysys-coordination-strip,
.analysys-coordination-row small {
  color: #8fa8bf;
}

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

.analysys-coordination-detail {
  grid-template-columns: minmax(0, 1fr);
}

.analysys-coordination-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

.analysys-coordination-detail article {
  min-height: 260px;
  animation: analysysPanelReveal 220ms ease both;
}

.analysys-coordination-grid article > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-coordination-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.76fr) minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(53, 215, 255, 0.09);
  padding-top: 8px;
}

.analysys-coordination-row strong {
  color: #eaf8ff;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.analysys-coordination-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(53, 215, 255, 0.1);
  padding-top: 10px;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.analysys-security-board {
  position: relative;
  z-index: 1;
  gap: 12px;
  margin: 12px 0;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 12px;
  padding: 14px;
  background:
    radial-gradient(circle at 88% 0%, rgba(53, 215, 255, 0.12), transparent 13rem),
    linear-gradient(145deg, rgba(3, 17, 31, 0.9), rgba(1, 8, 18, 0.84));
}

.analysys-security-focus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 12px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(5, 19, 34, 0.82), rgba(1, 8, 18, 0.82)),
    radial-gradient(circle at 8% 0%, rgba(53, 215, 255, 0.09), transparent 10rem);
}

.analysys-security-focus button {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 64px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 9px;
  padding: 10px;
  background: rgba(2, 11, 22, 0.7);
  color: #e8f8ff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.analysys-security-focus button:hover,
.analysys-security-focus button.is-active {
  border-color: rgba(53, 215, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 20px rgba(53, 215, 255, 0.12);
  transform: translateY(-1px);
}

.analysys-security-focus span,
.analysys-security-focus strong,
.analysys-security-focus small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-security-focus span {
  color: #f4fcff;
  font-size: 11px;
  font-weight: 900;
}

.analysys-security-focus strong {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-security-focus small {
  color: #8fa8bf;
  font-size: 10px;
}

.analysys-security-gate-grid {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 12px;
  background: rgba(2, 11, 22, 0.58);
}

.analysys-security-gate-grid p {
  margin: 0;
  color: #8ea6ba;
}

.analysys-workbench {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.42fr) minmax(260px, 0.78fr);
  grid-template-areas:
    "left center right"
    "comment comment comment";
  gap: 12px;
}

.analysys-player-shell,
.analysys-side-panel,
.analysys-control-stack,
.analysys-commentary-line,
.analysys-safe-card {
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 12, 24, 0.72);
}

.analysys-side-panel {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
}

.analysys-side-panel-left {
  grid-area: left;
  min-width: 0;
}

.analysys-network-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  min-height: 100%;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 12%, rgba(53, 215, 255, 0.14), transparent 22rem),
    radial-gradient(circle at 84% 84%, rgba(72, 255, 182, 0.1), transparent 20rem),
    linear-gradient(180deg, rgba(8, 21, 38, 0.96), rgba(2, 8, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(90, 195, 255, 0.05),
    inset 0 0 48px rgba(22, 119, 173, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.28);
}

.analysys-network-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(53, 215, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 215, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
  pointer-events: none;
}

.analysys-network-head,
.analysys-network-legend,
.analysys-network-stage {
  position: relative;
  z-index: 1;
}

.analysys-network-head {
  display: grid;
  gap: 10px;
}

.analysys-network-head .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
}

.analysys-network-head .section-kicker::after {
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(83, 223, 255, 0.68), transparent);
}

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

.analysys-network-meta span {
  display: grid;
  gap: 2px;
  justify-items: center;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 8px;
  padding: 8px 8px;
  background: linear-gradient(180deg, rgba(6, 22, 38, 0.92), rgba(3, 12, 24, 0.82));
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.04);
}

.analysys-network-meta strong {
  color: #f5fbff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.analysys-network-meta small {
  color: #67dfff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-network-stage {
  position: relative;
  min-height: 300px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at center, rgba(23, 78, 122, 0.3), transparent 38%),
    rgba(2, 9, 20, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(53, 215, 255, 0.04),
    inset 0 0 32px rgba(53, 215, 255, 0.05);
}

.analysys-network-stage::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(53, 215, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.analysys-network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.analysys-network-link {
  opacity: 0.8;
}

.analysys-network-link line {
  fill: none;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 5 5;
  animation: analysysNetworkFlow 5.5s linear infinite;
}

.analysys-network-link circle {
  animation: analysysNetworkPulse 2.6s ease-in-out infinite;
}

.analysys-network-link.is-online line,
.analysys-network-link.is-online circle {
  stroke: rgba(92, 241, 182, 0.9);
  fill: rgba(92, 241, 182, 0.9);
}

.analysys-network-link.is-standby line,
.analysys-network-link.is-standby circle {
  stroke: rgba(94, 209, 255, 0.9);
  fill: rgba(94, 209, 255, 0.9);
}

.analysys-network-link.is-watch line,
.analysys-network-link.is-watch circle {
  stroke: rgba(251, 191, 36, 0.88);
  fill: rgba(251, 191, 36, 0.88);
}

.analysys-network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: clamp(108px, 42%, 146px);
  height: clamp(108px, 42%, 146px);
  border: 1px solid rgba(53, 215, 255, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 45%, rgba(113, 228, 255, 0.28), rgba(8, 29, 48, 0.94) 62%),
    rgba(3, 12, 24, 0.92);
  box-shadow:
    inset 0 0 28px rgba(53, 215, 255, 0.18),
    0 0 34px rgba(53, 215, 255, 0.22);
  animation: analysysCoreBreath 3.8s ease-in-out infinite;
}

.analysys-network-core::before,
.analysys-network-core::after {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 999px;
  content: "";
  animation: analysysCoreRing 3.6s ease-out infinite;
}

.analysys-network-core::after {
  inset: -22px;
  animation-delay: 1.2s;
}

.analysys-network-core strong {
  color: #f4fbff;
  font-size: clamp(30px, 10vw, 46px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.analysys-network-core small {
  color: #6de3ff;
  font-size: clamp(10px, 3vw, 13px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.analysys-network-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 64px;
  max-width: 104px;
}

.analysys-network-node i {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 0 0 5px rgba(53, 215, 255, 0.08),
    0 0 18px currentColor;
  animation: analysysNodeBlink 2.8s ease-in-out infinite;
}

.analysys-network-node span {
  max-width: 100%;
  overflow: hidden;
  padding: 5px 8px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 999px;
  background: rgba(4, 16, 30, 0.9);
  color: #dff8ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.analysys-network-node.is-online {
  color: #5cf1b6;
}

.analysys-network-node.is-standby {
  color: #5ed1ff;
}

.analysys-network-node.is-watch {
  color: #fbbf24;
}

.analysys-network-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.analysys-network-legend small {
  overflow: hidden;
  color: #89a8be;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.analysys-network-legend small:first-child {
  color: #67dfff;
}

.analysys-server-monitor {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 241, 182, 0.08), transparent 10rem),
    linear-gradient(180deg, rgba(7, 21, 36, 0.94), rgba(2, 8, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(90, 195, 255, 0.04),
    inset 0 0 36px rgba(53, 215, 255, 0.06);
}

.analysys-server-monitor::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.06), transparent);
  transform: translateX(-100%);
  animation: analysysMonitorSweep 6s linear infinite;
  pointer-events: none;
}

.analysys-server-monitor-head,
.analysys-server-monitor-grid,
.analysys-server-monitor-ticker {
  position: relative;
  z-index: 1;
}

.analysys-server-monitor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.analysys-server-monitor-head h4,
.analysys-server-monitor-head p {
  margin: 0;
}

.analysys-server-monitor-head h4 {
  color: #f5fbff;
  font-size: 15px;
}

.analysys-server-monitor-clock {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.analysys-server-monitor-clock strong {
  color: #f7fcff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
}

.analysys-server-monitor-clock small {
  color: #6de3ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-server-monitor-grid {
  display: grid;
  gap: 8px;
}

.analysys-service-signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.analysys-service-signal {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "dot label"
    "dot value"
    "dot detail";
  gap: 2px 8px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
  background:
    radial-gradient(circle at 0% 50%, rgba(53, 215, 255, 0.08), transparent 7rem),
    rgba(2, 12, 24, 0.8);
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.04);
}

.analysys-service-signal i {
  grid-area: dot;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #5ed1ff;
  box-shadow:
    0 0 0 5px rgba(94, 209, 255, 0.08),
    0 0 18px rgba(94, 209, 255, 0.22);
  animation: analysysServiceBlink 2.6s ease-in-out infinite;
}

.analysys-service-signal strong,
.analysys-service-signal small,
.analysys-service-signal em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-service-signal strong {
  grid-area: label;
  color: #effbff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-service-signal small {
  grid-area: value;
  color: #69e1ff;
  font-size: 11px;
  font-weight: 800;
}

.analysys-service-signal em {
  grid-area: detail;
  color: #86a4ba;
  font-size: 10px;
  font-style: normal;
  white-space: normal;
  line-height: 1.2;
}

.analysys-service-signal.is-online i {
  background: #5cf1b6;
  box-shadow:
    0 0 0 5px rgba(92, 241, 182, 0.08),
    0 0 18px rgba(92, 241, 182, 0.22);
}

.analysys-service-signal.is-watch i {
  background: #fbbf24;
  box-shadow:
    0 0 0 5px rgba(251, 191, 36, 0.08),
    0 0 18px rgba(251, 191, 36, 0.18);
}

.analysys-server-monitor-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
  background: rgba(2, 12, 24, 0.8);
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.04);
}

.analysys-server-monitor-card-head,
.analysys-server-monitor-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.analysys-server-monitor-card-head span {
  overflow: hidden;
  color: #eefbff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.analysys-server-monitor-card-head strong {
  flex: none;
  color: #6de3ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.analysys-server-monitor-card.is-online .analysys-server-monitor-card-head strong {
  color: #5cf1b6;
}

.analysys-server-monitor-card.is-watch .analysys-server-monitor-card-head strong {
  color: #fbbf24;
}

.analysys-server-monitor-signal {
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(10, 28, 42, 0.9);
}

.analysys-server-monitor-signal i {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 209, 255, 0.58), rgba(92, 241, 182, 0.94));
  box-shadow: 0 0 18px rgba(92, 241, 182, 0.22);
  animation: analysysSignalBreath 2.4s ease-in-out infinite;
}

.analysys-server-monitor-card.is-watch .analysys-server-monitor-signal i {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.52), rgba(251, 191, 36, 0.94));
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.18);
}

.analysys-server-monitor-meta small {
  overflow: hidden;
  color: #89a8be;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-server-monitor-meta small:last-child {
  flex: none;
  color: #d7f8ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.analysys-server-monitor-ticker {
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 999px;
  padding: 8px 0;
  background: rgba(2, 11, 21, 0.82);
}

.analysys-server-monitor-ticker span {
  display: inline-block;
  padding-left: 100%;
  color: #6de3ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: analysysTickerMove 18s linear infinite;
}

.analysys-side-verifier {
  display: none;
}

.analysys-player-shell {
  grid-area: center;
  overflow: hidden;
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto auto;
}

.analysys-player-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid rgba(53, 215, 255, 0.12);
  padding: 12px 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.08), transparent 10rem),
    rgba(1, 8, 18, 0.52);
}

.analysys-player-toolbar-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  flex: 1 1 320px;
  align-content: start;
  padding-top: 4px;
}

.analysys-player-toolbar-copy span {
  color: #f2fbff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.15;
}

.analysys-player-toolbar-copy small {
  color: #8ea6ba;
  font-size: 11px;
  white-space: normal;
  line-height: 1.35;
  max-width: 48ch;
}

.analysys-player-actions {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  gap: 8px;
  min-width: 0;
  align-items: flex-start;
}

.analysys-player-actions-primary {
  justify-content: flex-start;
  margin-left: auto;
}

.analysys-player-actions-secondary {
  justify-content: flex-end;
}

.analysys-player-toolbar button,
.analysys-import-button {
  display: inline-grid;
  min-height: 34px;
  min-width: 128px;
  place-items: center;
  padding: 8px 12px;
  color: #dff8ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-player-toolbar button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.analysys-import-button input {
  display: none;
}

.analysys-player {
  position: relative;
  display: grid;
  min-height: clamp(420px, 48vw, 620px);
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(53, 215, 255, 0.08), transparent 16rem),
    linear-gradient(135deg, rgba(0, 6, 14, 0.95), rgba(3, 16, 30, 0.9));
}

.analysys-player video,
.analysys-player img,
.analysys-player iframe,
.analysys-player pre {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}

.analysys-player video,
.analysys-player img {
  object-fit: contain;
  background: #020712;
  transform-origin: center center;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.analysys-player pre {
  overflow: auto;
  margin: 0;
  padding: 18px;
  color: #d9f8ff;
  white-space: pre-wrap;
}

.analysys-player-hud {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  pointer-events: none;
}

.analysys-player-hud span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 27, 44, 0.88), rgba(2, 9, 20, 0.92)),
    rgba(2, 9, 20, 0.86);
  box-shadow:
    inset 0 0 18px rgba(53, 215, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.26);
  padding: 9px 10px;
}

.analysys-player-hud small {
  color: #64dfff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.analysys-player-hud strong {
  overflow: hidden;
  color: #f6fcff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-player-hud.is-empty {
  opacity: 0.72;
}

.analysys-player-hud.is-loaded span {
  border-color: rgba(53, 215, 255, 0.35);
  box-shadow:
    inset 0 0 20px rgba(53, 215, 255, 0.08),
    0 0 22px rgba(53, 215, 255, 0.1);
}

.analysys-player-reticle {
  position: absolute;
  inset: 18px;
  z-index: 3;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  opacity: 0.42;
  pointer-events: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.analysys-player-reticle::before,
.analysys-player-reticle::after {
  position: absolute;
  content: "";
  background: rgba(53, 215, 255, 0.22);
}

.analysys-player-reticle::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.analysys-player-reticle::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.analysys-player-reticle span {
  position: absolute;
  width: 72px;
  height: 72px;
  border-color: rgba(53, 215, 255, 0.34);
  border-style: solid;
  filter: drop-shadow(0 0 10px rgba(53, 215, 255, 0.2));
}

.analysys-player-reticle span:first-child {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.analysys-player-reticle span:last-child {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
}

.analysys-player-reticle.is-locked {
  border-color: rgba(251, 191, 36, 0.46);
  box-shadow:
    inset 0 0 26px rgba(251, 191, 36, 0.08),
    0 0 28px rgba(251, 191, 36, 0.14);
  opacity: 0.84;
  animation: analysysReticleLock 1.6s ease-in-out infinite;
}

.analysys-player-reticle.is-locked::before,
.analysys-player-reticle.is-locked::after {
  background: rgba(251, 191, 36, 0.32);
}

.analysys-player-reticle.is-locked span {
  border-color: rgba(251, 191, 36, 0.64);
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.28));
}

@keyframes analysysReticleLock {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.992);
  }
}

.analysys-empty-preview {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 520px;
  padding: 28px 24px;
  text-align: center;
}

.analysys-empty-preview-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(48vw, 260px);
  aspect-ratio: 1;
}

.analysys-empty-preview-ring {
  position: absolute;
  border: 1px solid rgba(83, 223, 255, 0.18);
  border-radius: 999px;
}

.analysys-empty-preview-ring-outer {
  inset: 0;
  box-shadow:
    inset 0 0 38px rgba(53, 215, 255, 0.08),
    0 0 44px rgba(53, 215, 255, 0.08);
  animation: analysysSceneRotate 18s linear infinite;
}

.analysys-empty-preview-ring-mid {
  inset: 14%;
  border-style: dashed;
  border-color: rgba(83, 223, 255, 0.22);
  animation: analysysSceneRotateReverse 12s linear infinite;
}

.analysys-empty-preview-ring-inner {
  inset: 28%;
  border-color: rgba(92, 241, 182, 0.3);
  box-shadow: inset 0 0 24px rgba(92, 241, 182, 0.08);
  animation: analysysScenePulse 3.6s ease-in-out infinite;
}

.analysys-empty-preview-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(83, 223, 255, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, rgba(111, 229, 255, 0.32), rgba(5, 19, 34, 0.96) 68%),
    rgba(2, 9, 20, 0.96);
  box-shadow:
    inset 0 0 28px rgba(53, 215, 255, 0.16),
    0 0 26px rgba(53, 215, 255, 0.16);
}

.analysys-empty-preview-core strong {
  color: #f7fcff;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.analysys-empty-preview-core small {
  color: #6de3ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.analysys-empty-preview-copy {
  display: grid;
  gap: 10px;
}

.analysys-empty-preview strong {
  color: #f6fcff;
  font-size: 22px;
}

.analysys-empty-preview span {
  color: #bcd0e1;
}

.analysys-empty-preview small,
.analysys-file-strip small,
.analysys-format-row {
  color: #839bb2;
  line-height: 1.45;
}

.analysys-file-strip {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(53, 215, 255, 0.12);
  padding: 10px 12px;
}

.analysys-file-strip span {
  color: #eafaff;
  font-weight: 900;
}

.analysys-result-monitor {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(53, 215, 255, 0.12);
  padding: 12px;
  background:
    radial-gradient(circle at 86% 0%, rgba(53, 215, 255, 0.08), transparent 12rem),
    linear-gradient(180deg, rgba(3, 15, 29, 0.92), rgba(1, 8, 18, 0.94));
}

.analysys-result-monitor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.analysys-result-monitor-head > div {
  display: grid;
  gap: 4px;
}

.analysys-result-monitor-head span {
  color: #effbff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-result-monitor-head small {
  color: #8ca7bc;
  font-size: 11px;
}

.analysys-result-monitor-head strong {
  color: #6de3ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.analysys-action-progress {
  display: grid;
  gap: 8px;
}

.analysys-action-progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.analysys-action-progress-copy span {
  color: #f4fbff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.analysys-action-progress-copy small {
  color: #6de3ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-action-progress-bar {
  position: relative;
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(7, 24, 38, 0.94);
  box-shadow: inset 0 0 0 1px rgba(53, 215, 255, 0.12);
}

.analysys-action-progress-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(94, 209, 255, 0.9), rgba(92, 241, 182, 0.96));
  box-shadow:
    0 0 22px rgba(53, 215, 255, 0.24),
    inset 0 0 18px rgba(255, 255, 255, 0.14);
  animation: analysysProgressTravel 1.6s linear infinite;
}

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

.analysys-result-monitor-grid article {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 10px;
  padding: 11px;
  background: rgba(3, 16, 29, 0.72);
}

.analysys-result-monitor-grid article.is-wide {
  grid-column: 1 / -1;
}

.analysys-result-monitor-grid small,
.analysys-result-monitor-grid strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-result-monitor-grid small {
  color: #6de3ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.analysys-result-monitor-grid strong {
  color: #f4fbff;
  font-size: 14px;
}

.analysys-result-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.analysys-result-notes span {
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 999px;
  padding: 6px 8px;
  color: #d6f7ff;
  font-size: 10px;
  white-space: nowrap;
  background: rgba(4, 18, 31, 0.82);
}

.analysys-result-monitor-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 180px;
  padding: 14px;
  text-align: center;
}

.analysys-result-monitor-empty strong {
  color: #f3fbff;
  font-size: 20px;
}

.analysys-result-monitor-empty small {
  max-width: 520px;
  color: #8ea6ba;
  line-height: 1.45;
}

.analysys-result-monitor-radar {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 1px solid rgba(53, 215, 255, 0.16);
  box-shadow:
    inset 0 0 26px rgba(53, 215, 255, 0.06),
    0 0 24px rgba(53, 215, 255, 0.08);
}

.analysys-result-monitor-radar i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 999px;
}

.analysys-result-monitor-radar i:first-child {
  animation: analysysCoreRing 3.4s ease-out infinite;
}

.analysys-result-monitor-radar i:nth-child(2) {
  inset: 14%;
  animation: analysysSceneRotate 10s linear infinite;
}

.analysys-result-monitor-radar i:last-child {
  inset: 30%;
  border-color: rgba(92, 241, 182, 0.22);
  animation: analysysScenePulse 2.8s ease-in-out infinite;
}

.analysys-analysis-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(53, 215, 255, 0.12);
}

.analysys-analysis-strip span {
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 10px;
  background: rgba(3, 18, 32, 0.72);
  color: #839bb2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px;
}

.analysys-analysis-strip strong {
  display: block;
  overflow: hidden;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0;
  margin-top: 3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-command-console {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(53, 215, 255, 0.12);
  padding: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.08), transparent 12rem),
    linear-gradient(180deg, rgba(2, 11, 21, 0.96), rgba(1, 8, 18, 0.98));
}

.analysys-command-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.analysys-command-console-head > div {
  display: grid;
  gap: 4px;
}

.analysys-command-console-head span {
  color: #f0fbff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analysys-command-console-head small {
  color: #8ca7bc;
  font-size: 11px;
}

.analysys-command-console-head strong {
  color: #6de3ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.analysys-command-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.analysys-command-presets button,
.analysys-command-input-row button {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 9px;
  background: rgba(5, 20, 35, 0.86);
  color: #dff8ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-command-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
}

.analysys-command-input-row input {
  min-width: 0;
  min-height: 40px;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 9px;
  padding: 10px 12px;
  background: rgba(2, 10, 20, 0.96);
  color: #effbff;
}

.analysys-command-input-row input::placeholder {
  color: #7893a9;
}

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

.analysys-command-history span,
.analysys-command-history p {
  display: grid;
  gap: 4px;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
  background: rgba(3, 16, 29, 0.74);
}

.analysys-command-history strong,
.analysys-command-history small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-command-history strong {
  color: #f4fbff;
  font-size: 12px;
  text-transform: lowercase;
}

.analysys-command-history small {
  color: #6de3ff;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.analysys-readiness-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(53, 215, 255, 0.12);
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(5, 22, 40, 0.82), rgba(1, 8, 17, 0.86)),
    radial-gradient(circle at 12% 20%, rgba(53, 215, 255, 0.14), transparent 11rem);
}

.analysys-readiness-panel > div:first-child {
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(53, 215, 255, 0.13);
  border-radius: 10px;
  padding: 12px;
  background: rgba(1, 8, 18, 0.72);
}

.analysys-readiness-panel h4 {
  margin: 0;
  color: #f3fcff;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 28px;
}

.analysys-readiness-panel .section-kicker {
  margin: 0;
  font-size: 10px;
}

.analysys-readiness-checks {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.analysys-readiness-check {
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-left-width: 3px;
  border-radius: 9px;
  padding: 10px;
  background: rgba(2, 12, 23, 0.66);
}

.analysys-readiness-check.is-ok {
  border-left-color: rgba(74, 222, 128, 0.86);
}

.analysys-readiness-check.is-waiting {
  border-left-color: rgba(251, 191, 36, 0.86);
}

.analysys-readiness-check strong {
  overflow: hidden;
  color: #eafaff;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-readiness-check small {
  overflow: hidden;
  color: #8ea6ba;
  font-size: 11px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-intake-panel {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(53, 215, 255, 0.12);
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(3, 17, 31, 0.84), rgba(1, 8, 17, 0.88)),
    radial-gradient(circle at 88% 0%, rgba(251, 191, 36, 0.08), transparent 12rem);
}

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

.analysys-intake-header h4 {
  margin: 0;
  color: #f3fcff;
  font-size: 15px;
}

.analysys-intake-header .section-kicker {
  margin: 0 0 4px;
  font-size: 10px;
}

.analysys-intake-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(64px, 1fr));
  gap: 8px;
  min-width: 260px;
}

.analysys-intake-metrics span {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(53, 215, 255, 0.13);
  border-radius: 9px;
  padding: 8px 10px;
  background: rgba(1, 8, 18, 0.68);
}

.analysys-intake-metrics strong {
  color: var(--cyan);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 16px;
}

.analysys-intake-metrics small {
  color: #8ea6ba;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.analysys-intake-list p {
  margin: 0;
  border: 1px dashed rgba(53, 215, 255, 0.18);
  border-radius: 9px;
  padding: 11px;
  color: #8ea6ba;
  background: rgba(0, 7, 16, 0.46);
}

.analysys-intake-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(120px, 0.55fr) auto;
  gap: 7px 10px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.11);
  border-radius: 9px;
  padding: 9px 10px;
  background: rgba(2, 12, 23, 0.68);
}

.analysys-intake-row strong,
.analysys-intake-row span,
.analysys-intake-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-intake-row strong {
  color: #eafaff;
  font-size: 12px;
}

.analysys-intake-row span {
  color: #a6bed3;
  font-size: 11px;
}

.analysys-intake-row small {
  grid-column: 1 / -1;
  color: #7f98ad;
  font-size: 11px;
}

.analysys-control-stack {
  grid-area: right;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 12px;
}

.analysys-commentary-line {
  grid-area: comment;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  padding: 10px 14px;
  background:
    linear-gradient(135deg, rgba(5, 22, 40, 0.88), rgba(1, 8, 18, 0.92)),
    radial-gradient(circle at 12% 50%, rgba(53, 215, 255, 0.12), transparent 10rem);
}

.analysys-commentary-line span,
.analysys-commentary-line small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-commentary-line span {
  color: #eafaff;
  font-size: 12px;
}

.analysys-commentary-line small {
  color: #7fdfff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.analysys-control-head {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(53, 215, 255, 0.18);
  border-radius: 14px;
  padding: 14px;
  background:
    radial-gradient(circle at 92% 0%, rgba(53, 215, 255, 0.14), transparent 10rem),
    linear-gradient(145deg, rgba(6, 24, 42, 0.86), rgba(1, 8, 18, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 24px rgba(53, 215, 255, 0.06);
}

.analysys-properties-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 14px;
  padding: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 215, 255, 0.08), transparent 9rem),
    rgba(1, 8, 18, 0.7);
}

.analysys-properties-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.analysys-properties-head > div {
  display: grid;
  gap: 4px;
}

.analysys-properties-head h4,
.analysys-properties-head p {
  margin: 0;
}

.analysys-properties-head h4 {
  color: #f4fcff;
  font-size: 15px;
}

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

.analysys-properties-grid span {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(3, 16, 29, 0.72);
}

.analysys-properties-grid small,
.analysys-properties-grid strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-properties-grid small {
  color: #83a0b6;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-properties-grid strong {
  color: #ebfaff;
  font-size: 12px;
}

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

.analysys-properties-signals span {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 12px;
  padding: 10px 11px 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.12), transparent 8rem),
    linear-gradient(180deg, rgba(7, 22, 38, 0.92), rgba(3, 12, 24, 0.86));
  box-shadow:
    inset 0 0 18px rgba(53, 215, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

.analysys-properties-signals span::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(83, 223, 255, 0.18);
  border-radius: 999px;
  content: "";
  box-shadow: inset 0 0 14px rgba(53, 215, 255, 0.08);
}

.analysys-properties-signals small,
.analysys-properties-signals strong {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-properties-signals small {
  color: #6adfff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.analysys-properties-signals strong {
  color: #f6fcff;
  font-size: 13px;
}

.analysys-control-head h4,
.analysys-control-head p {
  margin: 0;
}

.analysys-control-head h4 {
  color: #f4fcff;
  font-size: 17px;
}

.analysys-control-head p {
  color: #9cb3c7;
  line-height: 1.45;
}

.analysys-control-head .status-pill {
  justify-self: start;
}

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

.analysys-control-metrics span {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.13);
  border-radius: 9px;
  padding: 9px;
  background: rgba(1, 8, 18, 0.62);
}

.analysys-control-metrics strong {
  overflow: hidden;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-control-metrics small {
  overflow: hidden;
  color: #8ea6ba;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.analysys-tool-grid {
  display: grid;
  gap: 10px;
}

.analysys-tool-section,
.analysys-camera-section {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.13);
  border-radius: 12px;
  padding: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 215, 255, 0.09), transparent 8rem),
    rgba(1, 8, 18, 0.58);
}

.analysys-tool-section-head,
.analysys-camera-section-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 0;
}

.analysys-tool-section-head > div,
.analysys-camera-section-head > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.analysys-tool-section-head span,
.analysys-camera-section-head span {
  overflow: hidden;
  color: #f3fbff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.analysys-tool-section-head small,
.analysys-camera-section-head small {
  color: #8ea6ba;
  font-size: 11px;
  line-height: 1.35;
}

.analysys-tool-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.analysys-tool {
  display: grid;
  gap: 7px;
  min-height: 96px;
  padding: 12px;
}

.analysys-tool:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.analysys-tool.is-active,
.analysys-tool:active:not(:disabled) {
  border-color: rgba(53, 215, 255, 0.46);
  box-shadow: 0 0 24px rgba(0, 208, 255, 0.16);
}

.analysys-tool span {
  color: #eafaff;
  font-weight: 900;
}

.analysys-tool strong {
  color: var(--cyan);
  font-size: 10px;
}

.analysys-tool small {
  color: #8ca7bc;
  line-height: 1.35;
}

.analysys-camera-grid {
  display: grid;
  gap: 10px;
}

.analysys-camera-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: rgba(4, 17, 30, 0.74);
}

.analysys-camera-row strong {
  color: #eafaff;
}

.analysys-camera-row small {
  grid-column: 1 / -1;
  color: #8ea6ba;
}

.analysys-custody-log {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(5, 24, 42, 0.86), rgba(2, 10, 20, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(53, 215, 255, 0.1), transparent 12rem);
}

.analysys-custody-log h4 {
  margin: 0;
  color: #f4fbff;
}

.analysys-custody-log p {
  margin: 0;
  color: #8ea6ba;
  line-height: 1.45;
}

.analysys-custody-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  border-left: 2px solid rgba(53, 215, 255, 0.58);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(1, 9, 18, 0.72);
}

.analysys-custody-row.is-warning {
  border-left-color: rgba(251, 191, 36, 0.75);
}

.analysys-custody-row.is-ready {
  border-left-color: rgba(74, 222, 128, 0.75);
}

.analysys-custody-row strong {
  color: #eafaff;
  font-size: 12px;
}

.analysys-custody-row span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.analysys-custody-row small {
  grid-column: 1 / -1;
  overflow: hidden;
  color: #8ea6ba;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-format-row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid rgba(53, 215, 255, 0.15);
  border-radius: 14px;
  padding: 12px;
  background:
    radial-gradient(circle at 8% 0%, rgba(53, 215, 255, 0.1), transparent 10rem),
    linear-gradient(145deg, rgba(5, 20, 36, 0.88), rgba(1, 8, 18, 0.9));
}

.analysys-format-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.analysys-format-head > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.analysys-format-head h4,
.analysys-format-head p,
.analysys-format-head small {
  margin: 0;
}

.analysys-format-head h4 {
  color: #f4fcff;
  font-size: 17px;
}

.analysys-format-head small {
  color: #8fa8bf;
  line-height: 1.45;
}

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

.analysys-format-groups section {
  display: grid;
  gap: 9px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 11px;
  background: rgba(1, 8, 18, 0.62);
}

.analysys-format-groups span {
  color: #eafaff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-format-groups div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.analysys-format-groups small {
  border: 1px solid rgba(53, 215, 255, 0.13);
  border-radius: 999px;
  padding: 5px 8px;
  color: #9edff2;
  background: rgba(53, 215, 255, 0.08);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.analysys-bridge-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.analysys-bridge-grid article {
  display: grid;
  gap: 7px;
  min-height: 126px;
  padding: 13px;
}

.analysys-bridge-grid h4 {
  margin: 0;
  color: #f4fbff;
  font-size: 14px;
}

.analysys-report-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 12px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(4, 20, 36, 0.92), rgba(1, 8, 17, 0.94)),
    radial-gradient(circle at 10% 0%, rgba(53, 215, 255, 0.12), transparent 14rem);
}

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

.analysys-report-head > div {
  display: grid;
  gap: 5px;
}

.analysys-report-panel h4 {
  margin: 0;
  color: #f4fbff;
}

.analysys-report-panel .section-kicker,
.analysys-report-head small {
  margin: 0;
}

.analysys-report-panel button {
  border: 1px solid rgba(53, 215, 255, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 183, 255, 0.12);
  color: #dff9ff;
  cursor: pointer;
  font-weight: 900;
}

.analysys-report-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.analysys-report-summary span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.13);
  border-radius: 10px;
  padding: 10px;
  background:
    radial-gradient(circle at 90% 0%, rgba(53, 215, 255, 0.08), transparent 6rem),
    rgba(1, 8, 18, 0.7);
}

.analysys-report-summary strong {
  overflow: hidden;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-report-summary small {
  overflow: hidden;
  color: #8ea6ba;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.analysys-report-details {
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 5, 12, 0.48);
}

.analysys-report-details summary {
  cursor: pointer;
  padding: 11px 12px;
  color: #dff9ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-report-panel pre {
  overflow: auto;
  max-height: 260px;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(53, 215, 255, 0.1);
  border-radius: 0 0 10px 10px;
  padding: 12px;
  background: rgba(0, 5, 12, 0.72);
  color: #cfeeff;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.analysys-report-panel small {
  color: #8ea6ba;
}

.analysys-vault-drawer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 16px;
  padding: 16px;
  background:
    radial-gradient(circle at 8% 10%, rgba(251, 191, 36, 0.12), transparent 14rem),
    radial-gradient(circle at 92% 0%, rgba(53, 215, 255, 0.1), transparent 12rem),
    linear-gradient(145deg, rgba(21, 16, 10, 0.76), rgba(1, 8, 17, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 34px rgba(251, 191, 36, 0.06);
}

.analysys-vault-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.12), transparent),
    repeating-linear-gradient(90deg, rgba(251, 191, 36, 0.04) 0 1px, transparent 1px 28px);
  opacity: 0.32;
}

.analysys-vault-drawer-head,
.analysys-vault-drawer-metrics,
.analysys-vault-actions,
.analysys-safe-grid {
  position: relative;
  z-index: 1;
}

.analysys-vault-drawer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 14px;
  align-items: end;
}

.analysys-vault-drawer-head h4 {
  margin: 2px 0 6px;
  color: #f8fcff;
  font-size: 24px;
}

.analysys-vault-drawer-head p {
  max-width: 780px;
  margin: 0;
  color: #9bb1c6;
  line-height: 1.45;
}

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

.analysys-vault-drawer-metrics span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 10px;
  padding: 10px;
  background: rgba(0, 7, 15, 0.52);
}

.analysys-vault-drawer-metrics strong {
  color: #f7d98e;
  font-size: 18px;
}

.analysys-vault-drawer-metrics small {
  color: #8fa5ba;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.analysys-safe-card {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.analysys-safe-card h4 {
  margin: 0;
  color: #f2fbff;
}

.analysys-vault-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.analysys-vault-action-group {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(251, 191, 36, 0.16);
  border-radius: 12px;
  padding: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.1), transparent 8rem),
    rgba(1, 8, 18, 0.58);
}

.analysys-vault-action-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.analysys-vault-action-head > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.analysys-vault-action-head span {
  color: #f8fcff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysys-vault-action-head small {
  color: #9bb1c6;
  font-size: 11px;
  line-height: 1.35;
}

.analysys-vault-action-buttons {
  display: grid;
  gap: 8px;
}

.analysys-vault-actions button {
  min-height: 42px;
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(50, 33, 9, 0.48), rgba(2, 10, 20, 0.88)),
    rgba(4, 14, 25, 0.82);
  color: #9aaec2;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.analysys-vault-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.admin-rotation-panel {
  overflow: hidden;
}

.admin-rotation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.admin-rotation-grid span {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(53, 215, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 28, 50, 0.88), rgba(2, 9, 20, 0.78)),
    rgba(4, 15, 30, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 26px rgba(53, 215, 255, 0.04);
}

.admin-rotation-grid small {
  color: #7f97af;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-rotation-grid strong {
  color: #e9fbff;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.admin-rotation-gate {
  margin-top: 10px;
}

.readiness-gate-panel {
  overflow: hidden;
}

.readiness-gate-summary,
.readiness-lane-grid,
.readiness-control-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

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

.readiness-lane-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
}

.readiness-gate-summary article,
.readiness-lane-card,
.readiness-control-row {
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.9), rgba(3, 11, 22, 0.76)),
    rgba(4, 12, 24, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px rgba(53, 215, 255, 0.035);
}

.readiness-gate-summary article,
.readiness-lane-card {
  display: grid;
  gap: 7px;
  padding: 14px;
}

.readiness-gate-summary span,
.readiness-lane-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.readiness-gate-summary strong,
.readiness-lane-card strong {
  color: #f3fbff;
  font-size: 26px;
  line-height: 1;
}

.readiness-lane-card strong {
  font-size: 18px;
}

.readiness-gate-summary small,
.readiness-lane-card p,
.readiness-control-row small {
  margin: 0;
  color: #8ba4bb;
  line-height: 1.35;
}

.readiness-control-grid {
  margin-top: 10px;
}

.readiness-control-row {
  display: grid;
  grid-template-columns: 82px minmax(180px, 1fr) auto minmax(160px, 0.7fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
}

.readiness-control-row strong {
  color: var(--cyan);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

.readiness-control-row span {
  color: #e9fbff;
  font-size: 13px;
  font-weight: 800;
}

.action-request-panel {
  overflow: hidden;
}

.action-request-phase-grid,
.action-request-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.action-request-phase-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 10px;
}

.action-request-phase-grid span,
.action-request-card {
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.9), rgba(3, 11, 22, 0.76)),
    rgba(4, 12, 24, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.action-request-phase-grid span {
  display: grid;
  gap: 6px;
  min-height: 68px;
  align-content: center;
  padding: 10px;
  color: #a7bdd2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-request-phase-grid strong {
  color: var(--cyan);
  font-size: 16px;
}

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

.action-request-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}

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

.action-request-head span,
.action-request-card small {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action-request-card h4 {
  margin: 0;
  color: #f3fbff;
  font-size: 15px;
}

.action-request-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.action-request-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.action-request-card dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 9px;
  border-bottom: 1px solid rgba(53, 215, 255, 0.08);
  padding-bottom: 7px;
}

.action-request-card dt {
  color: #7f97af;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.action-request-card dd {
  margin: 0;
  color: #dff8ff;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.action-request-card button {
  min-height: 34px;
  border: 1px solid rgba(255, 178, 71, 0.24);
  border-radius: 7px;
  color: rgba(255, 210, 142, 0.82);
  background: rgba(255, 178, 71, 0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-request-card button:disabled {
  cursor: not-allowed;
  opacity: 0.74;
}

.owner-validation-card label {
  display: grid;
  gap: 7px;
  color: #9fb8cf;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.owner-validation-card select,
.owner-validation-card textarea {
  width: 100%;
  border: 1px solid rgba(53, 215, 255, 0.16);
  border-radius: 7px;
  color: #e8f8ff;
  background: rgba(2, 10, 20, 0.72);
  font: inherit;
}

.owner-validation-card select {
  min-height: 36px;
  padding: 0 10px;
}

.owner-validation-card textarea {
  min-height: 66px;
  resize: vertical;
  padding: 10px;
}

.owner-validation-meta {
  grid-column: 1 / -1;
  color: rgba(143, 169, 191, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.finding-card {
  display: grid;
  gap: 8px;
}

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

.finding-head strong {
  color: #dff8ff;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

.finding-card small,
.asset-status-row small,
.report-status-row small,
.agent-ops-card small,
.monitoring-grid small {
  color: #8ba4bb;
}

.module-tabbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 8px;
  margin: 12px 0;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 14px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.9), rgba(1, 9, 19, 0.92)),
    radial-gradient(circle at 8% 0%, rgba(53, 215, 255, 0.12), transparent 12rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(0, 0, 0, 0.18);
}

.module-tabbar button {
  position: relative;
  display: grid;
  gap: 5px;
  min-width: 0;
  min-height: 66px;
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 9px 10px 11px;
  background:
    linear-gradient(145deg, rgba(7, 24, 42, 0.78), rgba(2, 10, 20, 0.9)),
    rgba(2, 10, 20, 0.78);
  color: #dff8ff;
  cursor: pointer;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.module-tabbar button::after {
  content: "";
  position: absolute;
  inset: auto 10px 8px 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.76), transparent);
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.module-tabbar button:hover,
.module-tabbar button.is-active {
  border-color: rgba(53, 215, 255, 0.38);
  background:
    radial-gradient(circle at 88% 0%, rgba(53, 215, 255, 0.13), transparent 7rem),
    linear-gradient(145deg, rgba(9, 32, 52, 0.88), rgba(2, 10, 20, 0.94));
  box-shadow: 0 0 26px rgba(0, 208, 255, 0.12);
  transform: translateY(-1px);
}

.module-tabbar button.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.module-tabbar span,
.module-tabbar strong,
.module-tabbar small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-tabbar span {
  color: #f5fcff;
  font-size: 11px;
  font-weight: 900;
}

.module-tabbar strong {
  color: var(--cyan);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-tabbar small {
  color: #8ca6ba;
  font-size: 9px;
}

.reports-focus-strip,
.agent-focus-strip,
.assistant-focus-strip,
.asset-focus-strip,
.people-focus-strip,
.monitoring-focus-strip,
.incidents-focus-strip,
.incident-focus-strip,
.backup-focus-strip,
.camera-focus-strip,
.compliance-focus-strip,
.email-focus-strip,
.ip-focus-strip,
.threat-focus-strip,
.web-focus-strip,
.settings-focus-strip,
.audit-focus-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: 12px;
  align-items: center;
  margin: 0 0 12px;
  border: 1px solid rgba(53, 215, 255, 0.15);
  border-radius: 12px;
  padding: 13px;
  background:
    radial-gradient(circle at 92% 0%, rgba(53, 215, 255, 0.12), transparent 11rem),
    linear-gradient(145deg, rgba(5, 20, 36, 0.84), rgba(1, 8, 18, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.reports-focus-strip h3,
.reports-focus-strip p,
.agent-focus-strip h3,
.agent-focus-strip p,
.assistant-focus-strip h3,
.assistant-focus-strip p,
.asset-focus-strip h3,
.asset-focus-strip p,
.people-focus-strip h3,
.people-focus-strip p,
.monitoring-focus-strip h3,
.monitoring-focus-strip p,
.incidents-focus-strip h3,
.incidents-focus-strip p,
.incident-focus-strip h3,
.incident-focus-strip p,
.backup-focus-strip h3,
.backup-focus-strip p,
.camera-focus-strip h3,
.camera-focus-strip p,
.compliance-focus-strip h3,
.compliance-focus-strip p,
.email-focus-strip h3,
.email-focus-strip p,
.ip-focus-strip h3,
.ip-focus-strip p,
.threat-focus-strip h3,
.threat-focus-strip p,
.web-focus-strip h3,
.web-focus-strip p,
.settings-focus-strip h3,
.settings-focus-strip p,
.audit-focus-strip h3,
.audit-focus-strip p {
  margin: 0;
}

.reports-focus-strip h3,
.agent-focus-strip h3,
.assistant-focus-strip h3,
.asset-focus-strip h3,
.people-focus-strip h3,
.monitoring-focus-strip h3,
.incidents-focus-strip h3,
.incident-focus-strip h3,
.backup-focus-strip h3,
.camera-focus-strip h3,
.compliance-focus-strip h3,
.email-focus-strip h3,
.ip-focus-strip h3,
.threat-focus-strip h3,
.web-focus-strip h3,
.settings-focus-strip h3,
.audit-focus-strip h3 {
  color: #f5fcff;
  font-size: 18px;
}

.reports-focus-strip p,
.agent-focus-strip p,
.assistant-focus-strip p,
.asset-focus-strip p,
.people-focus-strip p,
.monitoring-focus-strip p,
.incidents-focus-strip p,
.incident-focus-strip p,
.backup-focus-strip p,
.camera-focus-strip p,
.compliance-focus-strip p,
.email-focus-strip p,
.ip-focus-strip p,
.threat-focus-strip p,
.web-focus-strip p,
.settings-focus-strip p,
.audit-focus-strip p {
  color: #9bb0c7;
  line-height: 1.42;
}

.reports-focus-metrics,
.agent-focus-metrics,
.assistant-focus-metrics,
.asset-focus-metrics,
.people-focus-metrics,
.monitoring-focus-metrics,
.incidents-focus-metrics,
.incident-focus-metrics,
.backup-focus-metrics,
.camera-focus-metrics,
.compliance-focus-metrics,
.email-focus-metrics,
.ip-focus-metrics,
.threat-focus-metrics,
.web-focus-metrics,
.settings-focus-metrics,
.audit-focus-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.reports-focus-metrics span,
.agent-focus-metrics span,
.assistant-focus-metrics span,
.asset-focus-metrics span,
.people-focus-metrics span,
.monitoring-focus-metrics span,
.incidents-focus-metrics span,
.incident-focus-metrics span,
.backup-focus-metrics span,
.camera-focus-metrics span,
.compliance-focus-metrics span,
.email-focus-metrics span,
.ip-focus-metrics span,
.threat-focus-metrics span,
.web-focus-metrics span,
.settings-focus-metrics span,
.audit-focus-metrics span {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.13);
  border-radius: 9px;
  padding: 9px;
  background: rgba(1, 8, 18, 0.64);
}

.reports-focus-metrics strong,
.agent-focus-metrics strong,
.assistant-focus-metrics strong,
.asset-focus-metrics strong,
.people-focus-metrics strong,
.monitoring-focus-metrics strong,
.incidents-focus-metrics strong,
.incident-focus-metrics strong,
.backup-focus-metrics strong,
.camera-focus-metrics strong,
.compliance-focus-metrics strong,
.email-focus-metrics strong,
.ip-focus-metrics strong,
.threat-focus-metrics strong,
.web-focus-metrics strong,
.settings-focus-metrics strong,
.audit-focus-metrics strong {
  overflow: hidden;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reports-focus-metrics small,
.agent-focus-metrics small,
.assistant-focus-metrics small,
.asset-focus-metrics small,
.people-focus-metrics small,
.monitoring-focus-metrics small,
.incidents-focus-metrics small,
.incident-focus-metrics small,
.backup-focus-metrics small,
.camera-focus-metrics small,
.compliance-focus-metrics small,
.email-focus-metrics small,
.ip-focus-metrics small,
.threat-focus-metrics small,
.web-focus-metrics small,
.settings-focus-metrics small,
.audit-focus-metrics small {
  overflow: hidden;
  color: #8ea6ba;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ports-grid,
.asset-status-grid,
.report-status-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

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

.port-row,
.asset-status-row,
.report-status-row {
  display: grid;
  grid-template-columns: 70px minmax(120px, 1fr) auto minmax(120px, 0.8fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.1);
  border-radius: 7px;
  padding: 9px 10px;
  background: rgba(2, 11, 22, 0.42);
}

.asset-status-row,
.report-status-row {
  grid-template-columns: minmax(180px, 1fr) minmax(120px, 0.6fr) auto;
}

.report-ops-row {
  grid-template-columns: minmax(160px, 0.8fr) minmax(180px, 0.8fr) auto minmax(220px, 1fr);
}

.report-ops-row p {
  margin: 0;
  color: #9bb0c7;
  font-size: 12px;
  line-height: 1.35;
}

.port-row strong {
  color: var(--cyan);
  font-size: 17px;
}

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

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

.backup-ops-grid dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.backup-ops-grid dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(53, 215, 255, 0.08);
  padding-bottom: 7px;
}

.backup-ops-grid dt {
  color: #8ba4bb;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.backup-ops-grid dd {
  margin: 0;
  color: #e8f8ff;
  text-align: right;
}

.monitoring-grid strong {
  display: block;
  color: var(--cyan);
  font-size: 22px;
}

.monitoring-probe-grid {
  margin-top: 10px;
}

.monitoring-probe-row small {
  color: #8ea6ba;
  font-size: 11px;
  font-weight: 700;
}

.monitoring-probe-row p {
  margin: 0;
  color: #9bb0c7;
  font-size: 12px;
  line-height: 1.35;
}

.incident-command-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.incident-command-grid article {
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(2, 11, 22, 0.48);
}

.incident-command-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.incident-command-grid strong {
  display: block;
  margin: 7px 0;
  color: #ffffff;
  font-size: 24px;
}

.incident-command-list,
.incident-runbook,
.incident-timeline,
.incident-evidence-grid,
.locked-action-grid,
.incident-evidence-summary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.incident-command-row {
  display: grid;
  grid-template-columns: 28px minmax(130px, 0.8fr) minmax(180px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.1);
  border-radius: 7px;
  padding: 10px;
  background: rgba(2, 11, 22, 0.42);
}

.incident-command-row strong {
  color: #eaf8ff;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

.incident-command-row span:not(.incident-severity) {
  color: #bfd4e8;
}

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

.incident-runbook span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  align-items: start;
  border: 1px solid rgba(53, 215, 255, 0.1);
  border-radius: 7px;
  padding: 10px;
  color: #9bb0c7;
  background: rgba(53, 215, 255, 0.04);
}

.incident-runbook strong {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #00131e;
  background: var(--cyan);
}

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

.incident-evidence-summary article {
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 215, 255, 0.12), transparent 35%),
    rgba(2, 11, 22, 0.46);
}

.incident-evidence-summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.incident-evidence-summary strong {
  display: block;
  margin: 7px 0;
  color: #fff;
  font-size: 23px;
}

.incident-evidence-summary small {
  color: #8ba4bb;
}

.incident-timeline {
  gap: 10px;
}

.incident-timeline-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(2, 11, 22, 0.5);
}

.incident-timeline-item > div {
  display: grid;
  gap: 5px;
}

.incident-timeline-item > div span,
.incident-evidence-card span,
.locked-action-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.incident-timeline-item > div strong {
  color: #eaf8ff;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

.incident-timeline-item h4,
.incident-evidence-card h4 {
  margin: 0;
  color: #f3fbff;
  font-size: 15px;
}

.incident-timeline-item p,
.incident-evidence-card p,
.locked-action-card p {
  margin: 5px 0;
  color: #9bb0c7;
  line-height: 1.42;
}

.incident-timeline-item small {
  color: #8ba4bb;
}

.incident-evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.incident-evidence-card,
.locked-action-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.11);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.86), rgba(3, 11, 22, 0.74)),
    rgba(4, 12, 24, 0.8);
}

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

.locked-action-card {
  border-color: rgba(255, 178, 71, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 178, 71, 0.12), transparent 38%),
    rgba(2, 11, 22, 0.5);
}

.client-network-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  gap: 16px;
  margin-top: 12px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 12px;
  padding: 16px;
  background:
    radial-gradient(circle at 14% 10%, rgba(53, 215, 255, 0.15), transparent 22rem),
    radial-gradient(circle at 88% 84%, rgba(92, 241, 182, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(8, 21, 38, 0.96), rgba(2, 8, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(90, 195, 255, 0.04),
    inset 0 0 56px rgba(18, 93, 139, 0.12),
    0 24px 52px rgba(0, 0, 0, 0.22);
}

.client-network-panel::before,
.client-network-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.client-network-panel::before {
  background:
    linear-gradient(rgba(53, 215, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 215, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
}

.client-network-panel::after {
  background: linear-gradient(90deg, transparent, rgba(53, 215, 255, 0.08), transparent);
  transform: translateX(-100%);
  animation: clientNetworkSweep 7.5s linear infinite;
}

.client-network-head,
.client-network-layout,
.client-network-footer {
  position: relative;
  z-index: 1;
}

.client-network-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.client-network-head > div {
  display: grid;
  gap: 8px;
}

.client-network-head .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
}

.client-network-head .section-kicker::after {
  width: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(83, 223, 255, 0.68), transparent);
}

.client-network-head h4 {
  margin: 0;
  color: #f5fbff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.client-network-head p:last-child {
  margin: 0;
  max-width: 60ch;
  color: #98b4ca;
  line-height: 1.52;
}

.client-network-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(84px, 1fr));
  gap: 8px;
  min-width: min(420px, 100%);
}

.client-network-metrics span {
  display: grid;
  gap: 2px;
  justify-items: center;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 10px;
  padding: 10px 8px;
  background: linear-gradient(180deg, rgba(6, 22, 38, 0.92), rgba(3, 12, 24, 0.82));
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.04);
}

.client-network-metrics strong {
  color: #f5fbff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.client-network-metrics small {
  color: #67dfff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-network-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.88fr);
  gap: 14px;
  align-items: stretch;
}

.client-network-stage {
  position: relative;
  min-height: 420px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at center, rgba(23, 78, 122, 0.28), transparent 38%),
    rgba(2, 9, 20, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(53, 215, 255, 0.04),
    inset 0 0 40px rgba(53, 215, 255, 0.05);
}

.client-network-stage::before,
.client-network-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.client-network-stage::before {
  inset: 14px;
  border: 1px solid rgba(53, 215, 255, 0.08);
  border-radius: 10px;
}

.client-network-stage::after {
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(53, 215, 255, 0.1), transparent 42%),
    linear-gradient(transparent 49.6%, rgba(53, 215, 255, 0.06) 50%, transparent 50.4%),
    linear-gradient(90deg, transparent 49.6%, rgba(53, 215, 255, 0.06) 50%, transparent 50.4%);
}

.client-network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.client-network-link {
  opacity: 0.88;
}

.client-network-link.is-active {
  opacity: 1;
}

.client-network-link line {
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-dasharray: 6 5;
  animation: clientNetworkFlow 5.5s linear infinite;
}

.client-network-link circle {
  animation: clientNetworkPulse 2.4s ease-in-out infinite;
}

.client-network-link.is-online line,
.client-network-link.is-online circle {
  stroke: rgba(92, 241, 182, 0.9);
  fill: rgba(92, 241, 182, 0.9);
}

.client-network-link.is-watch line,
.client-network-link.is-watch circle {
  stroke: rgba(251, 191, 36, 0.92);
  fill: rgba(251, 191, 36, 0.92);
}

.client-network-link.is-alert {
  animation: clientNetworkAlertBlink 0.92s steps(2, end) infinite;
}

.client-network-link.is-alert line,
.client-network-link.is-alert circle {
  stroke: rgba(255, 92, 120, 0.96);
  fill: rgba(255, 92, 120, 0.96);
}

.client-network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: clamp(130px, 38%, 176px);
  height: clamp(130px, 38%, 176px);
  border: 1px solid rgba(53, 215, 255, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 45%, rgba(113, 228, 255, 0.28), rgba(8, 29, 48, 0.94) 62%),
    rgba(3, 12, 24, 0.92);
  box-shadow:
    inset 0 0 34px rgba(53, 215, 255, 0.18),
    0 0 38px rgba(53, 215, 255, 0.22);
  animation: clientNetworkCoreBreath 3.8s ease-in-out infinite;
}

.client-network-core::before,
.client-network-core::after {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 999px;
  content: "";
  animation: clientNetworkRing 3.6s ease-out infinite;
}

.client-network-core::after {
  inset: -24px;
  animation-delay: 1.2s;
}

.client-network-core strong {
  color: #f4fbff;
  font-size: clamp(34px, 7vw, 54px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.client-network-core small {
  color: #6de3ff;
  font-size: clamp(10px, 2.6vw, 13px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.client-network-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 78px;
  padding: 10px 8px 8px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(7, 20, 36, 0.96), rgba(2, 10, 20, 0.94)),
    rgba(4, 12, 24, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(90, 195, 255, 0.04),
    0 0 20px rgba(53, 215, 255, 0.08);
  color: #5ed1ff;
  cursor: pointer;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.client-network-node::after {
  position: absolute;
  top: 19px;
  left: 50%;
  width: 32px;
  height: 2px;
  transform: translateX(-50%);
  content: "";
  background: currentColor;
  opacity: 0.5;
  box-shadow: 0 7px 0 currentColor;
}

.client-network-node i {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 0 0 5px rgba(53, 215, 255, 0.08),
    0 0 18px currentColor;
  animation: clientNetworkNodeBlink 2.8s ease-in-out infinite;
}

.client-network-node strong,
.client-network-node small {
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-network-node strong {
  color: #effbff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-network-node small {
  color: #89a8be;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-network-node.is-online {
  color: #5cf1b6;
}

.client-network-node.is-watch {
  color: #fbbf24;
}

.client-network-node.is-alert {
  color: #ff5c78;
  border-color: rgba(255, 92, 120, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 92, 120, 0.08),
    0 0 24px rgba(255, 92, 120, 0.14);
  animation: clientNetworkAlertBlink 0.92s steps(2, end) infinite;
}

.client-network-node:hover,
.client-network-node.is-active {
  transform: translate(-50%, -50%) scale(1.04);
  border-color: rgba(103, 223, 255, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(90, 195, 255, 0.08),
    0 0 28px rgba(53, 215, 255, 0.16);
}

.client-network-rail {
  display: grid;
  gap: 10px;
  align-content: start;
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
}

.client-network-focus-card,
.client-network-card {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 10px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.9), rgba(3, 11, 22, 0.78)),
    rgba(4, 12, 24, 0.82);
  box-shadow: inset 0 0 18px rgba(53, 215, 255, 0.04);
}

.client-network-focus-card {
  gap: 12px;
  padding: 14px;
  border-color: rgba(103, 223, 255, 0.2);
}

.client-network-card span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-network-focus-card span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-network-card h4 {
  margin: 0;
  color: #f3fbff;
  font-size: 15px;
}

.client-network-focus-card h4 {
  margin: 0;
  color: #f6fcff;
  font-size: 18px;
}

.client-network-card p {
  margin: 0;
  color: #c7e6f8;
  line-height: 1.45;
}

.client-network-focus-card p {
  margin: 0;
  color: #c7e6f8;
  line-height: 1.5;
}

.client-network-card.is-watch {
  border-color: rgba(251, 191, 36, 0.18);
  box-shadow: inset 0 0 22px rgba(251, 191, 36, 0.05);
}

.client-network-focus-card.is-watch {
  border-color: rgba(251, 191, 36, 0.2);
  box-shadow: inset 0 0 24px rgba(251, 191, 36, 0.06);
}

.client-network-card.is-alert {
  border-color: rgba(255, 92, 120, 0.22);
  box-shadow: inset 0 0 22px rgba(255, 92, 120, 0.06);
}

.client-network-focus-card.is-alert {
  border-color: rgba(255, 92, 120, 0.24);
  box-shadow: inset 0 0 24px rgba(255, 92, 120, 0.08);
}

.client-network-card.is-overflow {
  border-style: dashed;
}

.client-network-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.client-network-card-meta small {
  color: #89a8be;
}

.client-network-focus-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.client-network-focus-head > div {
  display: grid;
  gap: 6px;
}

.client-network-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.client-network-focus-grid span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(53, 215, 255, 0.1);
  border-radius: 9px;
  padding: 9px 10px;
  background: rgba(2, 10, 20, 0.56);
}

.client-network-focus-grid small {
  color: #84a6be;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-network-focus-grid strong {
  overflow: hidden;
  color: #effbff;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-network-list {
  display: grid;
  gap: 10px;
}

.client-network-card {
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.client-network-card:hover,
.client-network-card.is-active {
  border-color: rgba(103, 223, 255, 0.28);
  box-shadow:
    inset 0 0 22px rgba(53, 215, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.client-network-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  border-top: 1px solid rgba(53, 215, 255, 0.1);
  padding-top: 12px;
}

.client-network-footer small {
  overflow: hidden;
  color: #89a8be;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.client-network-footer small:first-child {
  color: #67dfff;
}

.asset-server-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.asset-server-card {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(8, 24, 43, 0.86), rgba(3, 11, 22, 0.74)),
    rgba(4, 12, 24, 0.8);
}

.asset-server-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-server-card h4 {
  margin: 0;
  color: #f3fbff;
  font-size: 15px;
}

.asset-server-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.asset-server-card small {
  color: #8ba4bb;
}

.asset-server-runtime {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.asset-server-signal,
.asset-server-time {
  display: block;
}

.asset-server-signal {
  color: #c9ebff;
}

.asset-server-time {
  color: #7f97ad;
}

.posture-card-runtime {
  margin: 0;
  color: #c9ebff;
  line-height: 1.4;
}

.posture-card-time {
  display: block;
  color: #7f97ad;
}

.operator-list-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.posture-card-grid,
.posture-check-grid,
.mail-domain-grid,
.compliance-control-grid,
.event-pipeline-grid,
.intel-lists-grid,
.ip-card-grid,
.camera-device-grid,
.camera-event-list,
.handoff-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

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

.posture-card,
.compliance-control-card,
.event-pipeline-card,
.ip-card,
.camera-device-card,
.handoff-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(53, 215, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 215, 255, 0.12), transparent 35%),
    linear-gradient(145deg, rgba(8, 24, 43, 0.9), rgba(3, 11, 22, 0.76));
}

.posture-card span,
.compliance-control-card span,
.event-pipeline-card span,
.ip-card span,
.camera-device-card span,
.handoff-card span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.posture-card h4,
.compliance-control-card h4,
.event-pipeline-card h4,
.ip-card h4,
.camera-device-card h4,
.handoff-card h4 {
  margin: 0;
  color: #f3fbff;
  font-size: 15px;
}

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

.posture-mini-grid small {
  display: grid;
  gap: 5px;
  color: #8ba4bb;
}

.posture-check-row,
.mail-domain-row {
  display: grid;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.1);
  border-radius: 7px;
  padding: 10px;
  background: rgba(2, 11, 22, 0.42);
}

.posture-check-row {
  grid-template-columns: 82px minmax(190px, 1fr) auto minmax(120px, 0.7fr);
}

.posture-check-row strong {
  color: var(--cyan);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

.posture-check-row span,
.posture-check-row small {
  color: #9bb0c7;
}

.mail-domain-row {
  grid-template-columns: minmax(180px, 1fr) repeat(5, auto);
}

.mail-domain-row.is-head {
  border-color: rgba(53, 215, 255, 0.16);
  color: #8ba4bb;
  background: rgba(53, 215, 255, 0.06);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mail-domain-row strong {
  color: #eaf8ff;
}

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

.compliance-control-card small {
  color: #8ba4bb;
}

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

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

.intel-lists-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(53, 215, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(2, 11, 22, 0.42);
}

.intel-lists-grid h4 {
  margin: 0;
  color: #eaf8ff;
  font-size: 15px;
}

.intel-row,
.camera-event-row {
  display: grid;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(53, 215, 255, 0.08);
  border-radius: 7px;
  padding: 9px;
  background: rgba(53, 215, 255, 0.035);
}

.intel-row {
  grid-template-columns: minmax(130px, 1fr) auto minmax(120px, 0.8fr);
}

.intel-row span,
.camera-event-row span {
  color: #dff8ff;
  font-weight: 800;
}

.intel-row small,
.camera-event-row small,
.ip-card p,
.ip-card dd,
.ip-card dt,
.camera-device-card p,
.camera-device-card small {
  color: #8ba4bb;
}

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

.ip-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.ip-card dt {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ip-card dd {
  margin: 2px 0 0;
  color: #eaf8ff;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

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

.camera-event-row {
  grid-template-columns: 90px minmax(160px, 1fr) auto minmax(210px, 1fr);
}

.camera-event-row strong {
  color: var(--cyan);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 12px;
}

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

.handoff-card {
  align-content: start;
}

.handoff-card strong {
  color: #eaf8ff;
  font-size: 17px;
}

.handoff-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.handoff-card li {
  position: relative;
  padding-left: 14px;
  color: #9bb0c7;
  font-size: 12px;
  line-height: 1.35;
}

.handoff-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(53, 215, 255, 0.8);
  content: "";
}

.handoff-card small {
  color: #8ba4bb;
}

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

.is-hidden {
  display: none !important;
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.45);
  }
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -70;
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fallbackRoutePulse {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.58;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -7;
    opacity: 0.64;
  }
}

@keyframes fallbackNodePulse {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  18% {
    opacity: 0.86;
  }
  100% {
    opacity: 0;
    transform: scale(2.35);
  }
}

@keyframes satelliteSweep {
  0%,
  100% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(18deg);
  }
}

@keyframes satelliteSignal {
  0% {
    opacity: 0;
    transform: rotate(-28deg) scale(0.25);
  }
  22% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: rotate(-28deg) scale(1.28);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .analysys-vault-core::after,
  .analysys-vault-core.is-denied,
  .analysys-auth-sequence span.is-active::before,
  .analysys-safe-beam,
  .analysys-safe-lock i,
  .analysys-safe-signal span,
  .analysys-auth-console.is-verifying .analysys-safe-lock,
  .analysys-auth-console.is-granted .analysys-safe-handle,
  .analysys-auth-console.is-granted .analysys-safe-door,
  .analysys-auth-console.is-denied .analysys-vault-safe,
  .analysys-tab-panel.is-active,
  .analysys-coordination-detail article,
  .analysys-player-reticle.is-locked {
    animation: none !important;
  }

  .analysys-auth-console.is-granted .analysys-safe-handle {
    transform: translate(-50%, -50%) rotate(132deg);
  }

  .analysys-auth-console.is-granted .analysys-safe-door {
    opacity: 0.78;
    transform: perspective(600px) rotateY(-16deg);
  }

  .analysys-tabbar button,
  .analysys-vault-focus button,
  .analysys-coordination-focus button,
  .analysys-security-focus button,
  .analysys-player video,
  .analysys-player img,
  .analysys-player-reticle {
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1440px) {
  .ssc-topbar {
    grid-template-columns: minmax(220px, 250px) minmax(150px, 170px) minmax(220px, 1fr) minmax(0, 398px);
    gap: 14px;
  }

  .top-actions {
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
  }

  .top-actions .icon-button {
    width: 36px;
    height: 36px;
  }

  .admin-profile {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 44px;
    max-width: 172px;
    padding: 5px 8px;
  }

  .admin-profile > span:first-child {
    width: 30px;
    height: 30px;
  }

  .admin-profile small {
    display: none;
  }

  .clock-card {
    min-width: 100px;
    padding-left: 12px;
  }

  .clock-card strong {
    font-size: 17px;
    letter-spacing: 0.05em;
  }

  .dashboard-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .dashboard-topbar {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

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

  .operation-status-grid,
  .dashboard-ops-tabbar,
  .dashboard-runtime-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .ssc-app {
    grid-template-columns: 190px minmax(960px, 1fr);
  }

  .ssc-topbar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .dashboard-topbar {
    grid-template-columns: 1fr;
  }

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

  .owner-validation-grid,
  .reports-focus-strip,
  .agent-focus-strip,
  .assistant-focus-strip,
  .asset-focus-strip,
  .people-focus-strip,
  .monitoring-focus-strip,
  .incidents-focus-strip,
  .incident-focus-strip,
  .backup-focus-strip,
  .camera-focus-strip,
  .compliance-focus-strip,
  .email-focus-strip,
  .ip-focus-strip,
  .threat-focus-strip,
  .web-focus-strip,
  .settings-focus-strip,
  .audit-focus-strip,
  .settings-governance-grid,
  .admin-rotation-grid,
  .settings-mode-summary,
  .settings-gate-grid,
  .readiness-gate-summary,
  .readiness-lane-grid,
  .readiness-control-grid,
  .operation-status-header,
  .dashboard-ops-tabbar,
  .dashboard-runtime-row,
  .operation-status-grid,
  .dashboard-runtime-summary,
  .action-request-phase-grid,
  .action-request-grid,
  .dashboard-agent-summary,
  .findings-grid,
  .ports-grid,
  .backup-ops-grid,
  .monitoring-grid,
  .incident-command-grid,
  .incident-runbook,
  .incident-evidence-summary,
  .incident-evidence-grid,
  .locked-action-grid,
  .client-network-layout,
  .asset-server-grid,
  .operator-list-grid,
  .posture-card-grid,
  .posture-check-grid,
  .mail-domain-grid,
  .compliance-control-grid,
  .event-pipeline-grid,
  .intel-lists-grid,
  .ip-card-grid,
  .camera-device-grid,
  .camera-event-list,
  .handoff-card-grid,
  .agent-contract-grid,
  .agent-ops-grid,
  .module-tabbar,
  .analysys-tabbar,
  .analysys-gate-shell,
  .analysys-vault-cover,
  .analysys-cover-status-row,
  .analysys-vault-lanes,
  .analysys-command-matrix,
  .analysys-command-matrix > div:last-child,
  .analysys-vault-focus,
  .analysys-coordination-head,
  .analysys-coordination-focus,
  .analysys-coordination-summary,
  .analysys-coordination-summary-metrics,
  .analysys-coordination-metrics,
  .analysys-coordination-grid,
  .analysys-coordination-strip,
  .analysys-protocol-reference,
  .analysys-security-board,
  .analysys-security-focus,
  .analysys-security-gate-grid,
  .analysys-bridge-grid,
  .analysys-gate-grid,
  .analysys-workbench,
  .analysys-evidence-head,
  .analysys-documents-head,
  .analysys-documents-metrics,
  .analysys-readiness-panel,
  .analysys-readiness-checks,
  .analysys-intake-header,
  .analysys-intake-metrics,
  .analysys-player-toolbar,
  .analysys-tool-grid,
  .analysys-tool-section-grid,
  .analysys-format-row,
  .analysys-format-groups,
  .analysys-report-head,
  .analysys-report-summary,
  .analysys-vault-actions,
  .analysys-vault-action-buttons,
  .analysys-safe-grid {
    grid-template-columns: 1fr;
  }

  .analysys-workbench {
    grid-template-areas:
      "left"
      "center"
      "right"
      "comment";
  }

  .client-network-head,
  .client-network-metrics {
    grid-template-columns: 1fr;
  }

  .client-network-focus-head,
  .client-network-focus-grid {
    grid-template-columns: 1fr;
  }

  .client-network-stage {
    min-height: 340px;
  }

  .client-network-footer {
    display: grid;
    justify-items: start;
  }

  .angel-voice-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-ops-tabbar {
    grid-template-columns: 1fr;
  }

  .analysys-network-stage {
    min-height: 240px;
  }

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

  .analysys-network-legend {
    display: grid;
    justify-items: start;
  }

  .analysys-service-signals {
    grid-template-columns: 1fr;
  }

  .analysys-player {
    min-height: 420px;
    aspect-ratio: auto;
  }

  .analysys-player-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .analysys-player-actions {
    flex-wrap: wrap;
  }

  .analysys-player-actions-primary {
    margin-left: 0;
  }

  .analysys-result-monitor-grid,
  .analysys-command-history,
  .analysys-command-input-row {
    grid-template-columns: 1fr;
  }

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

  .analysys-properties-signals {
    grid-template-columns: 1fr;
  }

  .analysys-commentary-line,
  .analysys-properties-head {
    display: grid;
  }

  .analysys-properties-grid {
    grid-template-columns: 1fr;
  }

  .analysys-player-actions,
  .analysys-player-actions-secondary {
    justify-content: flex-start;
  }

  .analysys-protocol-reference > div:last-child {
    justify-items: start;
    text-align: left;
  }

  .owner-validation-card {
    grid-template-columns: 1fr;
  }

  .settings-gate-row {
    grid-template-columns: 1fr;
  }

  .readiness-control-row {
    grid-template-columns: 1fr;
  }

  .action-request-card dl div {
    grid-template-columns: 1fr;
  }

  .dashboard-agent-card {
    grid-template-columns: 1fr;
  }

  .incident-command-row {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .incident-timeline-item {
    grid-template-columns: 1fr;
  }

  .incident-command-row .ops-pill,
  .incident-command-row small {
    grid-column: 2;
  }

  .report-ops-row {
    grid-template-columns: 1fr;
  }

  .mail-domain-row,
  .posture-check-row,
  .intel-row,
  .camera-event-row {
    grid-template-columns: 1fr;
  }
}

@keyframes clientNetworkSweep {
  to {
    transform: translateX(100%);
  }
}

@keyframes clientNetworkFlow {
  to {
    stroke-dashoffset: -22;
  }
}

@keyframes clientNetworkPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes clientNetworkCoreBreath {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.985);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes clientNetworkRing {
  0% {
    transform: scale(0.92);
    opacity: 0.44;
  }

  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

@keyframes clientNetworkNodeBlink {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.66;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes clientNetworkAlertBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.32;
  }
}

@keyframes analysysNetworkFlow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -48;
  }
}

@keyframes analysysNetworkPulse {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

@keyframes analysysCoreBreath {
  0%,
  100% {
    box-shadow:
      inset 0 0 28px rgba(53, 215, 255, 0.18),
      0 0 24px rgba(53, 215, 255, 0.18);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow:
      inset 0 0 36px rgba(53, 215, 255, 0.24),
      0 0 42px rgba(53, 215, 255, 0.28);
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes analysysCoreRing {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  20% {
    opacity: 0.45;
  }

  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes analysysNodeBlink {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes analysysSceneRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes analysysSceneRotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes analysysScenePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes analysysMonitorSweep {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes analysysSignalBreath {
  0%,
  100% {
    opacity: 0.82;
    filter: saturate(1);
  }

  50% {
    opacity: 1;
    filter: saturate(1.18);
  }
}

@keyframes analysysTickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes analysysServiceBlink {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes analysysProgressTravel {
  0% {
    filter: saturate(0.96);
  }

  50% {
    filter: saturate(1.18);
  }

  100% {
    filter: saturate(0.96);
  }
}

/* SSC Resolution Center */
.resolution-page {
  display: grid;
  gap: 14px;
  padding: 18px 20px 28px;
}

.resolution-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  background:
    linear-gradient(105deg, rgba(6, 44, 66, 0.92), rgba(8, 20, 42, 0.96) 54%, rgba(21, 18, 54, 0.92)),
    var(--panel);
  box-shadow: var(--shadow);
}

.resolution-hero h2 {
  margin: 3px 0 8px;
  font-size: 26px;
  letter-spacing: 0;
}

.resolution-hero p:last-child {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.resolution-hero-actions,
.resolution-safety-lock,
.resolution-gate-copy,
.resolution-action-buttons {
  display: flex;
  align-items: center;
  gap: 9px;
}

.resolution-hero-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.resolution-safety-lock {
  min-height: 34px;
  border: 1px solid rgba(66, 246, 157, 0.3);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green);
  background: rgba(66, 246, 157, 0.07);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.resolution-safety-lock svg,
.resolution-gate-copy svg,
.resolution-empty svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.resolution-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(5, 18, 32, 0.74);
  text-align: left;
}

.resolution-tabs button:hover,
.resolution-tabs button.is-active {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(11, 42, 64, 0.88);
}

.resolution-tabs strong {
  display: grid;
  min-width: 25px;
  min-height: 25px;
  place-items: center;
  border-radius: 999px;
  color: var(--cyan-soft);
  background: rgba(53, 215, 255, 0.12);
}

.resolution-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
  gap: 12px;
  align-items: start;
}

.resolution-list,
.resolution-detail {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.resolution-list {
  display: grid;
  align-content: start;
}

.resolution-alert {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  width: 100%;
  min-height: 76px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--text);
  background: transparent;
  text-align: left;
}

.resolution-alert:last-child {
  border-bottom: 0;
}

.resolution-alert:hover {
  background: rgba(53, 215, 255, 0.06);
}

.resolution-alert.is-selected {
  background:
    linear-gradient(90deg, rgba(53, 215, 255, 0.18), rgba(47, 140, 255, 0.04)),
    rgba(5, 24, 42, 0.84);
}

.resolution-severity-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 12px currentColor;
}

.resolution-alert.is-critical .resolution-severity-dot {
  color: var(--red);
  background: var(--red);
}

.resolution-alert.is-high .resolution-severity-dot {
  color: var(--orange);
  background: var(--orange);
}

.resolution-alert.is-low .resolution-severity-dot {
  color: var(--cyan);
  background: var(--cyan);
}

.resolution-alert-copy {
  min-width: 0;
}

.resolution-alert-copy strong,
.resolution-alert-copy small {
  display: block;
  overflow-wrap: anywhere;
}

.resolution-alert-copy strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.resolution-alert-copy small {
  color: var(--muted);
  line-height: 1.35;
}

.resolution-alert-status,
.resolution-level {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--cyan-soft);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.resolution-level.is-critical {
  color: var(--red);
}

.resolution-level.is-high {
  color: var(--orange);
}

.resolution-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.resolution-detail-head > div > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.resolution-detail-head h3 {
  margin: 5px 0 6px;
  font-size: 19px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.resolution-detail-head small {
  color: var(--muted);
}

.resolution-explanation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.resolution-explanation-grid article {
  min-width: 0;
  padding: 18px;
}

.resolution-explanation-grid article + article {
  border-left: 1px solid var(--line);
}

.resolution-explanation-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
}

.resolution-explanation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.resolution-note {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.resolution-note span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.resolution-note textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  color: var(--text);
  background: rgba(1, 9, 19, 0.76);
  font: inherit;
  line-height: 1.4;
}

.resolution-note textarea:focus {
  border-color: var(--cyan);
  outline: 2px solid rgba(53, 215, 255, 0.16);
}

.resolution-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
}

.resolution-gate-copy {
  color: var(--green);
  font-size: 11px;
  line-height: 1.4;
}

.resolution-action-buttons {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.resolution-result,
.resolution-error {
  margin: 0 18px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(2, 12, 24, 0.74);
  font-size: 11px;
  line-height: 1.45;
}

.resolution-error {
  margin: 0;
  border-color: rgba(255, 79, 95, 0.42);
  color: #ffd3d7;
  background: rgba(255, 79, 95, 0.09);
}

.resolution-empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.resolution-empty strong {
  color: var(--text);
}

.resolution-empty.is-detail {
  min-height: 420px;
}

@media (max-width: 1420px) {
  .resolution-layout {
    grid-template-columns: minmax(300px, 0.9fr) minmax(460px, 1.1fr);
  }

  .resolution-explanation-grid {
    grid-template-columns: 1fr;
  }

  .resolution-explanation-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .resolution-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .resolution-action-buttons {
    justify-content: flex-start;
  }
}

/* Unified notification inbox: read-only bridge to the Resolution Center. */
.notification-popover {
  position: absolute;
  z-index: 75;
  top: calc(100% + 12px);
  right: 0;
  width: min(500px, calc(100vw - 260px));
  overflow: hidden;
  border: 1px solid rgba(53, 215, 255, 0.34);
  border-radius: 6px;
  background: rgba(2, 12, 24, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56), 0 0 30px rgba(53, 215, 255, 0.08);
}

.notification-popover > header,
.notification-popover > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.notification-popover > header {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(53, 215, 255, 0.09), rgba(119, 91, 255, 0.06));
}

.notification-popover > header span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.notification-popover > header strong {
  color: var(--text);
  font-size: 15px;
}

.notification-popover > header button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: rgba(1, 9, 19, 0.7);
  font-size: 20px;
}

.notification-popover-head-actions {
  display: flex;
  gap: 7px;
}

.notification-popover-list {
  display: grid;
  max-height: 480px;
  overflow-y: auto;
}

.notification-popover-item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  border: 0;
  border-bottom: 1px solid rgba(53, 215, 255, 0.1);
  padding: 10px 16px;
  color: inherit;
  background: transparent;
  text-align: left;
}

.notification-popover-item:hover,
.notification-popover-item:focus-visible {
  outline: none;
  background: rgba(53, 215, 255, 0.07);
}

.notification-popover-item strong,
.notification-popover-item small {
  display: block;
  overflow-wrap: anywhere;
}

.notification-popover-item strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 12px;
}

.notification-popover-item small {
  color: var(--muted);
  font-size: 10px;
}

.notification-popover-item i {
  color: var(--cyan);
  font-size: 20px;
  font-style: normal;
}

.notification-popover-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 211, 106, 0.72);
}

.notification-popover-item.is-critical .notification-popover-dot {
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 79, 95, 0.8);
}

.notification-popover-item.is-high .notification-popover-dot {
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 178, 71, 0.74);
}

.notification-popover-item.is-low .notification-popover-dot {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(53, 215, 255, 0.72);
}

.notification-popover-dot.is-critical {
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 79, 95, 0.8);
}

.notification-popover-dot.is-high {
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 178, 71, 0.74);
}

.notification-popover-dot.is-low {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(53, 215, 255, 0.72);
}

.notification-popover-empty {
  margin: 0;
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
}

.notification-popover > footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.notification-popover > footer button {
  border: 1px solid rgba(53, 215, 255, 0.35);
  border-radius: 4px;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(53, 215, 255, 0.08);
  font-weight: 800;
}

.notification-popover-detail {
  display: grid;
  max-height: min(720px, calc(100vh - 150px));
  overflow-y: auto;
}

.notification-detail-title {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.notification-detail-title h3 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 17px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.notification-detail-title small {
  color: var(--muted);
  font-size: 10px;
}

.notification-popover-detail > article {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(53, 215, 255, 0.1);
}

.notification-popover-detail > article strong,
.notification-popover-detail > label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.notification-popover-detail > article p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.notification-popover-detail > label {
  display: grid;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.notification-popover-detail textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 10px;
  color: var(--text);
  background: rgba(1, 9, 19, 0.78);
  font: inherit;
  line-height: 1.4;
}

.notification-detail-safety {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px 16px;
  color: var(--green);
  font-size: 10px;
}

.notification-detail-safety svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
}

.notification-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 16px 14px;
}

.notification-detail-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text);
  background: rgba(7, 22, 39, 0.72);
  font-weight: 800;
}

.notification-detail-actions button.is-primary {
  border-color: rgba(53, 215, 255, 0.44);
  background: linear-gradient(90deg, rgba(53, 215, 255, 0.16), rgba(119, 91, 255, 0.16));
}

.notification-detail-result {
  margin: 0 16px 16px;
  border: 1px solid rgba(53, 215, 255, 0.2);
  border-radius: 5px;
  padding: 10px;
  color: var(--muted);
  background: rgba(1, 9, 19, 0.68);
  font-size: 10px;
  line-height: 1.4;
}

@media (max-width: 1280px) {
  .notification-popover {
    position: fixed;
    top: 92px;
    right: 18px;
    width: min(500px, calc(100vw - 36px));
  }
}

.system-status.is-warning strong,
.system-status.is-warning small {
  color: var(--orange);
}

.system-status.is-warning i {
  background: var(--orange);
  box-shadow: 0 0 15px var(--orange);
}

.system-status.is-critical strong,
.system-status.is-critical small,
.system-status.is-offline strong,
.system-status.is-offline small {
  color: var(--red);
}

.system-status.is-critical i,
.system-status.is-offline i {
  background: var(--red);
  box-shadow: 0 0 15px var(--red);
}

.notification-popover-error {
  display: grid;
  gap: 4px;
  margin: 12px 14px 0;
  border: 1px solid rgba(255, 79, 95, 0.42);
  border-radius: 6px;
  padding: 10px 12px;
  color: #ffd3d7;
  background: rgba(255, 79, 95, 0.1);
  font-size: 11px;
  line-height: 1.45;
}

.notification-popover-error span {
  color: #ffb8bf;
}

@media (max-width: 1180px) {
  html {
    min-width: 0;
  }

  body {
    overflow-x: hidden;
  }

  .ssc-app {
    grid-template-columns: 76px minmax(0, 1fr);
    width: 100%;
  }

  .ssc-sidebar {
    min-width: 0;
  }

  .ssc-logo {
    height: 76px;
  }

  .ssc-logo-mark {
    font-size: 22px;
  }

  .nav-item {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 48px;
    padding: 0;
  }

  .nav-item > span,
  .assistant-card {
    display: none;
  }

  .ssc-main {
    width: 100%;
    min-width: 0;
    padding: 0 10px 18px;
  }

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

  .global-search,
  .top-actions,
  .brand-lockup,
  .system-status {
    min-width: 0;
  }

  .resolution-page {
    padding: 14px 0 24px;
  }

  .resolution-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .resolution-hero-actions {
    justify-content: flex-start;
  }

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

  .resolution-list,
  .resolution-detail {
    min-width: 0;
  }

  .notification-popover {
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 88px;
    width: auto;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }
}

@media (max-width: 640px) {
  .ssc-app {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .ssc-logo {
    height: 62px;
  }

  .ssc-logo-mark {
    font-size: 17px;
  }

  .nav-item {
    min-height: 44px;
  }

  .ssc-main {
    padding-right: 7px;
    padding-left: 7px;
  }

  .ssc-topbar {
    gap: 10px;
    padding: 12px 0;
  }

  .brand-lockup h1 {
    font-size: 15px;
  }

  .global-search {
    grid-template-columns: 22px minmax(0, 1fr);
    padding: 0 10px;
  }

  .global-search kbd,
  .clock-card,
  .top-actions > .icon-button:nth-of-type(3) {
    display: none;
  }

  .top-actions {
    flex-wrap: wrap;
  }

  .admin-profile {
    max-width: min(190px, calc(100vw - 150px));
  }

  .resolution-hero {
    min-height: 0;
    padding: 16px;
  }

  .resolution-hero h2 {
    font-size: 22px;
  }

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

  .dashboard-grid,
  .dashboard-topbar,
  .analytics-grid,
  .kpi-grid,
  .operation-status-header,
  .operation-status-grid,
  .dashboard-ops-tabbar,
  .dashboard-runtime-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-grid > *,
  .analytics-grid > *,
  .kpi-grid > *,
  .operation-status-header > * {
    min-width: 0;
  }

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

  .cesium-infoBox {
    right: 8px !important;
    left: auto !important;
    max-width: calc(100% - 16px) !important;
  }

  .resolution-alert {
    grid-template-columns: 9px minmax(0, 1fr);
  }

  .resolution-alert-status {
    grid-column: 2;
    justify-self: start;
  }

  .resolution-detail-head {
    flex-direction: column;
  }

  .resolution-action-buttons,
  .resolution-action-buttons button,
  .notification-detail-actions {
    width: 100%;
  }

  .notification-detail-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .notification-popover {
    right: 7px;
    left: 65px;
  }
}
