:root {
  --bg-app: #eff4ff;
  --bg-soft: #e8f0ff;
  --line: #d6e0f6;
  --line-strong: #bfcef0;
  --text: #14213f;
  --text-soft: #6b7898;
  --text-muted: #8a97b5;
  --brand: #27a9ff;
  --brand-strong: #8a3cff;
  --brand-soft: #ebf2ff;
  --brand-mid: #426bff;
  --mint: #4fd9ff;
  --amber: #f0a93c;
  --danger: #ff6f76;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-dark: rgba(7, 17, 36, 0.96);
  --surface-dark-soft: rgba(11, 24, 49, 0.94);
  --radius-2xl: 30px;
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-xl: 0 30px 80px rgba(31, 49, 94, 0.14);
  --shadow-lg: 0 18px 44px rgba(44, 64, 120, 0.1);
  --shadow-md: 0 12px 28px rgba(27, 43, 89, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(39, 169, 255, 0.16), transparent 18%),
    radial-gradient(circle at left center, rgba(138, 60, 255, 0.1), transparent 16%),
    linear-gradient(180deg, #f8fbff 0%, #edf3ff 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  transition: background 220ms ease;
}

.app-shell.guest-mode {
  background:
    radial-gradient(circle at top left, rgba(60, 120, 255, 0.18), transparent 20%),
    radial-gradient(circle at bottom right, rgba(112, 68, 255, 0.16), transparent 22%),
    linear-gradient(180deg, #020714 0%, #040b1b 55%, #020611 100%);
}

.app-shell.authenticated-mode {
  background:
    radial-gradient(circle at top right, rgba(39, 169, 255, 0.12), transparent 18%),
    radial-gradient(circle at 15% 30%, rgba(138, 60, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #ecf3ff 100%);
}

.app-shell.guest-mode .bg-grid {
  display: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 152, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 152, 214, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.app {
  position: relative;
  z-index: 1;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 20px;
}

.app-shell.guest-mode .app {
  width: 100%;
  max-width: none;
  padding: 0;
}

.loading-shell {
  min-height: calc(100vh - 40px);
  display: grid;
  place-content: center;
  gap: 16px;
  color: #d7e5ff;
  text-align: center;
}

.boot-fallback {
  padding: 28px;
}

.loading-shell small {
  display: block;
  max-width: 420px;
  color: rgba(186, 202, 236, 0.78);
  line-height: 1.6;
}

.app-shell.authenticated-mode .loading-shell {
  color: var(--text);
}

.app-shell.authenticated-mode .loading-shell small {
  color: var(--text-soft);
}

.app-shell.boot-failed .loading-shell,
.loading-shell.error {
  color: #ffe9ec;
}

.app-shell.boot-failed .loading-shell small,
.loading-shell.error small {
  color: rgba(255, 216, 222, 0.86);
}

.loading-pulse {
  width: 82px;
  height: 82px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.8), rgba(68, 113, 255, 0.1) 56%, transparent 57%);
  box-shadow: 0 0 0 18px rgba(72, 111, 255, 0.08), 0 0 60px rgba(92, 74, 255, 0.18);
}

.landing-shell {
  min-height: calc(100vh - 40px);
  display: grid;
  place-items: center;
}

.landing-stage {
  position: relative;
  width: min(100%, 1360px);
  min-height: 760px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 28px;
  border-radius: 36px;
  border: 1px solid rgba(104, 144, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(6, 16, 34, 0.96), rgba(5, 12, 27, 0.96)),
    linear-gradient(180deg, rgba(61, 116, 255, 0.08), transparent 24%);
  box-shadow: 0 40px 120px rgba(2, 8, 25, 0.46);
  overflow: hidden;
}

.landing-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-orbit {
  position: absolute;
  border: 1px solid rgba(98, 162, 255, 0.14);
  border-radius: 999px;
}

.orbit-a {
  width: 720px;
  height: 280px;
  top: 8%;
  left: 36%;
  transform: rotate(18deg);
}

.orbit-b {
  width: 640px;
  height: 230px;
  top: 22%;
  left: 40%;
  transform: rotate(-16deg);
}

.orbit-c {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 6%;
  border-color: rgba(123, 79, 255, 0.14);
}

.landing-particles span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95), rgba(77, 153, 255, 0.4));
  box-shadow: 0 0 22px rgba(52, 129, 255, 0.7);
}

.landing-particles span:nth-child(1) { top: 18%; left: 54%; }
.landing-particles span:nth-child(2) { top: 28%; left: 76%; }
.landing-particles span:nth-child(3) { top: 50%; left: 68%; }
.landing-particles span:nth-child(4) { top: 64%; left: 84%; }
.landing-particles span:nth-child(5) { top: 34%; left: 90%; }

.landing-copy,
.login-card {
  position: relative;
  z-index: 1;
}

.landing-copy {
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 18px 8px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  width: 104px;
  height: 104px;
  filter: drop-shadow(0 18px 32px rgba(51, 119, 255, 0.25));
}

.brand-copy {
  display: grid;
  gap: 6px;
}

.brand-copy strong {
  color: #f9fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: 0.14em;
  line-height: 0.9;
}

.brand-copy span {
  color: #53a9ff;
  font-size: 1.15rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
}

.landing-copy-block {
  max-width: 720px;
}

.landing-copy-block h1 {
  margin: 0 0 10px;
  color: #f4f8ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.06em;
}

.landing-copy-block p {
  margin: 0;
  color: #96a9cf;
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.landing-highlights article {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(143, 179, 255, 0.12);
  backdrop-filter: blur(14px);
}

.landing-highlights strong {
  display: block;
  color: #f5f9ff;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.landing-highlights span,
.login-card-head p,
.login-footnote {
  color: #8ea2cb;
  line-height: 1.64;
}

.login-card {
  align-self: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(7, 18, 39, 0.86);
  border: 1px solid rgba(132, 171, 255, 0.12);
  box-shadow: 0 24px 70px rgba(2, 8, 24, 0.42);
  backdrop-filter: blur(16px);
}

.login-card-head small,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5cb7ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.login-card-head h2 {
  margin: 12px 0 8px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.stack-form {
  display: grid;
  gap: 16px;
}

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

.field span {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.guest-mode .field span {
  color: #b4c3e3;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.guest-mode .field input,
.guest-mode .field select,
.guest-mode .field textarea {
  background: rgba(11, 24, 48, 0.85);
  border-color: rgba(124, 164, 255, 0.14);
  color: #eef4ff;
}

.field textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(68, 114, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(80, 117, 255, 0.12);
}

.primary-button,
.ghost-button,
.segment-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.primary-button:hover,
.ghost-button:hover,
.segment-button:hover,
.sidebar-link:hover,
.client-list-card:hover,
.bank-profile-card:hover,
.glass-icon-button:hover {
  transform: translateY(-1px);
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 16px 28px rgba(69, 97, 255, 0.24);
}

.ghost-button {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.full-width {
  width: 100%;
}

.form-alert,
.inline-feedback {
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-alert,
.inline-feedback.error {
  color: #ffe9ec;
  background: rgba(255, 111, 118, 0.16);
  border: 1px solid rgba(255, 111, 118, 0.2);
}

.inline-feedback.success {
  color: #145d49;
  background: rgba(33, 212, 160, 0.14);
  border: 1px solid rgba(33, 212, 160, 0.18);
}

.login-footnote {
  margin-top: 18px;
  font-size: 0.9rem;
}

.zyntra-login-stage {
  grid-template-columns: minmax(0, 1.12fr) 460px;
}

.accent-copy {
  background: linear-gradient(135deg, #4ea2ff, #705dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.login-highlights {
  max-width: 860px;
}

.login-preview-shell {
  display: grid;
  gap: 18px;
}

.login-preview-window {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  min-height: 420px;
  border-radius: 32px;
  border: 1px solid rgba(110, 153, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(9, 20, 43, 0.98), rgba(8, 16, 34, 0.98)),
    linear-gradient(135deg, rgba(84, 121, 255, 0.08), transparent 36%);
  box-shadow: 0 32px 90px rgba(1, 8, 27, 0.5);
  overflow: hidden;
}

.login-preview-sidebar {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  padding: 24px 18px;
  background: linear-gradient(180deg, rgba(8, 19, 42, 0.98), rgba(7, 16, 34, 0.98));
  border-right: 1px solid rgba(116, 150, 228, 0.1);
}

.login-preview-sidebar-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(54, 116, 255, 0.9), rgba(111, 73, 255, 0.94));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(44, 88, 255, 0.24);
}

.login-preview-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.login-preview-nav span {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  color: rgba(194, 208, 242, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.login-preview-nav span.active {
  background: rgba(64, 115, 255, 0.18);
  color: #f6f9ff;
}

.login-preview-main {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.login-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.login-preview-metric {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(116, 145, 219, 0.12);
  background: rgba(17, 27, 48, 0.9);
  display: grid;
  gap: 8px;
}

.login-preview-metric small,
.login-preview-status span,
.login-network-chip span {
  color: rgba(182, 196, 231, 0.74);
}

.login-preview-metric strong {
  color: #f6f9ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.login-preview-metric.blue {
  box-shadow: inset 0 0 0 1px rgba(72, 118, 255, 0.1);
}

.login-preview-metric.mint {
  box-shadow: inset 0 0 0 1px rgba(62, 202, 158, 0.12);
}

.login-preview-metric.violet {
  box-shadow: inset 0 0 0 1px rgba(116, 73, 255, 0.12);
}

.login-preview-metric span {
  color: #7dd8b8;
  font-size: 0.84rem;
  font-weight: 700;
}

.login-preview-chart,
.login-preview-status,
.login-network-chip {
  border-radius: 24px;
  border: 1px solid rgba(116, 145, 219, 0.12);
  background: rgba(12, 20, 37, 0.88);
}

.login-preview-chart {
  padding: 18px 20px;
  display: grid;
  gap: 16px;
}

.login-preview-chart-head,
.login-inline-actions,
.landing-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.login-preview-chart-head strong,
.login-preview-status strong,
.login-network-chip strong,
.login-security-note strong {
  color: #f6f9ff;
}

.login-preview-chart-head span {
  color: #8ea3cc;
  font-size: 0.88rem;
}

.login-preview-chart-line {
  min-height: 158px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
}

.login-preview-chart-line span {
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, rgba(88, 129, 255, 0.24), rgba(100, 87, 255, 0.92));
  box-shadow: 0 0 0 1px rgba(110, 126, 255, 0.08);
}

.login-preview-chart-line span:nth-child(1) { height: 46%; }
.login-preview-chart-line span:nth-child(2) { height: 62%; }
.login-preview-chart-line span:nth-child(3) { height: 55%; }
.login-preview-chart-line span:nth-child(4) { height: 78%; }
.login-preview-chart-line span:nth-child(5) { height: 64%; }
.login-preview-chart-line span:nth-child(6) { height: 88%; }

.login-preview-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.75fr));
  gap: 14px;
}

.login-preview-status {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.login-preview-status.compact strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.login-network-chip {
  max-width: 360px;
  padding: 18px 20px;
  box-shadow: 0 24px 60px rgba(20, 54, 165, 0.2);
}

.landing-footer-strip {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(129, 157, 226, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(201, 214, 246, 0.88);
  font-size: 0.92rem;
}

.landing-footer-strip span {
  position: relative;
  padding-right: 18px;
}

.landing-footer-strip span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 1px;
  height: 18px;
  background: rgba(130, 149, 200, 0.22);
  transform: translateY(-50%);
}

.login-input-shell {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(124, 164, 255, 0.14);
  background: rgba(11, 24, 48, 0.85);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.login-input-shell:focus-within {
  border-color: rgba(68, 114, 255, 0.54);
  box-shadow: 0 0 0 4px rgba(80, 117, 255, 0.12);
}

.login-input-icon {
  width: 18px;
  height: 18px;
  color: rgba(160, 180, 227, 0.88);
}

.login-input-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-input-shell input {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.login-input-shell input:focus {
  box-shadow: none;
}

.login-toggle-button,
.login-link-button {
  border: 0;
  background: transparent;
  color: #65abff;
  font-weight: 700;
}

.login-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b8c7e6;
}

.login-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #4f7dff;
}

.login-submit-button {
  margin-top: 4px;
}

.login-divider {
  position: relative;
  display: grid;
  place-items: center;
  margin: 4px 0;
  color: rgba(152, 171, 214, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.login-divider::before,
.login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 1px;
  background: rgba(133, 160, 221, 0.16);
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-sso-button {
  background: rgba(9, 19, 38, 0.46);
  border-color: rgba(88, 127, 212, 0.22);
  color: #edf2ff;
}

.login-security-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(124, 164, 255, 0.12);
  display: grid;
  gap: 6px;
}

.landing-shell.zyntra-auth-shell {
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(circle at 16% 22%, rgba(37, 99, 235, 0.2), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(56, 189, 248, 0.16), transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(109, 93, 251, 0.18), transparent 30%),
    linear-gradient(135deg, #020817 0%, #07111f 45%, #0b1220 100%);
}

.zyntra-auth-stage {
  position: relative;
  width: min(100%, 1520px);
  min-height: calc(100vh - 48px);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(420px, 540px) minmax(0, 1fr);
  gap: 24px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.92);
  background: linear-gradient(180deg, rgba(4, 11, 23, 0.96), rgba(4, 10, 20, 0.98));
  box-shadow: 0 38px 120px rgba(1, 7, 18, 0.58);
}

.zyntra-auth-backdrop,
.zyntra-auth-grid,
.zyntra-auth-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zyntra-auth-grid {
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0.28));
}

.zyntra-auth-glow {
  filter: blur(24px);
}

.zyntra-auth-glow.glow-a {
  inset: auto auto 8% -4%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0));
}

.zyntra-auth-glow.glow-b {
  inset: -10% -2% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 93, 251, 0.24), rgba(109, 93, 251, 0));
}

.zyntra-auth-login-panel,
.zyntra-auth-visual-panel {
  position: relative;
  z-index: 1;
}

.zyntra-auth-login-panel {
  display: flex;
  align-items: stretch;
}

.login-card.zyntra-auth-login-card {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 38px 38px 30px;
  border-radius: 30px;
  display: grid;
  align-content: start;
  gap: 26px;
  background:
    linear-gradient(180deg, rgba(8, 17, 33, 0.9), rgba(7, 14, 28, 0.92)),
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), transparent 28%);
  border: 1px solid rgba(30, 41, 59, 0.96);
  box-shadow: 0 24px 72px rgba(1, 7, 18, 0.44);
  backdrop-filter: blur(24px);
}

.zyntra-auth-brand {
  padding-bottom: 8px;
}

.zyntra-auth-brand .brand-lockup {
  gap: 18px;
}

.zyntra-auth-brand .brand-mark {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 16px 28px rgba(37, 99, 235, 0.2));
}

.zyntra-auth-brand .brand-copy strong {
  font-size: clamp(2.7rem, 5vw, 4rem);
  letter-spacing: 0.12em;
}

.zyntra-auth-brand .brand-copy span {
  color: #38bdf8;
  font-size: 0.94rem;
  letter-spacing: 0.48em;
}

.login-card-head.zyntra-auth-login-head {
  display: grid;
  gap: 6px;
}

.login-card-head.zyntra-auth-login-head h2 {
  margin: 0;
  font-size: clamp(2rem, 2.2vw, 2.6rem);
  line-height: 1.02;
}

.login-card-head.zyntra-auth-login-head p {
  margin: 0;
  font-size: 1.02rem;
  color: #94a3b8;
}

.stack-form.zyntra-auth-form {
  gap: 18px;
}

.field.zyntra-auth-field {
  gap: 10px;
}

.field.zyntra-auth-field > span {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 700;
}

.login-input-shell.zyntra-auth-input-shell {
  min-height: 62px;
  padding: 0 18px;
  gap: 14px;
  border-radius: 18px;
  background: rgba(7, 14, 28, 0.9);
  border: 1px solid rgba(30, 41, 59, 0.96);
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.05);
}

.login-input-shell.zyntra-auth-input-shell:focus-within {
  border-color: rgba(37, 99, 235, 0.84);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(148, 163, 184, 0.08);
}

.zyntra-auth-input-shell .login-input-icon {
  color: rgba(148, 163, 184, 0.92);
}

.zyntra-auth-input-shell input {
  color: #f8fafc;
  font-size: 1rem;
}

.zyntra-auth-input-shell input::placeholder {
  color: #64748b;
}

.login-toggle-button.zyntra-auth-toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 10px;
  color: #94a3b8;
  transition: background 160ms ease, color 160ms ease;
}

.login-toggle-button.zyntra-auth-toggle:hover {
  background: rgba(37, 99, 235, 0.12);
  color: #e2e8f0;
}

.login-toggle-button.zyntra-auth-toggle svg {
  width: 18px;
  height: 18px;
}

.login-inline-actions.zyntra-auth-inline-actions {
  padding-top: 2px;
}

.login-checkbox.zyntra-auth-checkbox {
  color: #cbd5e1;
  font-weight: 600;
}

.login-checkbox.zyntra-auth-checkbox input {
  accent-color: #2563eb;
}

.login-link-button.zyntra-auth-link {
  color: #38bdf8;
}

.login-link-button.zyntra-auth-link:hover {
  color: #7dd3fc;
}

.primary-button.zyntra-auth-submit {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 20%, #6d5dfb 100%);
  box-shadow: 0 24px 40px rgba(37, 99, 235, 0.28);
}

.primary-button.zyntra-auth-submit:hover {
  box-shadow: 0 28px 44px rgba(37, 99, 235, 0.34);
}

.zyntra-auth-submit-arrow {
  font-size: 1.34rem;
  line-height: 1;
}

.login-divider.zyntra-auth-divider {
  margin: 6px 0 2px;
  color: #64748b;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.98rem;
  font-weight: 500;
}

.login-divider.zyntra-auth-divider::before,
.login-divider.zyntra-auth-divider::after {
  width: calc(50% - 84px);
  background: rgba(30, 41, 59, 0.94);
}

.ghost-button.zyntra-auth-sso {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 18px;
  background: rgba(6, 12, 24, 0.56);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: none;
  color: #f8fafc;
}

.ghost-button.zyntra-auth-sso:hover {
  border-color: rgba(56, 189, 248, 0.38);
  background: rgba(8, 16, 31, 0.82);
}

.zyntra-auth-google-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(109, 93, 251, 0.18));
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 800;
}

.login-footnote.zyntra-auth-footnote {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(30, 41, 59, 0.9);
  color: #64748b;
}

.zyntra-auth-visual-panel {
  padding: 34px 34px 30px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  grid-template-areas:
    "copy art"
    "status status";
  gap: 24px;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(3, 12, 29, 0.9), rgba(3, 9, 20, 0.94)),
    radial-gradient(circle at 88% 14%, rgba(37, 99, 235, 0.08), transparent 26%);
  border: 1px solid rgba(30, 41, 59, 0.94);
}

.zyntra-auth-copy {
  grid-area: copy;
  display: grid;
  align-content: start;
  gap: 26px;
  padding-right: 6px;
}

.zyntra-auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #38bdf8;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.zyntra-auth-kicker-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  color: currentColor;
}

.zyntra-auth-kicker-icon svg {
  width: 18px;
  height: 18px;
}

.zyntra-auth-copy-block {
  max-width: 620px;
}

.zyntra-auth-copy-block h1 {
  margin: 0;
  color: #f8fafc;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.zyntra-auth-copy-block h1 span {
  color: #38bdf8;
}

.zyntra-auth-copy-block p {
  max-width: 580px;
  margin: 22px 0 0;
  color: #94a3b8;
  font-size: 1.08rem;
  line-height: 1.76;
}

.zyntra-auth-feature-list {
  display: grid;
  gap: 16px;
}

.zyntra-auth-feature-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.zyntra-auth-feature-item strong {
  display: block;
  margin-bottom: 6px;
  color: #f8fafc;
  font-size: 1.16rem;
}

.zyntra-auth-feature-item span:last-child {
  color: #94a3b8;
  line-height: 1.66;
}

.zyntra-auth-feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(30, 41, 59, 0.9);
  background: rgba(6, 12, 24, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.zyntra-auth-feature-icon svg {
  width: 23px;
  height: 23px;
}

.zyntra-auth-feature-icon.blue {
  color: #38bdf8;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.2), rgba(6, 12, 24, 0.88));
}

.zyntra-auth-feature-icon.green {
  color: #22c55e;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.18), rgba(6, 12, 24, 0.88));
}

.zyntra-auth-feature-icon.violet {
  color: #a78bfa;
  background: linear-gradient(180deg, rgba(109, 93, 251, 0.18), rgba(6, 12, 24, 0.88));
}

.zyntra-auth-feature-icon.amber {
  color: #f59e0b;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(6, 12, 24, 0.88));
}

.zyntra-auth-art-panel {
  grid-area: art;
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.88);
  background:
    radial-gradient(circle at 58% 56%, rgba(37, 99, 235, 0.22), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(56, 189, 248, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(3, 10, 21, 0.86), rgba(2, 8, 18, 0.94));
}

.zyntra-auth-art-grid,
.zyntra-auth-art-lines,
.zyntra-auth-zeus-card,
.zyntra-auth-z-wrap,
.zyntra-auth-node {
  position: absolute;
}

.zyntra-auth-art-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.26;
}

.zyntra-auth-art-lines {
  inset: 0;
}

.zyntra-auth-art-lines span {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.14);
}

.zyntra-auth-art-lines .line-a {
  width: 540px;
  height: 540px;
  right: -70px;
  top: -96px;
}

.zyntra-auth-art-lines .line-b {
  width: 420px;
  height: 420px;
  right: 40px;
  top: 28px;
}

.zyntra-auth-art-lines .line-c {
  width: 520px;
  height: 260px;
  left: 120px;
  bottom: 24px;
}

.zyntra-auth-art-lines .line-d {
  width: 720px;
  height: 360px;
  left: -140px;
  bottom: -70px;
  transform: rotate(8deg);
}

.zyntra-auth-zeus-card {
  top: 28px;
  left: 28px;
  z-index: 4;
  width: min(348px, calc(100% - 208px));
  display: grid;
  gap: 20px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.zyntra-auth-zeus-brand {
  position: relative;
  z-index: 1;
  width: min(286px, 100%);
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.zyntra-auth-zeus-brand img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(2, 8, 22, 0.4);
}

.zyntra-auth-zeus-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 300px;
  padding-left: 4px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.zyntra-auth-zeus-kicker {
  color: #38bdf8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.zyntra-auth-zeus-copy strong {
  color: #f8fafc;
  font-size: 1.1rem;
  line-height: 1.46;
}

.zyntra-auth-zeus-copy p {
  margin: 0;
  color: #a7b4c8;
  font-size: 0.92rem;
  line-height: 1.72;
}

.zyntra-auth-node {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.14);
  background: rgba(7, 17, 31, 0.84);
  box-shadow: 0 10px 24px rgba(1, 7, 18, 0.34);
  z-index: 3;
}

.zyntra-auth-node svg {
  width: 21px;
  height: 21px;
}

.zyntra-auth-kicker-icon svg,
.zyntra-auth-feature-icon svg,
.zyntra-auth-node svg,
.zyntra-auth-status-icon svg {
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.node-blue { color: #38bdf8; }
.node-cyan { color: #60a5fa; }
.node-violet { color: #a78bfa; }
.node-green { color: #22c55e; }
.node-soft { color: #7dd3fc; }

.node-user { top: 54px; right: 168px; }
.node-wifi { top: 86px; right: 58px; }
.node-service { top: 214px; left: 140px; }
.node-status { top: 184px; right: 118px; }
.node-customer { bottom: 92px; left: 54px; }

.zyntra-auth-z-wrap {
  inset: auto 72px 36px auto;
  width: 430px;
  height: 430px;
  z-index: 2;
}

.zyntra-auth-z-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.14);
  inset: 50%;
  transform: translate(-50%, -50%);
}

.zyntra-auth-z-ring.ring-a {
  width: 100%;
  height: 100%;
}

.zyntra-auth-z-ring.ring-b {
  width: 74%;
  height: 74%;
}

.zyntra-auth-z-ring.ring-c {
  width: 48%;
  height: 48%;
}

.zyntra-auth-z-core {
  position: absolute;
  inset: 50%;
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(56, 189, 248, 0.26), rgba(37, 99, 235, 0.1) 45%, rgba(37, 99, 235, 0) 72%);
}

.zyntra-auth-z-mark {
  width: 170px;
  height: 170px;
  display: inline-flex;
  filter: drop-shadow(0 22px 38px rgba(37, 99, 235, 0.32));
}

.zyntra-auth-z-mark .brand-mark {
  width: 100%;
  height: 100%;
}

.zyntra-auth-status-card {
  grid-area: status;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(30, 41, 59, 0.92);
  background: rgba(6, 12, 24, 0.72);
}

.zyntra-auth-status-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
}

.zyntra-auth-status-item + .zyntra-auth-status-item {
  border-left: 1px solid rgba(30, 41, 59, 0.92);
}

.zyntra-auth-status-item strong {
  display: block;
  margin-bottom: 6px;
  color: #f8fafc;
  font-size: 1.08rem;
}

.zyntra-auth-status-item span:last-child {
  color: #94a3b8;
  line-height: 1.68;
}

.zyntra-auth-status-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(30, 41, 59, 0.94);
  background: rgba(5, 14, 28, 0.88);
  color: #22c55e;
}

.zyntra-auth-status-icon svg {
  width: 22px;
  height: 22px;
}

.zyntra-auth-status-icon.online::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.erp-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  min-height: calc(100vh - 40px);
}

.erp-sidebar {
  padding: 26px 22px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(5, 16, 37, 0.98), rgba(8, 20, 42, 0.98)),
    linear-gradient(180deg, rgba(79, 122, 255, 0.12), transparent 24%);
  color: #f4f8ff;
  box-shadow: 0 30px 80px rgba(16, 27, 58, 0.22);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

.sidebar-top .brand-lockup {
  gap: 12px;
}

.sidebar-top .brand-mark {
  width: 56px;
  height: 56px;
}

.sidebar-top .brand-copy strong {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.sidebar-top .brand-copy span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

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

.sidebar-link {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(138, 166, 255, 0.08);
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.sidebar-link.active {
  background: linear-gradient(135deg, rgba(52, 117, 255, 0.96), rgba(112, 68, 255, 0.9));
  box-shadow: 0 18px 32px rgba(63, 95, 255, 0.24);
  border-color: transparent;
}

.sidebar-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-icon svg,
.metric-icon svg,
.glass-icon-button svg,
.top-search-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-copy {
  display: grid;
  gap: 2px;
}

.sidebar-copy strong {
  font-size: 1rem;
}

.sidebar-copy small,
.sidebar-user-card small {
  color: rgba(226, 235, 255, 0.66);
}

.sidebar-user-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(60, 119, 255, 0.22), rgba(116, 69, 255, 0.26));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.erp-stage {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.erp-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 6px 0;
}

.topbar-title h2 {
  margin: 8px 0 6px;
  font-size: clamp(2rem, 2.8vw, 3rem);
  letter-spacing: -0.06em;
}

.topbar-title p {
  margin: 0;
  color: var(--text-soft);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-search {
  min-width: 360px;
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(205, 217, 242, 0.92);
  box-shadow: var(--shadow-md);
}

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

.top-search-icon {
  color: var(--text-soft);
}

.glass-icon-button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(205, 217, 242, 0.92);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.erp-content {
  display: grid;
}

.workspace {
  display: grid;
  gap: 20px;
}

.metric-grid,
.dashboard-grid,
.module-grid-2,
.mini-stat-grid,
.two-column-grid,
.form-grid,
.toggle-grid {
  display: grid;
  gap: 18px;
}

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

.dashboard-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.9fr);
}

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

.surface-card,
.metric-card,
.chart-card {
  background: var(--surface);
  border-radius: 26px;
  border: 1px solid rgba(200, 213, 243, 0.92);
  box-shadow: 0 18px 44px rgba(37, 67, 139, 0.11);
}

.surface-card,
.chart-card {
  padding: 24px;
}

.metric-card {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.metric-card.brand .metric-icon {
  background: rgba(39, 169, 255, 0.14);
  color: var(--brand);
}

.metric-card.mint .metric-icon {
  background: rgba(79, 217, 255, 0.15);
  color: var(--mint);
}

.metric-card.violet .metric-icon {
  background: rgba(138, 60, 255, 0.14);
  color: var(--brand-strong);
}

.metric-card.amber .metric-icon {
  background: rgba(240, 169, 60, 0.14);
  color: var(--amber);
}

.metric-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.metric-copy {
  display: grid;
  gap: 8px;
}

.metric-copy span {
  color: var(--text-soft);
  font-weight: 700;
}

.metric-copy strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.metric-copy small {
  color: #2ea8ff;
  font-weight: 700;
}

.card-head,
.module-header-row,
.detail-hero,
.client-list-top,
.operator-head,
.bank-profile-top,
.receivable-row,
.contract-row,
.timeline-row,
.list-row,
.receivable-data,
.detail-list li {
  display: flex;
}

.card-head,
.module-header-row,
.detail-hero,
.client-list-top,
.operator-head,
.bank-profile-top,
.receivable-row,
.contract-row,
.timeline-row,
.list-row {
  justify-content: space-between;
  gap: 16px;
}

.card-head {
  align-items: flex-start;
  margin-bottom: 18px;
}

.card-head h4,
.module-header-row h3,
.detail-hero h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.card-head span,
.module-header-row p,
.detail-hero p,
.list-copy span,
.module-header-row small {
  color: var(--text-soft);
}

.chart-badge {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--brand-soft);
  text-align: right;
}

.chart-badge strong {
  display: block;
  font-size: 1.1rem;
}

.chart-badge span {
  font-size: 0.86rem;
}

.line-chart {
  width: 100%;
  height: auto;
}

.chart-axis {
  stroke: #d9e5fa;
  stroke-width: 1.2;
}

.chart-area {
  fill: rgba(39, 169, 255, 0.12);
}

.chart-line {
  fill: none;
  stroke: var(--brand);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-point {
  fill: #fff;
  stroke: var(--brand);
  stroke-width: 3;
}

.chart-label {
  fill: var(--text-soft);
  font-size: 13px;
  text-anchor: middle;
}

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

.donut-visual {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.donut-core {
  width: 122px;
  height: 122px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e0eaf9;
}

.donut-core strong {
  font-size: 2rem;
}

.donut-core span,
.donut-legend small,
.detail-card p,
.placeholder-schematic,
.empty-box {
  color: var(--text-soft);
}

.donut-legend {
  display: grid;
  gap: 14px;
}

.donut-legend div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.blue { background: #3a79ff; }
.legend-dot.green { background: #4fd9ff; }
.legend-dot.violet { background: #8a3cff; }

.list-stack,
.client-list,
.timeline-list,
.contract-list,
.bank-profile-list,
.operator-list,
.receivable-list {
  display: grid;
  gap: 12px;
}

.list-row,
.client-list-card,
.bank-profile-card,
.operator-card,
.receivable-row,
.detail-card {
  border: 1px solid var(--line);
}

.list-row,
.client-list-card,
.bank-profile-card,
.operator-card,
.receivable-row,
.detail-card,
.mini-stat-card,
.toggle-card,
.soft-pill,
.status-chip,
.segment-button {
  border-radius: 18px;
}

.list-row {
  padding: 14px;
  align-items: center;
  background: #fff;
}

.list-row.plain {
  align-items: flex-start;
}

.list-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(39, 169, 255, 0.14);
  color: var(--mint);
  font-weight: 800;
}

.list-copy {
  display: grid;
  gap: 4px;
  flex: 1;
}

.list-meta {
  display: grid;
  gap: 4px;
  text-align: right;
}

.list-meta.emphasis strong {
  font-size: 1rem;
}

.module-header-row {
  align-items: flex-end;
}

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

.surface-card.narrow {
  padding-bottom: 18px;
}

.field-search {
  margin-bottom: 18px;
}

.client-list-card,
.bank-profile-card {
  width: 100%;
  padding: 16px;
  background: #fff;
  text-align: left;
}

.client-list-card.active,
.bank-profile-card.active {
  border-color: rgba(51, 117, 255, 0.4);
  box-shadow: 0 14px 30px rgba(71, 108, 255, 0.12);
}

.client-list-top strong,
.detail-card-title,
.operator-head strong,
.bank-profile-top strong,
.receivable-main strong,
.contract-row strong,
.timeline-row strong {
  font-size: 1rem;
}

.client-list-card > span,
.bank-profile-card > span,
.bank-profile-card small,
.receivable-main span,
.contract-row span,
.detail-hero small,
.mini-stat-card span,
.mini-stat-card small,
.timeline-row small,
.timeline-row p {
  display: block;
  color: var(--text-soft);
}

.client-list-meta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.detail-hero {
  align-items: flex-start;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.detail-hero small {
  margin-bottom: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.mini-stat-card {
  padding: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.mini-stat-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.24rem;
}

.two-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.detail-card {
  padding: 20px;
  background: #fff;
}

.detail-card-title {
  margin-bottom: 16px;
  font-weight: 800;
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.detail-list li {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2fa;
}

.detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list span {
  color: var(--text-soft);
}

.tag-cloud,
.check-group,
.form-actions,
.segmented-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.soft-pill,
.status-chip {
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.soft-pill {
  background: #f2f6ff;
  color: var(--text);
}

.status-chip {
  background: #eef3ff;
  color: #5c6c91;
}

.status-chip.success {
  background: rgba(39, 169, 255, 0.14);
  color: #1f79d8;
}

.status-chip.danger {
  background: rgba(255, 111, 118, 0.14);
  color: #b9334c;
}

.status-chip.warning {
  background: rgba(240, 169, 60, 0.16);
  color: #9b6317;
}

.status-chip.brand {
  background: rgba(50, 117, 255, 0.12);
  color: #2d63db;
}

.timeline-list {
  gap: 14px;
}

.timeline-row {
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 0 0 6px rgba(76, 110, 255, 0.08);
  flex: 0 0 auto;
}

.timeline-row p {
  margin: 6px 0 0;
  line-height: 1.55;
}

.receivable-row,
.contract-row {
  align-items: center;
  padding: 16px;
  background: #fff;
}

.receivable-data {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.receivable-data > div {
  min-width: 116px;
  display: grid;
  gap: 4px;
}

.receivable-data small {
  color: var(--text-muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.receivable-data strong {
  font-size: 0.96rem;
}

.segment-button {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.segment-button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(71, 108, 255, 0.2);
}

.stacked-layout {
  display: grid;
  gap: 18px;
}

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

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

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

.toggle-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.toggle-card input {
  margin-top: 2px;
}

.toggle-card strong {
  display: block;
  margin-bottom: 4px;
}

.toggle-card span {
  color: var(--text-soft);
  line-height: 1.5;
}

.operator-card {
  padding: 18px;
  background: #fff;
}

.operator-head {
  margin-bottom: 14px;
}

.operator-head span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
}

.compact-form {
  margin-top: 14px;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f5f8ff;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.empty-box {
  padding: 24px;
  border-radius: 20px;
  background: #f6f9ff;
  border: 1px dashed var(--line-strong);
  text-align: center;
}

.empty-box.large {
  min-height: 380px;
  display: grid;
  place-items: center;
}

.placeholder-schematic {
  min-height: 240px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(50, 117, 255, 0.12), rgba(123, 86, 255, 0.08)),
    linear-gradient(180deg, #f7faff 0%, #edf3ff 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.placeholder-schematic div {
  position: absolute;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(187, 206, 245, 0.92);
}

.placeholder-schematic div:nth-child(1) { width: 140px; height: 96px; top: 32px; left: 34px; }
.placeholder-schematic div:nth-child(2) { width: 180px; height: 48px; top: 54px; right: 34px; }
.placeholder-schematic div:nth-child(3) { width: 92%; height: 62px; bottom: 86px; left: 4%; }
.placeholder-schematic div:nth-child(4) { width: 56%; height: 42px; bottom: 30px; left: 22%; }

.card-head.sticky {
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}

.ops-report-toolbar-surface .ops-toolbar {
  margin: 0;
}

.ops-report-toolbar .ops-toolbar-primary {
  flex-wrap: wrap;
}

.ops-report-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(4, 8, 16, 0.76);
  backdrop-filter: blur(14px);
}

.ops-report-modal {
  width: min(720px, 100%);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(124, 138, 190, 0.26);
  background: linear-gradient(180deg, rgba(26, 32, 48, 0.98), rgba(17, 23, 36, 0.98));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.ops-report-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(124, 138, 190, 0.16);
  background: rgba(38, 45, 63, 0.86);
}

.ops-report-modal-head strong {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.ops-report-modal-body {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.ops-report-modal-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(124, 138, 190, 0.22);
  border-radius: 14px;
  background: rgba(14, 20, 31, 0.72);
  color: rgba(238, 243, 255, 0.92);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.ops-report-modal-close:hover {
  border-color: rgba(152, 167, 226, 0.4);
  background: rgba(27, 35, 50, 0.92);
}

@media (max-width: 1280px) {
  .landing-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .zyntra-login-stage {
    grid-template-columns: 1fr;
  }

  .zyntra-auth-stage {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .zyntra-auth-login-panel {
    max-width: 620px;
  }

  .zyntra-auth-visual-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "art"
      "status";
  }

  .zyntra-auth-art-panel {
    min-height: 400px;
  }

  .zyntra-auth-zeus-card {
    width: min(360px, calc(100% - 184px));
  }

  .zyntra-auth-z-wrap {
    right: 32px;
    bottom: 24px;
    width: 340px;
    height: 340px;
  }

  .zyntra-auth-z-core {
    width: 210px;
    height: 210px;
  }

  .zyntra-auth-z-mark {
    width: 138px;
    height: 138px;
  }

  .login-preview-window,
  .login-preview-bottom,
  .login-preview-metrics {
    grid-template-columns: 1fr;
  }

  .landing-highlights,
  .metric-grid,
  .mini-stat-grid,
  .toggle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .erp-shell,
  .dashboard-grid,
  .dashboard-grid.bottom,
  .module-grid-2,
  .two-column-grid,
  .finance-double-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .erp-sidebar {
    grid-template-rows: auto auto auto;
  }
}

@media (max-width: 760px) {
  .app {
    padding: 14px;
  }

  .landing-shell.zyntra-auth-shell {
    padding: 0;
  }

  .landing-stage,
  .erp-sidebar,
  .surface-card,
  .chart-card {
    padding: 20px;
  }

  .zyntra-auth-stage {
    min-height: 100vh;
    padding: 16px;
    border-radius: 0;
  }

  .login-card.zyntra-auth-login-card,
  .zyntra-auth-visual-panel {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .zyntra-auth-brand .brand-lockup {
    gap: 14px;
  }

  .zyntra-auth-brand .brand-mark {
    width: 70px;
    height: 70px;
  }

  .zyntra-auth-brand .brand-copy strong {
    font-size: 2rem;
  }

  .zyntra-auth-brand .brand-copy span {
    font-size: 0.74rem;
    letter-spacing: 0.26em;
  }

  .zyntra-auth-copy-block h1 {
    font-size: 2rem;
  }

  .zyntra-auth-copy-block p,
  .zyntra-auth-feature-item span:last-child,
  .zyntra-auth-status-item span:last-child {
    font-size: 0.96rem;
  }

  .zyntra-auth-visual-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "art"
      "status";
  }

  .zyntra-auth-art-panel {
    min-height: 520px;
  }

  .zyntra-auth-node {
    width: 40px;
    height: 40px;
  }

  .zyntra-auth-node svg {
    width: 18px;
    height: 18px;
  }

  .node-user { top: 38px; right: 116px; }
  .node-wifi { top: 64px; right: 28px; }
  .node-service { top: 330px; left: 34px; }
  .node-status { top: 138px; right: 56px; }
  .node-customer { bottom: 78px; left: 24px; }

  .zyntra-auth-zeus-card {
    top: 18px;
    left: 18px;
    width: min(290px, calc(100% - 112px));
    gap: 12px;
  }

  .zyntra-auth-zeus-brand {
    width: min(214px, 100%);
  }

  .zyntra-auth-zeus-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .zyntra-auth-zeus-copy strong {
    font-size: 0.96rem;
  }

  .zyntra-auth-zeus-copy p {
    font-size: 0.84rem;
    line-height: 1.54;
  }

  .zyntra-auth-z-wrap {
    right: 10px;
    bottom: 6px;
    width: 250px;
    height: 250px;
  }

  .zyntra-auth-z-core {
    width: 150px;
    height: 150px;
  }

  .zyntra-auth-z-mark {
    width: 108px;
    height: 108px;
  }

  .zyntra-auth-status-card {
    grid-template-columns: 1fr;
  }

  .zyntra-auth-status-item + .zyntra-auth-status-item {
    border-left: 0;
    border-top: 1px solid rgba(30, 41, 59, 0.92);
  }

  .login-preview-window {
    grid-template-columns: 1fr;
  }

  .login-preview-sidebar {
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

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

  .brand-copy strong {
    font-size: 2.3rem;
  }

  .brand-copy span {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .landing-highlights,
  .metric-grid,
  .mini-stat-grid,
  .toggle-grid,
  .finance-double-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .top-search {
    min-width: 0;
    width: 100%;
  }

  .receivable-data {
    justify-content: flex-start;
  }
}

.app-shell.authenticated-mode {
  background:
    radial-gradient(circle at top left, rgba(76, 119, 255, 0.16), transparent 18%),
    radial-gradient(circle at top right, rgba(70, 204, 167, 0.08), transparent 20%),
    linear-gradient(180deg, #0b0f1a 0%, #0d1220 38%, #0a0e17 100%);
}

.app-shell.authenticated-mode .bg-grid {
  background-image:
    linear-gradient(rgba(90, 110, 160, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 110, 160, 0.08) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 92%);
}

.ops-shell {
  min-height: calc(100vh - 40px);
  display: grid;
  gap: 18px;
}

.ops-topbar {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(84, 108, 202, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 50%, rgba(43, 169, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(138, 60, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(14, 21, 41, 0.98), rgba(12, 18, 33, 0.98));
  box-shadow: 0 18px 48px rgba(4, 10, 27, 0.28);
}

.ops-topbar-left {
  display: grid;
  min-width: 0;
}

.ops-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ops-brand-mark-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ops-brand-mark-wrap .brand-mark {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 16px 26px rgba(47, 122, 255, 0.22));
}

.ops-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ops-brand-copy strong {
  color: #f7fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 0.95;
  letter-spacing: 0.08em;
}

.ops-brand-copy span {
  color: #49b4ff;
  font-size: 0.63rem;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ops-brand-copy small {
  color: rgba(184, 198, 237, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ops-brand-lockup-topbar .ops-brand-mark-wrap .brand-mark {
  width: 48px;
  height: 48px;
}

.ops-brand-lockup-topbar .ops-brand-copy strong {
  font-size: 1.42rem;
}

.ops-brand-lockup-topbar .ops-brand-copy span {
  font-size: 0.58rem;
}

.ops-brand-lockup-topbar .ops-brand-copy small {
  font-size: 0.7rem;
}

.ops-brand-lockup-sidebar .ops-brand-mark-wrap .brand-mark {
  width: 56px;
  height: 56px;
}

.ops-brand-lockup-sidebar .ops-brand-copy strong {
  font-size: 1.52rem;
}

.ops-brand-lockup-sidebar .ops-brand-copy span {
  font-size: 0.6rem;
}

.ops-topbar-center {
  min-width: 0;
}

.ops-topbar-search {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  border: 1px solid rgba(84, 149, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(12, 19, 35, 0.98), rgba(9, 14, 28, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(68, 118, 255, 0.06),
    0 14px 32px rgba(7, 15, 35, 0.2);
  color: #e8f0ff;
}

.ops-topbar-search input,
.ops-inline-search input,
.ops-field input,
.ops-field select,
.ops-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #eef3ff;
}

.ops-topbar-search input::placeholder,
.ops-inline-search input::placeholder,
.ops-field input::placeholder,
.ops-field textarea::placeholder {
  color: rgba(155, 169, 208, 0.6);
}

.ops-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ops-theme-switch {
  position: relative;
  min-height: 48px;
  padding: 0 38px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(82, 112, 189, 0.24);
  background:
    linear-gradient(180deg, rgba(18, 28, 52, 0.98), rgba(12, 19, 37, 0.96));
  color: #eef4ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(5, 11, 28, 0.18);
}

.ops-theme-switch::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
  pointer-events: none;
}

.ops-theme-switch:focus-within {
  border-color: rgba(82, 179, 255, 0.52);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(9, 18, 45, 0.22);
}

.ops-theme-switch-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: rgba(145, 214, 255, 0.92);
  flex: 0 0 auto;
}

.ops-theme-switch-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-theme-switch select {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
}

.ops-theme-switch select option {
  color: #152036;
}

.ops-icon-button {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(79, 138, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(18, 28, 52, 0.98), rgba(12, 19, 37, 0.96));
  color: #ebf4ff;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(5, 11, 28, 0.18);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ops-icon-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(96, 170, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(28, 44, 79, 1), rgba(16, 25, 48, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 30px rgba(13, 24, 58, 0.24);
}

.ops-icon-button:focus-visible,
.ops-topbar-search:focus-within {
  outline: none;
  border-color: rgba(82, 179, 255, 0.52);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(9, 18, 45, 0.22);
}

.top-search-icon {
  color: rgba(132, 197, 255, 0.88);
}

.logout-button {
  background:
    linear-gradient(180deg, rgba(27, 35, 66, 0.98), rgba(16, 22, 43, 0.96));
}

.logout-button:hover {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(109, 93, 251, 0.92));
}

.ops-user-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 21, 39, 0.96), rgba(12, 18, 33, 0.96));
  border: 1px solid rgba(89, 118, 207, 0.2);
  color: #f7fbff;
}

.ops-user-pill small {
  color: rgba(165, 180, 220, 0.7);
}

.ops-user-avatar,
.ops-company-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
}

.ops-user-avatar {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.ops-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
}

.ops-sidebar,
.ops-page,
.ops-table-card,
.ops-form-card,
.ops-section-card,
.ops-kpi-card {
  border: 1px solid rgba(94, 115, 192, 0.14);
  background:
    radial-gradient(circle at top right, rgba(39, 169, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(138, 60, 255, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(17, 24, 40, 0.98), rgba(22, 29, 45, 0.98));
  box-shadow: 0 28px 80px rgba(5, 11, 28, 0.28);
}

.ops-sidebar {
  padding: 16px;
  border-radius: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(39, 169, 255, 0.12), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(138, 60, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(18, 25, 40, 0.98), rgba(22, 29, 45, 0.98));
}

.ops-company {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px 14px;
  border-bottom: 1px solid rgba(89, 118, 207, 0.16);
}

.ops-nav {
  display: grid;
  gap: 4px;
  align-content: start;
  overflow: auto;
  padding-right: 4px;
}

.ops-nav-root,
.ops-nav-group-head,
.ops-nav-branch-head,
.ops-nav-leaf {
  width: 100%;
  border: 0;
  background: transparent;
  color: #dfe7ff;
  text-align: left;
}

.ops-nav-root {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.96rem;
}

.ops-nav-root.active,
.ops-nav-group.active > .ops-nav-group-head {
  background: linear-gradient(135deg, rgba(39, 169, 255, 0.2), rgba(138, 60, 255, 0.18));
  color: #fff;
}

.ops-nav-root.reduce {
  color: rgba(174, 191, 232, 0.72);
}

.ops-nav-root-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: inherit;
}

.ops-nav-root-icon svg {
  width: 20px;
  height: 20px;
}

.ops-nav-group {
  display: grid;
  gap: 2px;
}

.ops-nav-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 14px;
  font-weight: 700;
}

.ops-nav-group-head-main,
.ops-nav-branch-head-main {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ops-nav-group-body,
.ops-nav-branch-body {
  display: none;
  gap: 6px;
}

.ops-nav-group.expanded > .ops-nav-group-body,
.ops-nav-branch.expanded > .ops-nav-branch-body {
  display: grid;
}

.ops-nav-branch {
  display: grid;
  gap: 2px;
  margin-left: 14px;
}

.ops-nav-branch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 10px;
  color: rgba(191, 204, 239, 0.72);
  font-weight: 600;
}

.ops-nav-branch.active > .ops-nav-branch-head {
  color: #f4f8ff;
}

.ops-nav-branch-caret {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.58;
}

.ops-nav-expand-indicator {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.ops-nav-group.expanded > .ops-nav-group-head .ops-nav-expand-indicator,
.ops-nav-branch.expanded > .ops-nav-branch-head .ops-nav-expand-indicator {
  transform: rotate(-135deg);
}

.ops-nav-leaf {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 7px 12px 7px 34px;
  border-radius: 10px;
  color: rgba(188, 201, 238, 0.78);
  font-size: 0.93rem;
}

.ops-nav-leaf.level-2 {
  padding-left: 26px;
}

.ops-nav-leaf.active {
  color: #8fd5ff;
  background: rgba(37, 64, 119, 0.44);
}

.ops-sidebar-foot {
  border-top: 1px solid rgba(109, 126, 175, 0.12);
  padding-top: 12px;
}

.ops-main {
  min-width: 0;
  display: grid;
  align-content: start;
}

.ops-page {
  border-radius: 26px;
  padding: 18px;
  display: grid;
  gap: 16px;
  align-content: start;
  grid-auto-rows: max-content;
}

.ops-page-head h3,
.ops-form-title h4 {
  margin: 0;
  color: #f7fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 1.9vw, 1.72rem);
}

.ops-page-head p,
.ops-form-title p {
  margin: 4px 0 0;
  color: rgba(183, 197, 232, 0.7);
  font-size: 0.92rem;
}

.ops-topbar-overview {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ops-topbar-overview .ops-topbar-center {
  max-width: none;
}

.ops-topbar-shortcut {
  padding: 5px 8px;
  border-radius: 10px;
  border: 1px solid rgba(86, 111, 173, 0.28);
  color: rgba(182, 196, 231, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.ops-overview-pill,
.ops-overview-status-pill {
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(82, 112, 189, 0.24);
  background: linear-gradient(180deg, rgba(17, 24, 42, 0.98), rgba(12, 18, 33, 0.96));
  color: #eef4ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ops-overview-pill {
  font-weight: 700;
}

.ops-overview-pill-whatsapp .ops-overview-pill-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
}

.ops-overview-pill-whatsapp .ops-overview-pill-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-overview-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4d5f;
  box-shadow: 0 0 0 4px rgba(255, 77, 95, 0.12);
}

.ops-overview-status-dot.online {
  background: #46d369;
  box-shadow: 0 0 0 4px rgba(70, 211, 105, 0.12);
}

.ops-overview-status-pill strong {
  display: block;
  color: #f8fbff;
  font-size: 0.88rem;
}

.ops-overview-status-pill small {
  display: block;
  color: #7af18b;
  font-size: 0.82rem;
}

.ops-icon-button.with-badge {
  position: relative;
}

.ops-button-badge {
  position: absolute;
  top: -7px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(12, 18, 33, 0.96);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.ops-button-badge.danger {
  background: #ff4d5f;
}

.ops-button-badge.warning {
  background: #f59e0b;
}

.ops-dashboard-page {
  display: grid;
  gap: 18px;
}

.ops-dashboard-shell {
  padding: 16px;
}

.ops-dashboard-head,
.ops-dashboard-card-head,
.ops-dashboard-kpi-head,
.ops-dashboard-kpi-meta,
.ops-dashboard-donut-row,
.ops-dashboard-footer {
  display: flex;
}

.ops-dashboard-head,
.ops-dashboard-card-head,
.ops-dashboard-kpi-meta,
.ops-dashboard-donut-row,
.ops-dashboard-footer {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ops-dashboard-head h2,
.ops-dashboard-card-head h4 {
  margin: 0;
  color: #f8fbff;
}

.ops-dashboard-head h2 {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.ops-dashboard-head p,
.ops-dashboard-card-head span,
.ops-dashboard-footer {
  color: rgba(180, 194, 229, 0.72);
}

.ops-dashboard-date-chip,
.ops-dashboard-filter-chip,
.ops-dashboard-link-button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(85, 108, 175, 0.24);
  background: rgba(11, 18, 33, 0.86);
  color: #f1f5ff;
  font-weight: 700;
}

.ops-dashboard-link-button {
  padding: 0;
  min-height: auto;
  border: 0;
  background: transparent;
  color: #4da7ff;
  font-size: 0.82rem;
}

.ops-dashboard-kpis,
.ops-dashboard-main-grid,
.ops-dashboard-table-grid,
.ops-dashboard-bottom-grid,
.ops-dashboard-action-grid {
  display: grid;
  gap: 16px;
}

.ops-dashboard-kpis {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ops-dashboard-main-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.92fr) minmax(320px, 0.92fr);
}

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

.ops-dashboard-bottom-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.9fr) minmax(300px, 0.76fr);
}

.ops-dashboard-card,
.ops-dashboard-kpi-card {
  border: 1px solid rgba(84, 108, 202, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(39, 169, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(12, 18, 33, 0.98), rgba(10, 16, 28, 0.98));
  box-shadow: 0 20px 44px rgba(4, 9, 24, 0.22);
}

.ops-dashboard-card {
  padding: 18px;
}

.ops-dashboard-kpi-card {
  position: relative;
  min-height: 152px;
  padding: 16px 16px 12px;
  overflow: hidden;
}

.ops-dashboard-kpi-head {
  align-items: center;
  gap: 12px;
}

.ops-dashboard-kpi-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.ops-dashboard-kpi-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-dashboard-kpi-card.green .ops-dashboard-kpi-icon {
  background: rgba(70, 211, 105, 0.12);
  color: #46d369;
}

.ops-dashboard-kpi-card.red .ops-dashboard-kpi-icon {
  background: rgba(255, 77, 95, 0.12);
  color: #ff4d5f;
}

.ops-dashboard-kpi-card.blue .ops-dashboard-kpi-icon {
  background: rgba(43, 123, 255, 0.12);
  color: #2b7bff;
}

.ops-dashboard-kpi-card.orange .ops-dashboard-kpi-icon {
  background: rgba(249, 154, 4, 0.12);
  color: #f59e0b;
}

.ops-dashboard-kpi-card.purple .ops-dashboard-kpi-icon {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
}

.ops-dashboard-kpi-card.yellow .ops-dashboard-kpi-icon {
  background: rgba(234, 179, 8, 0.12);
  color: #facc15;
}

.ops-dashboard-kpi-title {
  color: rgba(199, 210, 242, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

.ops-dashboard-kpi-value {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.ops-dashboard-kpi-meta {
  margin-top: 16px;
}

.ops-dashboard-kpi-meta small,
.ops-dashboard-kpi-meta span {
  font-size: 0.86rem;
  font-weight: 700;
}

.ops-dashboard-kpi-card.green .ops-dashboard-kpi-meta span {
  color: #46d369;
}

.ops-dashboard-kpi-card.red .ops-dashboard-kpi-meta span {
  color: #ff6b7c;
}

.ops-dashboard-kpi-card.blue .ops-dashboard-kpi-meta span {
  color: #48a9ff;
}

.ops-dashboard-kpi-card.orange .ops-dashboard-kpi-meta span {
  color: #f8a62c;
}

.ops-dashboard-kpi-card.purple .ops-dashboard-kpi-meta span {
  color: #cf8cff;
}

.ops-dashboard-kpi-card.yellow .ops-dashboard-kpi-meta span {
  color: #facc15;
}

.ops-dashboard-kpi-wave {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 120px;
  height: 42px;
  opacity: 0.95;
}

.ops-dashboard-kpi-wave path {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-dashboard-kpi-wave.green path {
  stroke: #46d369;
}

.ops-dashboard-kpi-wave.red path {
  stroke: #ff4d5f;
}

.ops-dashboard-kpi-wave.blue path {
  stroke: #2b7bff;
}

.ops-dashboard-kpi-wave.orange path {
  stroke: #f59e0b;
}

.ops-dashboard-kpi-wave.purple path {
  stroke: #c084fc;
}

.ops-dashboard-kpi-wave.yellow path {
  stroke: #facc15;
}

.ops-dashboard-line-chart {
  width: 100%;
  height: 250px;
}

.ops-dashboard-axis,
.ops-dashboard-table thead tr,
.ops-dashboard-table tbody tr + tr,
.ops-dashboard-donut-row + .ops-dashboard-donut-row {
  stroke: rgba(79, 103, 170, 0.22);
}

.ops-dashboard-area {
  fill: url(#ops-dashboard-area-blue);
}

.ops-dashboard-line {
  fill: none;
  stroke: #2b7bff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-dashboard-point {
  fill: #dce8ff;
  stroke: #2b7bff;
  stroke-width: 2.4;
}

.ops-dashboard-label,
.ops-dashboard-callout-date {
  fill: rgba(173, 188, 224, 0.72);
  font-size: 12px;
  text-anchor: middle;
}

.ops-dashboard-chart-callout rect {
  fill: rgba(11, 18, 33, 0.94);
  stroke: rgba(78, 109, 177, 0.36);
}

.ops-dashboard-callout-value {
  fill: #f8fbff;
  font-size: 13px;
  font-weight: 800;
  text-anchor: middle;
}

.ops-dashboard-donut-layout {
  display: grid;
  grid-template-columns: 182px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.ops-dashboard-donut-visual {
  width: 182px;
  height: 182px;
  padding: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.ops-dashboard-donut-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: rgba(9, 14, 28, 0.98);
  box-shadow: inset 0 0 0 1px rgba(78, 109, 177, 0.18);
}

.ops-dashboard-donut-core span {
  color: rgba(186, 199, 230, 0.72);
  font-size: 0.82rem;
}

.ops-dashboard-donut-core strong {
  color: #f8fbff;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.ops-dashboard-donut-legend {
  display: grid;
  gap: 12px;
}

.ops-dashboard-donut-row strong {
  flex: 1;
  color: #f8fbff;
  font-size: 0.92rem;
}

.ops-dashboard-donut-row small {
  color: rgba(193, 206, 239, 0.72);
}

.ops-dashboard-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
}

.ops-dashboard-table-wrap {
  overflow: auto;
}

.ops-dashboard-table {
  width: 100%;
  border-collapse: collapse;
  color: #eef4ff;
  font-size: 0.88rem;
}

.ops-dashboard-table th,
.ops-dashboard-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(79, 103, 170, 0.16);
  text-align: left;
  vertical-align: top;
}

.ops-dashboard-table th {
  color: rgba(169, 184, 221, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.ops-dashboard-table strong {
  color: #fff;
}

.ops-dashboard-subrow {
  display: block;
  margin-top: 4px;
  color: rgba(167, 181, 215, 0.68);
}

.ops-dashboard-empty-cell {
  color: rgba(170, 184, 221, 0.7);
  text-align: center;
  padding: 24px 12px;
}

.ops-dashboard-status-pill,
.ops-dashboard-alert-pill {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.ops-dashboard-status-pill.success {
  background: rgba(70, 211, 105, 0.16);
  color: #7df1a2;
}

.ops-dashboard-status-pill.warning,
.ops-dashboard-alert-pill.warning {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
}

.ops-dashboard-alert-pill.critical {
  background: rgba(255, 77, 95, 0.16);
  color: #ff7c8d;
}

.ops-dashboard-alert-pill.info {
  background: rgba(43, 123, 255, 0.16);
  color: #7cb4ff;
}

.ops-dashboard-map-card {
  min-height: 100%;
}

.ops-dashboard-map-stage {
  position: relative;
  min-height: 214px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(63, 83, 129, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 83, 129, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 70% 24%, rgba(63, 176, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(8, 14, 26, 0.98), rgba(8, 14, 25, 0.96));
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid rgba(78, 109, 177, 0.16);
}

.ops-dashboard-map-glow {
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 1px solid rgba(43, 123, 255, 0.18);
  transform: rotate(-12deg);
}

.ops-dashboard-map-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.ops-dashboard-map-node.green {
  background: #46d369;
}

.ops-dashboard-map-node.yellow {
  background: #fbbf24;
}

.ops-dashboard-map-node.red {
  background: #ff4d5f;
}

.ops-dashboard-map-node.blue {
  background: #4da7ff;
}

.ops-dashboard-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: rgba(194, 205, 235, 0.76);
  font-size: 0.8rem;
}

.ops-dashboard-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ops-dashboard-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.ops-dashboard-map-legend i.green {
  background: #46d369;
}

.ops-dashboard-map-legend i.yellow {
  background: #fbbf24;
}

.ops-dashboard-map-legend i.blue {
  background: #4da7ff;
}

.ops-dashboard-map-legend i.red {
  background: #ff4d5f;
}

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

.ops-dashboard-action-tile {
  min-height: 110px;
  padding: 16px 12px;
  border-radius: 18px;
  border: 1px solid rgba(74, 100, 166, 0.24);
  background: rgba(10, 16, 29, 0.92);
  color: #f7fbff;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-weight: 700;
}

.ops-dashboard-action-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.ops-dashboard-action-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-dashboard-action-tile.green .ops-dashboard-action-icon {
  background: rgba(70, 211, 105, 0.14);
  color: #46d369;
}

.ops-dashboard-action-tile.red .ops-dashboard-action-icon {
  background: rgba(255, 77, 95, 0.14);
  color: #ff4d5f;
}

.ops-dashboard-action-tile.blue .ops-dashboard-action-icon {
  background: rgba(43, 123, 255, 0.14);
  color: #4da7ff;
}

.ops-dashboard-action-tile.purple .ops-dashboard-action-icon {
  background: rgba(168, 85, 247, 0.14);
  color: #c084fc;
}

.ops-dashboard-action-tile.mint .ops-dashboard-action-icon {
  background: rgba(45, 212, 191, 0.14);
  color: #2dd4bf;
}

.ops-dashboard-action-tile.amber .ops-dashboard-action-icon {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}

.ops-dashboard-footer {
  padding: 6px 4px 0;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.ops-toolbar,
.ops-search-row,
.ops-form-top,
.ops-form-actions,
.ops-operator-actions,
.ops-bank-toggles,
.ops-choice-grid,
.ops-action-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ops-toolbar {
  justify-content: space-between;
  align-items: flex-start;
}

.ops-toolbar-primary,
.ops-toolbar-right,
.ops-toolbar-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ops-tool-icon,
.ops-tool-button,
.ops-primary-button,
.ops-secondary-button,
.ops-shortcut {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(111, 128, 179, 0.18);
  background: rgba(14, 20, 33, 0.94);
  color: #e8efff;
  font-weight: 700;
  font-size: 0.94rem;
}

.ops-tool-icon {
  width: 42px;
  padding: 0;
  background: linear-gradient(135deg, rgba(39, 169, 255, 0.96), rgba(138, 60, 255, 0.92));
  color: #ffffff;
}

.ops-tool-button.accent,
.ops-primary-button,
.ops-shortcut {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  border-color: transparent;
  color: #fff;
}

.ops-tool-button.export,
.ops-secondary-button {
  background: rgba(14, 20, 33, 0.94);
}

.ops-tool-button.danger {
  color: rgba(255, 151, 139, 0.76);
  border-color: rgba(185, 94, 76, 0.32);
}

.ops-tool-button.success {
  color: #9fe4ff;
  border-color: rgba(55, 164, 255, 0.28);
  background: rgba(16, 35, 64, 0.84);
}

.ops-tool-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ops-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0;
}

.ops-table-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-table-legend-item {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(109, 126, 175, 0.18);
  background: rgba(15, 21, 34, 0.88);
  color: rgba(208, 220, 247, 0.8);
}

.ops-table-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.ops-table-legend-item.success {
  color: #8fd8ff;
}

.ops-table-legend-item.danger {
  color: #ff9f92;
}

.ops-table-legend-item.neutral {
  color: #aab6cf;
}

.ops-filter-pill,
.ops-choice,
.ops-sector-pill,
.ops-mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(109, 126, 175, 0.18);
  color: rgba(208, 220, 247, 0.76);
}

.ops-filter-pill.active,
.ops-choice.active,
.ops-mini-pill.success,
.ops-mini-pill.warning {
  background: rgba(38, 76, 152, 0.34);
  color: #eef6ff;
}

.ops-choice-control {
  position: relative;
  display: inline-flex;
}

.ops-choice-control input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.ops-choice-control-body {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(109, 126, 175, 0.22);
  background: rgba(16, 24, 40, 0.88);
  color: rgba(226, 235, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ops-choice-control-body small {
  color: rgba(176, 194, 236, 0.88);
  font-size: 0.8rem;
  font-weight: 800;
}

.ops-choice.success.active,
.ops-sector-pill input:checked + span,
.ops-mini-pill.success {
  color: #eef6ff;
}

.ops-filter-pill-dot,
.ops-choice-dot,
.ops-mini-pill::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(209, 219, 243, 0.62);
  background: transparent;
  content: "";
}

.ops-filter-pill.active .ops-filter-pill-dot,
.ops-choice.active .ops-choice-dot,
.ops-choice-control input:checked + .ops-choice-control-body .ops-choice-dot,
.ops-mini-pill.success::before,
.ops-mini-pill.warning::before {
  border-color: #7ed5ff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 0 0 4px rgba(70, 155, 255, 0.16);
}

.ops-choice-control input:checked + .ops-choice-control-body {
  background: linear-gradient(135deg, rgba(31, 107, 245, 0.28), rgba(110, 74, 255, 0.22));
  border-color: rgba(100, 174, 255, 0.4);
  color: #f7fbff;
  box-shadow: 0 0 0 4px rgba(61, 129, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ops-choice-control input:hover + .ops-choice-control-body,
.ops-choice-control input:focus-visible + .ops-choice-control-body {
  border-color: rgba(105, 175, 255, 0.34);
  transform: translateY(-1px);
}

.ops-search-row {
  justify-content: space-between;
}

.ops-inline-search {
  flex: 1 1 320px;
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(111, 128, 179, 0.18);
  background: rgba(14, 19, 31, 0.9);
}

.ops-table-card {
  overflow: hidden;
  border-radius: 18px;
}

.ops-table {
  width: 100%;
  border-collapse: collapse;
}

.ops-table th,
.ops-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(113, 128, 176, 0.1);
  vertical-align: top;
  text-align: left;
  color: rgba(220, 229, 248, 0.82);
  font-size: 0.92rem;
}

.ops-table th {
  color: rgba(170, 184, 220, 0.68);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ops-table tbody tr:hover,
.ops-table tbody tr.active {
  background: rgba(42, 51, 76, 0.74);
}

.ops-table tbody tr.clickable {
  cursor: pointer;
}

.ops-table tbody tr.ops-customer-row-danger td {
  color: rgba(255, 167, 155, 0.92);
}

.ops-table tbody tr.ops-customer-row-danger td strong {
  color: #ffb0a4;
}

.ops-table tbody tr.ops-customer-row-neutral td {
  color: rgba(162, 174, 199, 0.88);
}

.ops-table tbody tr.ops-customer-row-neutral td strong {
  color: #d3dbee;
}

.ops-col-select {
  width: 56px;
}

.ops-row-marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ops-row-select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.ops-row-select.with-label {
  min-height: 34px;
  padding: 0 4px 0 0;
}

.ops-row-select-label {
  color: rgba(223, 232, 249, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.ops-select-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(212, 220, 240, 0.62);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: transparent;
  background: rgba(11, 16, 30, 0.35);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.ops-row-select.is-selected .ops-select-box {
  border-color: rgba(87, 185, 255, 0.92);
  background: linear-gradient(135deg, rgba(34, 154, 255, 0.92), rgba(133, 83, 255, 0.92));
  color: #f7fbff;
  box-shadow: 0 0 0 4px rgba(34, 154, 255, 0.12);
}

.ops-table-trigger {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.ops-table-trigger:hover,
.ops-table-trigger:focus-visible {
  color: #86c9ff;
  text-decoration: underline;
}

.ops-fake-check,
.ops-check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(212, 220, 240, 0.62);
  display: inline-block;
}

.ops-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.ops-status-dot.success {
  background: #54d4ff;
}

.ops-status-dot.warning {
  background: #f0bf64;
}

.ops-status-dot.danger {
  background: #ff6f76;
}

.ops-status-dot.neutral {
  background: #7482a7;
}

.ops-empty-cell {
  text-align: center;
  color: rgba(173, 188, 224, 0.7);
}

.ops-tone-text.success {
  color: #8fdcff;
}

.ops-tone-text.warning {
  color: #ffd27c;
}

.ops-tone-text.danger {
  color: #ff9e93;
}

.ops-kpi-grid,
.ops-grid.two,
.ops-permission-grid {
  display: grid;
  gap: 14px;
}

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

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

.ops-kpi-card,
.ops-section-card,
.ops-form-card {
  border-radius: 24px;
}

.ops-kpi-card {
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}

.ops-kpi-card span,
.ops-field span,
.ops-detail-list span {
  color: rgba(175, 189, 223, 0.72);
  font-weight: 700;
}

.ops-kpi-card strong {
  color: #fff;
  font-size: 1.8rem;
}

.ops-kpi-card small {
  color: rgba(183, 197, 232, 0.7);
}

.ops-section-card {
  overflow: hidden;
}

.ops-section-card-head {
  padding: 18px 22px;
  color: #f4f8ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(44, 88, 190, 0.7), rgba(82, 48, 170, 0.64));
}

.ops-section-card.muted .ops-section-card-head {
  color: #ffd58c;
}

.ops-section-card-body {
  padding: 22px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.ops-mini-list {
  display: grid;
  gap: 12px;
}

.ops-mini-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(113, 128, 176, 0.1);
}

.ops-mini-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ops-mini-row strong {
  display: block;
  color: #f4f8ff;
}

.ops-mini-row span {
  color: rgba(178, 192, 228, 0.72);
}

.ops-mini-pill.warning,
.ops-choice.success.active,
.ops-check-line.danger.active {
  background: rgba(68, 119, 255, 0.18);
}

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

.ops-shortcut {
  justify-content: center;
}

.ops-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 31, 48, 0.96);
  border: 1px solid rgba(111, 128, 179, 0.18);
  color: #a9beff;
}

.ops-form-card {
  padding: 18px;
  display: grid;
  gap: 16px;
  align-content: start;
  grid-auto-rows: max-content;
}

.ops-form-card.compact,
.ops-form-card.mini {
  padding: 18px;
}

.ops-form-top {
  justify-content: space-between;
}

.ops-form-top-split {
  align-items: flex-start;
  justify-content: space-between;
}

.ops-form-heading-side {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.ops-form-heading-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
}

.ops-form-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.ops-form-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(111, 128, 179, 0.14);
  background: rgba(17, 23, 36, 0.62);
}

.ops-choice-grid.compact {
  justify-content: flex-end;
}

.ops-choice-grid.align-right {
  justify-content: flex-end;
}

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

.ops-form-grid .span-2 {
  grid-column: span 2;
}

.ops-form-grid .span-4 {
  grid-column: span 4;
}

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

.ops-radio-group {
  min-width: 200px;
  display: grid;
  gap: 8px;
}

.ops-radio-group-label {
  color: rgba(183, 197, 232, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ops-radio-group-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-radio-option {
  position: relative;
}

.ops-radio-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.ops-radio-option-body {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(109, 126, 175, 0.22);
  background: rgba(16, 24, 40, 0.88);
  color: rgba(226, 235, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ops-radio-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(174, 198, 244, 0.9);
  position: relative;
  flex: 0 0 auto;
}

.ops-radio-option input:checked + .ops-radio-option-body {
  background: linear-gradient(135deg, rgba(31, 107, 245, 0.28), rgba(110, 74, 255, 0.22));
  border-color: rgba(100, 174, 255, 0.4);
  color: #f7fbff;
  box-shadow: 0 0 0 4px rgba(61, 129, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ops-radio-option input:checked + .ops-radio-option-body .ops-radio-indicator::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.ops-radio-option input:hover + .ops-radio-option-body,
.ops-radio-option input:focus-visible + .ops-radio-option-body {
  border-color: rgba(105, 175, 255, 0.34);
  transform: translateY(-1px);
}

.ops-field input,
.ops-field select,
.ops-field textarea {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(111, 128, 179, 0.18);
  background: rgba(15, 21, 34, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ops-field textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.ops-company-picker {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.ops-company-picker select {
  flex: 1 1 240px;
}

.ops-company-picker-action {
  min-height: 52px;
  white-space: nowrap;
  align-self: stretch;
}

.ops-inline-button .ops-primary-button {
  width: 100%;
}

.ops-list-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  padding: 4px 0 6px;
}

.ops-choice-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.ops-list-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding-top: 4px;
  color: rgba(169, 183, 219, 0.72);
  font-size: 0.88rem;
}

.ops-list-summary strong {
  color: #f4f8ff;
  font-size: 0.92rem;
}

.ops-list-summary.compact {
  padding-top: 0;
  gap: 8px 14px;
  font-size: 0.82rem;
}

.ops-list-summary.compact strong {
  font-size: 0.86rem;
}

.ops-procedure-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.ops-procedure-stat {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(108, 126, 178, 0.16);
  background: rgba(14, 20, 33, 0.78);
  display: grid;
  gap: 8px;
}

.ops-procedure-stat strong {
  color: #f7fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.ops-procedure-stat span {
  color: rgba(182, 196, 229, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ops-procedure-stat p {
  margin: 0;
  color: rgba(169, 183, 219, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ops-procedure-stat.brand {
  border-color: rgba(85, 121, 255, 0.28);
  background: linear-gradient(180deg, rgba(16, 24, 44, 0.95), rgba(19, 28, 49, 0.88));
}

.ops-procedure-stat.success {
  border-color: rgba(69, 183, 255, 0.24);
  background: linear-gradient(180deg, rgba(16, 28, 48, 0.95), rgba(17, 32, 54, 0.88));
}

.ops-procedure-stat.warning {
  border-color: rgba(246, 201, 108, 0.24);
  background: linear-gradient(180deg, rgba(34, 27, 18, 0.95), rgba(33, 28, 21, 0.88));
}

.ops-procedure-stat.danger {
  border-color: rgba(255, 118, 110, 0.24);
  background: linear-gradient(180deg, rgba(39, 21, 24, 0.95), rgba(36, 21, 24, 0.88));
}

.ops-procedure-surface {
  padding: 18px 20px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(94, 115, 192, 0.14);
  background:
    radial-gradient(circle at top right, rgba(39, 169, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(138, 60, 255, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(17, 24, 40, 0.98), rgba(22, 29, 45, 0.98));
  box-shadow: 0 28px 80px rgba(5, 11, 28, 0.28);
}

.ops-procedure-surface .ops-field span,
.ops-procedure-surface .ops-radio-group-label {
  color: rgba(208, 220, 248, 0.9);
}

.ops-procedure-surface .ops-field input,
.ops-procedure-surface .ops-field select,
.ops-procedure-surface .ops-field textarea {
  color: #f5f8ff;
}

.ops-procedure-surface .ops-field input::placeholder,
.ops-procedure-surface .ops-field textarea::placeholder {
  color: rgba(168, 183, 220, 0.58);
}

.ops-procedure-warning {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(246, 201, 108, 0.18);
  background: rgba(33, 28, 21, 0.62);
  display: grid;
  gap: 8px;
}

.ops-procedure-warning strong {
  color: #f7d48c;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ops-procedure-warning ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: rgba(230, 234, 246, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ops-procedure-warning p {
  margin: 0;
  color: rgba(230, 234, 246, 0.88);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ops-procedure-warning.success {
  border-color: rgba(69, 183, 255, 0.18);
  background: rgba(18, 32, 52, 0.58);
}

.ops-procedure-warning.success strong {
  color: #97dcff;
}

.ops-procedure-warning.danger {
  border-color: rgba(255, 118, 110, 0.2);
  background: rgba(45, 22, 24, 0.58);
}

.ops-procedure-warning.danger strong {
  color: #ff9f9b;
}

.ops-procedure-checks {
  display: grid;
  gap: 10px;
}

.ops-procedure-checks .ops-check-line {
  color: #eef4ff;
}

.ops-procedure-checks .ops-check-line span:last-child {
  color: inherit;
}

.ops-tech-cell {
  display: grid;
  gap: 4px;
}

.ops-tech-cell strong {
  color: #f5f8ff;
  font-size: 0.92rem;
}

.ops-tech-cell small {
  color: rgba(164, 179, 214, 0.72);
  font-size: 0.75rem;
}

.ops-invoice-toolbar {
  display: grid;
  gap: 12px;
}

.ops-invoice-selection {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
}

.ops-inline-actions.invoice-actions {
  gap: 10px;
}

.ops-invoice-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ops-invoice-flag {
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(111, 128, 179, 0.16);
  background: rgba(17, 24, 39, 0.86);
  color: rgba(223, 232, 249, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.ops-invoice-flag.success {
  color: #9fe4ff;
  border-color: rgba(55, 164, 255, 0.28);
}

.ops-invoice-flag.warning {
  color: #ffd27c;
  border-color: rgba(240, 191, 100, 0.28);
}

.ops-invoice-flag.brand {
  color: #b8b8ff;
  border-color: rgba(136, 99, 255, 0.26);
}

.ops-record-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(111, 128, 179, 0.14);
  background:
    radial-gradient(circle at top right, rgba(73, 111, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(18, 24, 38, 0.96), rgba(22, 29, 43, 0.96));
}

.ops-record-hero-main {
  display: grid;
  gap: 10px;
  align-content: start;
}

.ops-record-kicker {
  color: #8fb1ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ops-record-hero-main h4 {
  margin: 0;
  color: #f7fbff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 1.86rem);
}

.ops-record-hero-main p {
  margin: 0;
  color: rgba(183, 197, 232, 0.72);
  font-size: 0.95rem;
}

.ops-record-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-record-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ops-record-summary-item {
  min-height: 86px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(111, 128, 179, 0.14);
  background: rgba(14, 20, 33, 0.78);
  display: grid;
  gap: 8px;
  align-content: start;
}

.ops-record-summary-item small,
.ops-record-meta-item small {
  color: rgba(173, 188, 224, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ops-record-summary-item strong {
  color: #f4f8ff;
  font-size: 1.18rem;
  line-height: 1.15;
}

.ops-record-summary-item.success {
  border-color: rgba(69, 183, 255, 0.22);
}

.ops-record-summary-item.danger {
  border-color: rgba(189, 95, 84, 0.24);
}

.ops-record-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ops-record-meta-item {
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(111, 128, 179, 0.12);
  background: rgba(14, 20, 33, 0.72);
  display: grid;
  gap: 8px;
  align-content: start;
}

.ops-record-meta-item strong {
  color: #eef3ff;
  font-size: 0.98rem;
  line-height: 1.4;
  word-break: break-word;
}

.ops-record-stack,
.ops-subaccordion-stack,
.ops-history-list {
  display: grid;
  gap: 14px;
}

.ops-record-empty {
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed rgba(111, 128, 179, 0.22);
  background: rgba(13, 19, 31, 0.56);
  color: rgba(183, 197, 232, 0.72);
  font-size: 0.92rem;
}

.ops-accordion {
  border-radius: 22px;
  border: 1px solid rgba(111, 128, 179, 0.14);
  background: linear-gradient(180deg, rgba(24, 31, 47, 0.98), rgba(28, 35, 52, 0.98));
  overflow: hidden;
}

.ops-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  color: #f4f8ff;
  background: linear-gradient(135deg, rgba(42, 77, 155, 0.68), rgba(72, 48, 132, 0.64));
}

.ops-accordion summary::-webkit-details-marker {
  display: none;
}

.ops-accordion-heading {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ops-accordion-heading strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.ops-accordion-badge {
  min-width: 28px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111, 128, 179, 0.16);
  background: rgba(11, 17, 29, 0.5);
  color: #9fb4ff;
  font-size: 0.8rem;
  font-weight: 800;
}

.ops-accordion summary small {
  color: rgba(190, 202, 234, 0.68);
  font-size: 0.82rem;
  text-align: right;
}

.ops-accordion-body {
  padding: 18px 20px 20px;
  display: grid;
  gap: 16px;
}

.ops-accordion.nested {
  border-radius: 18px;
  background: rgba(15, 21, 34, 0.82);
}

.ops-accordion.nested summary {
  padding: 14px 18px;
  background: rgba(28, 43, 74, 0.76);
}

.ops-accordion.nested .ops-accordion-heading strong {
  font-size: 0.94rem;
}

.ops-inline-entry {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(111, 128, 179, 0.12);
  background: rgba(12, 18, 30, 0.54);
}

.ops-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ops-mini-button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(111, 128, 179, 0.18);
  background: rgba(17, 24, 39, 0.86);
  color: #e7eeff;
  font-size: 0.82rem;
  font-weight: 700;
}

.ops-mini-button.success {
  color: #9fe4ff;
  border-color: rgba(55, 164, 255, 0.28);
}

.ops-mini-button.danger {
  color: #ffb0a4;
  border-color: rgba(189, 95, 84, 0.28);
}

.ops-section-divider {
  height: 1px;
  background: rgba(111, 128, 179, 0.12);
}

.ops-inline-hint {
  color: rgba(169, 183, 219, 0.68);
  font-size: 0.84rem;
}

.ops-history-item {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(111, 128, 179, 0.12);
  background: rgba(13, 19, 31, 0.56);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.ops-history-item.compact {
  padding: 14px 16px;
}

.ops-history-item strong {
  display: block;
  color: #f1f6ff;
  margin-bottom: 4px;
}

.ops-history-item p {
  margin: 0;
  color: rgba(183, 197, 232, 0.74);
}

.ops-history-item span {
  color: rgba(163, 177, 213, 0.7);
  font-size: 0.82rem;
  white-space: nowrap;
}

.ops-record-note-box {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(111, 128, 179, 0.14);
  background: rgba(15, 22, 36, 0.74);
  display: grid;
  gap: 8px;
}

.ops-record-note-box strong {
  color: #f4f8ff;
}

.ops-record-note-box p {
  margin: 0;
  color: rgba(183, 197, 232, 0.74);
}

.ops-customer-record-page {
  display: grid;
  gap: 20px;
  padding: 12px 4px 28px;
}

.ops-customer-header {
  display: grid;
  gap: 16px;
  padding: 4px 0 0;
}

.ops-customer-header-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.ops-customer-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ops-customer-refresh {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(241, 196, 103, 0.24);
  background: linear-gradient(180deg, #ffd68b, #ffcd73);
  color: #1e222f;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(255, 202, 104, 0.18);
}

.ops-customer-back {
  min-height: 56px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(111, 128, 179, 0.18);
  background: rgba(13, 18, 32, 0.92);
  color: #f4f8ff;
  font-weight: 700;
}

.ops-customer-header-copy {
  display: grid;
  gap: 10px;
}

.ops-customer-title-link {
  margin: 0;
  color: #8ea8ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.85rem, 2.3vw, 2.5rem);
  line-height: 1.04;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.ops-customer-header-copy p {
  margin: 0;
  color: rgba(199, 208, 229, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.ops-customer-header-copy p strong {
  color: #f0f4ff;
}

.ops-customer-contact-grid {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.ops-customer-contact-line {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.ops-customer-contact-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(201, 209, 229, 0.9);
}

.ops-customer-contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-customer-contact-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.ops-customer-contact-copy strong {
  color: #edf2ff;
  font-size: 1rem;
  font-weight: 800;
}

.ops-customer-contact-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(188, 198, 224, 0.8);
  font-size: 0.98rem;
}

.ops-customer-status-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  padding: 6px 0 2px;
}

.ops-customer-status-copy {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(189, 200, 225, 0.82);
  font-size: 1rem;
}

.ops-customer-status-copy strong {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ops-customer-status-copy strong.success {
  color: #8ea8ff;
}

.ops-customer-status-copy strong.warning {
  color: #ffd27c;
}

.ops-customer-status-copy strong.danger {
  color: #ff9f9b;
}

.ops-customer-status-copy strong.neutral {
  color: #b7c2dc;
}

.ops-customer-status-actions,
.ops-customer-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ops-record-action-button {
  min-width: 190px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(100, 117, 166, 0.32);
  background: rgba(12, 18, 30, 0.9);
  color: #e8eeff;
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ops-record-action-button.success {
  border-color: rgba(56, 189, 248, 0.42);
  color: #9fe4ff;
}

.ops-record-action-button.danger {
  border-color: rgba(180, 105, 96, 0.42);
  color: #ffad9d;
}

.ops-record-action-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.ops-customer-record-page .ops-record-stack {
  gap: 12px;
}

.ops-customer-record-page .ops-accordion {
  border-radius: 18px;
  border: 1px solid rgba(93, 103, 135, 0.18);
  background: linear-gradient(180deg, rgba(24, 28, 39, 0.98), rgba(22, 27, 37, 0.98));
  box-shadow: 0 8px 18px rgba(5, 9, 18, 0.18);
}

.ops-customer-record-page .ops-accordion summary {
  min-height: 74px;
  padding: 0 22px;
  color: #f4f6ff;
  background: #3e455b;
}

.ops-customer-record-page .ops-accordion[open] summary {
  border-bottom: 1px solid rgba(112, 123, 156, 0.16);
}

.ops-customer-record-page .ops-accordion-heading strong {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.ops-customer-record-page .ops-accordion-aside {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ops-customer-record-page .ops-accordion-inline-labels {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: rgba(225, 232, 251, 0.66);
  font-size: 0.9rem;
  font-weight: 700;
}

.ops-customer-record-page .ops-accordion-inline-labels span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ops-customer-record-page .ops-accordion-badge {
  min-width: 28px;
  min-height: 28px;
  padding: 0 8px;
  border: 0;
  background: #8ea8ff;
  color: #22304f;
  box-shadow: none;
}

.ops-customer-record-page .ops-accordion-body {
  padding: 18px 20px 20px;
  gap: 16px;
  background: rgba(21, 25, 35, 0.96);
}

.ops-customer-record-page .ops-accordion.nested {
  border-radius: 16px;
}

.ops-customer-record-page .ops-accordion.nested summary {
  min-height: 62px;
  background: #444c62;
}

.ops-customer-record-page .ops-inline-search,
.ops-customer-inline-search {
  max-width: 340px;
}

.app-shell.authenticated-mode[data-theme="nexus"] {
  background:
    radial-gradient(circle at 18% 10%, rgba(84, 255, 243, 0.16), transparent 18%),
    radial-gradient(circle at 82% 8%, rgba(27, 204, 219, 0.18), transparent 20%),
    radial-gradient(circle at 52% 100%, rgba(10, 103, 110, 0.24), transparent 34%),
    linear-gradient(180deg, #031015 0%, #07181c 38%, #041116 100%);
  color: #dbfbff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .bg-grid {
  background-image:
    linear-gradient(rgba(96, 255, 249, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 255, 249, 0.08) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 94%);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-topbar,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-page,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-table-card,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-form-card,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-section-card,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-kpi-card,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-table-card,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-record-note-box,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-sidebar,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-card,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-kpi-card {
  border-color: rgba(90, 246, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(53, 235, 255, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(33, 157, 172, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(7, 24, 28, 0.98), rgba(6, 19, 23, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(195, 255, 252, 0.04),
    0 28px 80px rgba(1, 10, 12, 0.36);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-sidebar {
  background:
    radial-gradient(circle at 18% 0%, rgba(46, 239, 255, 0.14), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(18, 132, 143, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(7, 22, 27, 0.99), rgba(4, 17, 21, 0.99));
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-company,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-sidebar-foot {
  border-color: rgba(91, 236, 248, 0.12);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-brand-mark-wrap .brand-mark {
  filter: drop-shadow(0 0 22px rgba(78, 246, 255, 0.26));
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-brand-copy strong,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-page-head h3,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-form-title h4,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-title-link,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-mini-row strong,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-kpi-card strong,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-contact-copy strong,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-header-copy p strong,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-list-summary strong,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-head h2,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-card-head h4,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-kpi-value,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-table strong,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-donut-core strong {
  color: #ebffff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-brand-copy span,
.app-shell.authenticated-mode[data-theme="nexus"] .top-search-icon,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-theme-switch-icon,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-link-button,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-title-link,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-table-trigger:hover,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-table-trigger:focus-visible {
  color: #6ff8ff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-brand-copy small,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-page-head p,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-form-title p,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-kpi-card span,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field span,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-detail-list span,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-kpi-card small,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-list-summary,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-record-note-box p,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-header-copy p,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-contact-extras,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-status-copy,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-mini-row span,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-procedure-stat span,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-procedure-stat p,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-head p,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-card-head span,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-footer,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-donut-row small,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-subrow,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-table th,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-empty-cell,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-map-legend,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-topbar-shortcut {
  color: rgba(177, 235, 239, 0.72);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-topbar-search,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-inline-search,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field input,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field select,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field textarea,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice-control-body,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-radio-option-body,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-form-meta-bar,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-tag,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-overview-pill,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-overview-status-pill,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-user-pill,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-back,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-record-action-button,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-filter-pill,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-sector-pill,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-mini-pill,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-theme-switch,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-procedure-stat,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-record-note-box,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion-body,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-date-chip,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-filter-chip,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-action-tile,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-map-stage,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-table-legend-item {
  border-color: rgba(81, 236, 248, 0.18);
  background:
    linear-gradient(180deg, rgba(10, 31, 35, 0.94), rgba(6, 21, 24, 0.96));
  color: #dffeff;
  box-shadow:
    inset 0 1px 0 rgba(188, 255, 252, 0.04),
    0 12px 24px rgba(1, 10, 12, 0.16);
  backdrop-filter: blur(18px);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-topbar-search input,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-inline-search input,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field input,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field select,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field textarea,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-theme-switch select {
  color: #e8ffff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-topbar-search input::placeholder,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-inline-search input::placeholder,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field input::placeholder,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-field textarea::placeholder {
  color: rgba(156, 227, 230, 0.58);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-theme-switch:focus-within,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-icon-button:focus-visible,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-topbar-search:focus-within {
  border-color: rgba(102, 255, 249, 0.5);
  box-shadow:
    0 0 0 3px rgba(64, 243, 255, 0.12),
    inset 0 1px 0 rgba(203, 255, 254, 0.06),
    0 16px 30px rgba(1, 11, 13, 0.22);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-icon-button,
.app-shell.authenticated-mode[data-theme="nexus"] .logout-button,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-tool-button.export,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-secondary-button,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-tool-button.success,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-tool-button.danger {
  border-color: rgba(84, 231, 243, 0.18);
  background: linear-gradient(180deg, rgba(12, 34, 38, 0.98), rgba(7, 23, 27, 0.96));
  color: #e8ffff;
  box-shadow:
    inset 0 1px 0 rgba(204, 255, 253, 0.05),
    0 12px 24px rgba(1, 10, 12, 0.18);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-icon-button:hover,
.app-shell.authenticated-mode[data-theme="nexus"] .logout-button:hover,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-tool-button.export:hover,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-secondary-button:hover,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-tool-button.success:hover,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-tool-button.danger:hover {
  border-color: rgba(108, 255, 248, 0.34);
  background: linear-gradient(180deg, rgba(15, 45, 50, 1), rgba(8, 27, 31, 0.98));
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-tool-icon,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-tool-button.accent,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-primary-button,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-shortcut,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-record-action-button.success,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-section-card-head {
  background: linear-gradient(135deg, #11d6d0, #0f7fa1);
  border-color: transparent;
  color: #021014;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-section-card.muted .ops-section-card-head {
  color: #083138;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-root,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-group-head,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-branch-head,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-leaf {
  color: rgba(201, 246, 247, 0.8);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-root.reduce,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-branch-head,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-leaf {
  color: rgba(173, 224, 227, 0.72);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-root.active,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-group.active > .ops-nav-group-head {
  background: linear-gradient(135deg, rgba(47, 242, 238, 0.18), rgba(15, 120, 153, 0.34));
  color: #f0ffff;
  box-shadow: inset 0 0 0 1px rgba(98, 255, 249, 0.08);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-branch.active > .ops-nav-branch-head,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-leaf.active {
  color: #dbffff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-nav-leaf.active {
  background: rgba(16, 82, 92, 0.38);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-filter-pill.active,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice.active,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-mini-pill.success,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-mini-pill.warning,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice-control input:checked + .ops-choice-control-body {
  background: linear-gradient(135deg, rgba(24, 174, 183, 0.26), rgba(16, 108, 138, 0.3));
  border-color: rgba(105, 251, 255, 0.28);
  color: #f0ffff;
  box-shadow: 0 0 0 4px rgba(38, 220, 232, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice-control input:hover + .ops-choice-control-body,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice-control input:focus-visible + .ops-choice-control-body {
  border-color: rgba(107, 249, 255, 0.3);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-filter-pill-dot,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice-dot,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-mini-pill::before,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-select-box,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-fake-check,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-check-box {
  border-color: rgba(127, 244, 247, 0.46);
  background: rgba(5, 19, 23, 0.9);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-filter-pill.active .ops-filter-pill-dot,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice.active .ops-choice-dot,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-choice-control input:checked + .ops-choice-control-body .ops-choice-dot,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-mini-pill.success::before,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-mini-pill.warning::before,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-row-select.is-selected .ops-select-box {
  border-color: rgba(140, 255, 250, 0.9);
  background: linear-gradient(135deg, #29ded7, #1294ba);
  box-shadow: 0 0 0 4px rgba(54, 242, 255, 0.12);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-table th,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-table th,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-table th {
  color: rgba(153, 226, 228, 0.66);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-table td,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-table td,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-empty-cell,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-table,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-donut-row strong {
  color: rgba(222, 255, 255, 0.86);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-table th,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-table td,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-table th,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-table td,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-table th,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-table td {
  border-bottom-color: rgba(73, 179, 188, 0.16);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-table tbody tr:hover,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-table tbody tr.active,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-table tbody tr.active td {
  background: rgba(15, 80, 88, 0.34);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion summary,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion.nested summary {
  color: #e7ffff;
  background: linear-gradient(180deg, rgba(12, 49, 56, 0.92), rgba(8, 34, 40, 0.98));
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion[open] summary {
  border-bottom-color: rgba(84, 232, 243, 0.14);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion-inline-labels,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion-aside,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion-badge {
  color: #bffcff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-customer-record-page .ops-accordion-badge {
  background: #0ea5a7;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-line {
  stroke: #63f4ff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-point {
  fill: #e6ffff;
  stroke: #63f4ff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-area {
  fill: rgba(99, 244, 255, 0.14);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-axis,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-table thead tr,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-table tbody tr + tr,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-donut-row + .ops-dashboard-donut-row {
  stroke: rgba(79, 198, 206, 0.2);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-label,
.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-callout-date {
  fill: rgba(169, 235, 239, 0.68);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-chart-callout rect {
  fill: rgba(5, 22, 27, 0.95);
  stroke: rgba(96, 237, 248, 0.24);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-callout-value {
  fill: #eeffff;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-donut-core {
  background: rgba(4, 17, 21, 0.98);
  box-shadow: inset 0 0 0 1px rgba(86, 230, 239, 0.14);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-map-stage {
  background:
    linear-gradient(rgba(86, 232, 242, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 232, 242, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 70% 24%, rgba(86, 244, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(5, 21, 26, 0.98), rgba(4, 16, 21, 0.96));
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-map-glow {
  border-color: rgba(81, 240, 250, 0.18);
}

.app-shell.authenticated-mode[data-theme="nexus"] .ops-dashboard-action-tile {
  text-shadow: 0 0 18px rgba(73, 241, 250, 0.08);
}

.app-shell.authenticated-mode[data-theme="orbit"] {
  background:
    radial-gradient(circle at 14% 10%, rgba(129, 228, 255, 0.16), transparent 18%),
    radial-gradient(circle at 84% 8%, rgba(90, 185, 255, 0.2), transparent 22%),
    radial-gradient(circle at 52% 42%, rgba(50, 112, 255, 0.16), transparent 26%),
    radial-gradient(circle at 74% 100%, rgba(7, 48, 118, 0.34), transparent 32%),
    linear-gradient(180deg, #04122f 0%, #082761 42%, #031028 100%);
  color: #ebf7ff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .bg-grid {
  background-image:
    linear-gradient(rgba(123, 197, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 197, 255, 0.09) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 94%);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-topbar,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-page,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-table-card,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-form-card,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-section-card,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-kpi-card,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-table-card,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-record-note-box,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-sidebar,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-card,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-kpi-card {
  border-color: rgba(117, 194, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(100, 214, 255, 0.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(65, 125, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(8, 25, 61, 0.98), rgba(5, 18, 45, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(216, 242, 255, 0.05),
    0 30px 82px rgba(3, 10, 31, 0.4);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-sidebar {
  background:
    radial-gradient(circle at 18% 0%, rgba(122, 228, 255, 0.14), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(61, 117, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(6, 21, 54, 0.99), rgba(4, 14, 35, 0.99));
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-company,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-sidebar-foot {
  border-color: rgba(126, 199, 255, 0.12);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-brand-mark-wrap .brand-mark {
  filter: drop-shadow(0 0 24px rgba(104, 206, 255, 0.26));
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-brand-copy strong,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-page-head h3,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-form-title h4,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-title-link,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-mini-row strong,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-kpi-card strong,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-contact-copy strong,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-header-copy p strong,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-list-summary strong,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-head h2,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-card-head h4,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-kpi-value,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-table strong,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-donut-core strong {
  color: #f6fbff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-brand-copy span,
.app-shell.authenticated-mode[data-theme="orbit"] .top-search-icon,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-theme-switch-icon,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-link-button,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-title-link,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-table-trigger:hover,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-table-trigger:focus-visible {
  color: #8ee4ff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-brand-copy small,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-page-head p,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-form-title p,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-kpi-card span,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field span,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-detail-list span,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-kpi-card small,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-list-summary,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-record-note-box p,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-header-copy p,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-contact-extras,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-status-copy,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-mini-row span,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-procedure-stat span,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-procedure-stat p,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-head p,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-card-head span,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-footer,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-donut-row small,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-subrow,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-table th,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-empty-cell,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-map-legend,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-topbar-shortcut {
  color: rgba(196, 223, 255, 0.72);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-topbar-search,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-inline-search,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field input,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field select,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field textarea,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice-control-body,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-radio-option-body,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-form-meta-bar,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-tag,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-overview-pill,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-overview-status-pill,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-user-pill,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-back,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-record-action-button,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-filter-pill,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-sector-pill,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-mini-pill,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-theme-switch,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-procedure-stat,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-record-note-box,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion-body,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-date-chip,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-filter-chip,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-action-tile,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-map-stage,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-table-legend-item {
  border-color: rgba(117, 194, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(9, 31, 76, 0.94), rgba(5, 19, 49, 0.96));
  color: #e8f6ff;
  box-shadow:
    inset 0 1px 0 rgba(219, 243, 255, 0.05),
    0 14px 26px rgba(3, 10, 31, 0.2);
  backdrop-filter: blur(18px);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-topbar-search input,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-inline-search input,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field input,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field select,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field textarea,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-theme-switch select {
  color: #f1fbff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-topbar-search input::placeholder,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-inline-search input::placeholder,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field input::placeholder,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-field textarea::placeholder {
  color: rgba(177, 214, 255, 0.58);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-theme-switch:focus-within,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-icon-button:focus-visible,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-topbar-search:focus-within {
  border-color: rgba(119, 204, 255, 0.5);
  box-shadow:
    0 0 0 3px rgba(96, 202, 255, 0.12),
    inset 0 1px 0 rgba(220, 244, 255, 0.06),
    0 16px 30px rgba(2, 11, 32, 0.24);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-icon-button,
.app-shell.authenticated-mode[data-theme="orbit"] .logout-button,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-tool-button.export,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-secondary-button,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-tool-button.success,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-tool-button.danger {
  border-color: rgba(121, 196, 255, 0.2);
  background: linear-gradient(180deg, rgba(10, 34, 82, 0.98), rgba(6, 21, 54, 0.96));
  color: #eff8ff;
  box-shadow:
    inset 0 1px 0 rgba(220, 243, 255, 0.05),
    0 12px 24px rgba(3, 10, 31, 0.18);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-icon-button:hover,
.app-shell.authenticated-mode[data-theme="orbit"] .logout-button:hover,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-tool-button.export:hover,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-secondary-button:hover,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-tool-button.success:hover,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-tool-button.danger:hover {
  border-color: rgba(142, 217, 255, 0.36);
  background: linear-gradient(180deg, rgba(14, 43, 103, 1), rgba(7, 26, 65, 0.98));
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-tool-icon,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-tool-button.accent,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-primary-button,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-shortcut,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-record-action-button.success,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-section-card-head {
  background: linear-gradient(135deg, #53dbff, #2d67ff);
  border-color: transparent;
  color: #03142d;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-section-card.muted .ops-section-card-head {
  color: #0b2f54;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-root,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-group-head,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-branch-head,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-leaf {
  color: rgba(212, 234, 255, 0.82);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-root.reduce,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-branch-head,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-leaf {
  color: rgba(184, 213, 248, 0.76);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-root.active,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-group.active > .ops-nav-group-head {
  background: linear-gradient(135deg, rgba(80, 217, 255, 0.18), rgba(47, 88, 255, 0.34));
  color: #f8fcff;
  box-shadow: inset 0 0 0 1px rgba(143, 221, 255, 0.08);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-branch.active > .ops-nav-branch-head,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-leaf.active {
  color: #f2fbff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-nav-leaf.active {
  background: rgba(24, 63, 136, 0.36);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-filter-pill.active,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice.active,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-mini-pill.success,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-mini-pill.warning,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice-control input:checked + .ops-choice-control-body {
  background: linear-gradient(135deg, rgba(86, 217, 255, 0.24), rgba(49, 87, 246, 0.32));
  border-color: rgba(152, 225, 255, 0.28);
  color: #f7fbff;
  box-shadow: 0 0 0 4px rgba(83, 175, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice-control input:hover + .ops-choice-control-body,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice-control input:focus-visible + .ops-choice-control-body {
  border-color: rgba(144, 220, 255, 0.3);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-filter-pill-dot,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice-dot,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-mini-pill::before,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-select-box,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-fake-check,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-check-box {
  border-color: rgba(146, 216, 255, 0.46);
  background: rgba(5, 19, 49, 0.9);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-filter-pill.active .ops-filter-pill-dot,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice.active .ops-choice-dot,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-choice-control input:checked + .ops-choice-control-body .ops-choice-dot,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-mini-pill.success::before,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-mini-pill.warning::before,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-row-select.is-selected .ops-select-box {
  border-color: rgba(180, 234, 255, 0.92);
  background: linear-gradient(135deg, #70e1ff, #2e68ff);
  box-shadow: 0 0 0 4px rgba(88, 180, 255, 0.12);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-table th,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-table th,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-table th {
  color: rgba(167, 213, 255, 0.68);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-table td,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-table td,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-empty-cell,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-table,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-donut-row strong {
  color: rgba(235, 247, 255, 0.88);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-table th,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-table td,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-table th,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-table td,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-table th,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-table td {
  border-bottom-color: rgba(91, 145, 222, 0.18);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-table tbody tr:hover,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-table tbody tr.active,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-table tbody tr.active td {
  background: rgba(25, 72, 157, 0.34);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion summary,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion.nested summary {
  color: #f3fbff;
  background: linear-gradient(180deg, rgba(13, 46, 104, 0.92), rgba(7, 27, 64, 0.98));
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion[open] summary {
  border-bottom-color: rgba(123, 198, 255, 0.14);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion-inline-labels,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion-aside,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion-badge {
  color: #d2f0ff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-customer-record-page .ops-accordion-badge {
  background: #2b6dff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-line {
  stroke: #81e0ff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-point {
  fill: #f5fbff;
  stroke: #81e0ff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-area {
  fill: rgba(129, 224, 255, 0.16);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-axis,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-table thead tr,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-table tbody tr + tr,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-donut-row + .ops-dashboard-donut-row {
  stroke: rgba(99, 156, 236, 0.22);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-label,
.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-callout-date {
  fill: rgba(183, 221, 255, 0.72);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-chart-callout rect {
  fill: rgba(5, 19, 48, 0.95);
  stroke: rgba(128, 208, 255, 0.26);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-callout-value {
  fill: #f6fbff;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-donut-core {
  background: rgba(4, 14, 35, 0.98);
  box-shadow: inset 0 0 0 1px rgba(123, 196, 255, 0.18);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-map-stage {
  background:
    radial-gradient(circle at 50% 50%, rgba(132, 220, 255, 0.12) 0 18%, transparent 19% 24%, rgba(132, 220, 255, 0.08) 25% 26%, transparent 27% 100%),
    linear-gradient(rgba(108, 185, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 185, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 76% 24%, rgba(79, 213, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(5, 20, 50, 0.98), rgba(4, 14, 35, 0.96));
  background-size: auto, 34px 34px, 34px 34px, auto, auto;
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-map-glow {
  border-color: rgba(127, 201, 255, 0.2);
}

.app-shell.authenticated-mode[data-theme="orbit"] .ops-dashboard-action-tile {
  text-shadow: 0 0 18px rgba(93, 186, 255, 0.12);
}

.app-shell.authenticated-mode[data-theme="mist"] {
  background:
    radial-gradient(circle at top left, rgba(112, 137, 198, 0.18), transparent 22%),
    radial-gradient(circle at top right, rgba(114, 193, 204, 0.16), transparent 20%),
    linear-gradient(180deg, #ebf0f7 0%, #e1e8f2 42%, #d7e0eb 100%);
  color: #172135;
}

.app-shell.authenticated-mode[data-theme="mist"] .bg-grid {
  background-image:
    linear-gradient(rgba(118, 136, 173, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 136, 173, 0.12) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 92%);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-topbar,
.app-shell.authenticated-mode[data-theme="mist"] .ops-page,
.app-shell.authenticated-mode[data-theme="mist"] .ops-table-card,
.app-shell.authenticated-mode[data-theme="mist"] .ops-form-card,
.app-shell.authenticated-mode[data-theme="mist"] .ops-section-card,
.app-shell.authenticated-mode[data-theme="mist"] .ops-kpi-card,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-table-card,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion,
.app-shell.authenticated-mode[data-theme="mist"] .ops-record-note-box {
  border-color: rgba(132, 149, 186, 0.24);
  background:
    radial-gradient(circle at top right, rgba(118, 182, 223, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(169, 167, 233, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(245, 248, 253, 0.98), rgba(232, 238, 246, 0.98));
  box-shadow: 0 24px 56px rgba(92, 112, 150, 0.14);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-topbar-search,
.app-shell.authenticated-mode[data-theme="mist"] .ops-inline-search,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field input,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field select,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field textarea,
.app-shell.authenticated-mode[data-theme="mist"] .ops-choice-control-body,
.app-shell.authenticated-mode[data-theme="mist"] .ops-radio-option-body,
.app-shell.authenticated-mode[data-theme="mist"] .ops-form-meta-bar,
.app-shell.authenticated-mode[data-theme="mist"] .ops-tag,
.app-shell.authenticated-mode[data-theme="mist"] .ops-overview-pill,
.app-shell.authenticated-mode[data-theme="mist"] .ops-overview-status-pill,
.app-shell.authenticated-mode[data-theme="mist"] .ops-user-pill,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-back,
.app-shell.authenticated-mode[data-theme="mist"] .ops-record-action-button,
.app-shell.authenticated-mode[data-theme="mist"] .ops-filter-pill,
.app-shell.authenticated-mode[data-theme="mist"] .ops-choice,
.app-shell.authenticated-mode[data-theme="mist"] .ops-sector-pill,
.app-shell.authenticated-mode[data-theme="mist"] .ops-mini-pill,
.app-shell.authenticated-mode[data-theme="mist"] .ops-theme-switch,
.app-shell.authenticated-mode[data-theme="mist"] .ops-procedure-stat,
.app-shell.authenticated-mode[data-theme="mist"] .ops-record-note-box,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion-body {
  border-color: rgba(137, 154, 191, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: #1f2a3e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 12px 24px rgba(105, 123, 157, 0.08);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-icon-button {
  border-color: rgba(126, 149, 194, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(233, 239, 247, 0.96));
  color: #25324b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(105, 123, 157, 0.08);
}

.app-shell.authenticated-mode[data-theme="mist"] .logout-button:hover,
.app-shell.authenticated-mode[data-theme="mist"] .ops-icon-button:hover {
  border-color: rgba(105, 144, 210, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(224, 233, 245, 0.98));
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-page-head h3,
.app-shell.authenticated-mode[data-theme="mist"] .ops-form-title h4,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-title-link,
.app-shell.authenticated-mode[data-theme="mist"] .ops-mini-row strong,
.app-shell.authenticated-mode[data-theme="mist"] .ops-kpi-card strong,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-contact-copy strong,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-header-copy p strong,
.app-shell.authenticated-mode[data-theme="mist"] .ops-list-summary strong {
  color: #182236;
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-title-link {
  text-decoration-color: rgba(73, 119, 210, 0.4);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-page-head p,
.app-shell.authenticated-mode[data-theme="mist"] .ops-form-title p,
.app-shell.authenticated-mode[data-theme="mist"] .ops-kpi-card span,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field span,
.app-shell.authenticated-mode[data-theme="mist"] .ops-detail-list span,
.app-shell.authenticated-mode[data-theme="mist"] .ops-kpi-card small,
.app-shell.authenticated-mode[data-theme="mist"] .ops-list-summary,
.app-shell.authenticated-mode[data-theme="mist"] .ops-record-note-box p,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-header-copy p,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-contact-extras,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-status-copy,
.app-shell.authenticated-mode[data-theme="mist"] .ops-mini-row span,
.app-shell.authenticated-mode[data-theme="mist"] .ops-procedure-stat span,
.app-shell.authenticated-mode[data-theme="mist"] .ops-procedure-stat p {
  color: rgba(59, 73, 100, 0.8);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-topbar-search input,
.app-shell.authenticated-mode[data-theme="mist"] .ops-inline-search input,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field input,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field select,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field textarea,
.app-shell.authenticated-mode[data-theme="mist"] .ops-theme-switch select {
  color: #162136;
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-topbar-search input::placeholder,
.app-shell.authenticated-mode[data-theme="mist"] .ops-inline-search input::placeholder,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field input::placeholder,
.app-shell.authenticated-mode[data-theme="mist"] .ops-field textarea::placeholder {
  color: rgba(94, 109, 141, 0.7);
}

.app-shell.authenticated-mode[data-theme="mist"] .top-search-icon,
.app-shell.authenticated-mode[data-theme="mist"] .ops-theme-switch-icon {
  color: #4977d2;
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-topbar-shortcut {
  border-color: rgba(132, 149, 186, 0.22);
  color: rgba(68, 82, 109, 0.72);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-table th,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-table th {
  color: rgba(79, 95, 126, 0.82);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-table td,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-table td,
.app-shell.authenticated-mode[data-theme="mist"] .ops-empty-cell {
  color: rgba(38, 49, 73, 0.86);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-table th,
.app-shell.authenticated-mode[data-theme="mist"] .ops-table td,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-table th,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-table td {
  border-bottom-color: rgba(145, 160, 192, 0.18);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-table tbody tr:hover,
.app-shell.authenticated-mode[data-theme="mist"] .ops-table tbody tr.active,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-table tbody tr.active td {
  background: rgba(130, 156, 203, 0.12);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-table-trigger:hover,
.app-shell.authenticated-mode[data-theme="mist"] .ops-table-trigger:focus-visible {
  color: #3357b8;
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-select-box,
.app-shell.authenticated-mode[data-theme="mist"] .ops-fake-check,
.app-shell.authenticated-mode[data-theme="mist"] .ops-check-box {
  border-color: rgba(134, 149, 184, 0.58);
  background: rgba(255, 255, 255, 0.82);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion summary,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion.nested summary {
  color: #1b2436;
  background: linear-gradient(180deg, rgba(205, 214, 230, 0.88), rgba(187, 198, 218, 0.94));
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion[open] summary {
  border-bottom-color: rgba(132, 149, 186, 0.26);
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion-inline-labels,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion-aside,
.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion-badge {
  color: #22304f;
}

.app-shell.authenticated-mode[data-theme="mist"] .ops-customer-record-page .ops-accordion-badge {
  background: #84a2ff;
}

.ops-customer-table-card {
  border: 1px solid rgba(92, 102, 135, 0.2);
  border-radius: 0;
  background: rgba(24, 29, 40, 0.95);
}

.ops-customer-table {
  table-layout: fixed;
}

.ops-customer-table th,
.ops-customer-table td {
  padding: 12px 14px;
  border-bottom-color: rgba(108, 118, 150, 0.16);
  color: rgba(229, 234, 248, 0.88);
  font-size: 0.94rem;
}

.ops-customer-table th {
  color: rgba(187, 195, 218, 0.74);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

.ops-customer-table tbody tr.active td {
  background: rgba(36, 42, 60, 0.8);
}

.ops-customer-table tbody td strong {
  color: #f3f6ff;
}

.ops-col-invoice-bank {
  width: 72px;
}

.ops-col-invoice-flags {
  width: 68px;
}

.ops-col-invoice-id {
  width: 110px;
  white-space: nowrap;
}

.ops-col-invoice-document {
  width: 270px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.ops-col-invoice-reference {
  width: 220px;
  white-space: nowrap;
}

.ops-col-invoice-date {
  width: 140px;
  white-space: nowrap;
}

.ops-col-invoice-money {
  width: 120px;
  white-space: nowrap;
}

.ops-customer-table-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(108, 118, 150, 0.14);
  background: rgba(48, 53, 67, 0.74);
  color: rgba(239, 243, 255, 0.92);
  font-size: 0.92rem;
}

.ops-customer-table-footer strong {
  color: #f5f7ff;
}

.ops-customer-table-footer span {
  color: rgba(183, 192, 214, 0.58);
}

.ops-customer-selection-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.ops-customer-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ops-customer-page-pill {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(101, 116, 162, 0.34);
  background: rgba(16, 21, 33, 0.9);
  color: #d7e2ff;
  font-size: 1rem;
  font-weight: 800;
}

.ops-customer-page-pill.active {
  border-color: rgba(109, 93, 251, 0.46);
  background: linear-gradient(180deg, #5d86ff, #5b72f4);
  color: #f7fbff;
}

.ops-customer-inline-form {
  border-radius: 16px;
  border-color: rgba(89, 102, 138, 0.24);
  background: rgba(26, 31, 43, 0.92);
}

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

.ops-customer-boleto-form {
  gap: 18px;
}

.ops-customer-boleto-bank-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(98, 118, 170, 0.22);
  background: linear-gradient(180deg, rgba(17, 25, 42, 0.96), rgba(10, 17, 30, 0.96));
}

.ops-customer-boleto-bank-card.warning {
  border-color: rgba(214, 145, 88, 0.38);
}

.ops-customer-boleto-bank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(252, 221, 106, 0.94), rgba(221, 180, 58, 0.94));
  color: #14233d;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-customer-boleto-bank-copy {
  display: grid;
  gap: 4px;
}

.ops-customer-boleto-bank-copy strong {
  color: #edf3ff;
  font-size: 1.08rem;
  font-weight: 800;
}

.ops-customer-boleto-bank-copy span {
  color: rgba(196, 208, 236, 0.82);
  font-size: 0.94rem;
}

.ops-customer-boleto-grid .span-3 {
  grid-column: span 3;
}

.ops-customer-boleto-helper {
  color: rgba(198, 209, 235, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.ops-customer-boleto-choice-row {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.ops-customer-annotation-form {
  gap: 14px;
}

.ops-customer-annotation-form .ops-field {
  gap: 0;
}

.ops-customer-annotation-form .ops-field > span {
  display: none;
}

.ops-customer-annotation-form .ops-field textarea {
  min-height: 320px;
  border-radius: 0;
  resize: vertical;
}

.ops-customer-record-page .ops-record-empty {
  border-radius: 0;
  border-style: solid;
  border-color: rgba(94, 103, 134, 0.18);
  background: rgba(23, 27, 37, 0.96);
}

.ops-customer-record-page .ops-empty-cell {
  padding: 24px 12px;
}

@media (max-width: 980px) {
  .ops-customer-header-top {
    grid-template-columns: 1fr;
  }

  .ops-customer-header-actions {
    width: 100%;
  }

  .ops-customer-refresh {
    width: 52px;
    height: 52px;
  }

  .ops-customer-back {
    min-height: 52px;
  }

  .ops-customer-status-bar {
    align-items: stretch;
  }

  .ops-record-action-button {
    min-width: 160px;
  }
}

@media (max-width: 720px) {
  .ops-customer-title-link {
    font-size: 1.45rem;
  }

  .ops-customer-contact-line {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .ops-record-action-button {
    width: 100%;
    min-width: 0;
  }

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

  .ops-customer-boleto-bank-card {
    grid-template-columns: 1fr;
  }

  .ops-customer-boleto-choice-row {
    grid-template-columns: 1fr;
  }

  .ops-customer-inline-form .ops-form-grid .span-2,
  .ops-customer-inline-form .ops-form-grid .span-3,
  .ops-customer-inline-form .ops-form-grid .span-4 {
    grid-column: span 2;
  }
}

.ops-check-grid,
.ops-sector-checkboxes {
  display: grid;
  gap: 10px;
}

.ops-check-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(226, 235, 255, 0.92);
  min-height: 48px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid rgba(109, 126, 175, 0.22);
  background: rgba(16, 24, 40, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ops-check-line.interactive {
  position: relative;
  cursor: pointer;
}

.ops-check-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.ops-check-line.active .ops-check-box {
  background: #4f7dff;
  border-color: #4f7dff;
  box-shadow: 0 0 0 4px rgba(79, 125, 255, 0.16);
}

.ops-check-line.interactive .ops-check-input:checked ~ span:last-child,
.ops-check-line.active span:last-child {
  color: #f7fbff;
}

.ops-check-line.interactive .ops-check-input:checked ~ .ops-check-box,
.ops-check-line.active .ops-check-box {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  border-color: rgba(115, 188, 255, 0.95);
}

.ops-check-line.interactive .ops-check-input:checked + .ops-check-box {
  box-shadow: 0 0 0 4px rgba(79, 125, 255, 0.16);
}

.ops-check-line.active {
  background: linear-gradient(135deg, rgba(31, 107, 245, 0.28), rgba(110, 74, 255, 0.22));
  border-color: rgba(100, 174, 255, 0.4);
  color: #f7fbff;
  box-shadow: 0 0 0 4px rgba(61, 129, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ops-check-line.interactive:hover,
.ops-check-line.interactive:focus-within {
  border-color: rgba(105, 175, 255, 0.34);
  transform: translateY(-1px);
}

.ops-check-line.danger {
  color: #ff907f;
}

.ops-primary-button,
.ops-secondary-button {
  min-width: 160px;
  justify-content: center;
}

.ops-primary-button.soft {
  background: linear-gradient(135deg, #4a73f5, #5683ff);
}

.ops-upload-pill {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #4b72ff, #5d88ff);
  color: #fff;
  font-weight: 700;
}

.ops-upload-pill input {
  display: none;
}

.ops-muted-note {
  color: rgba(188, 201, 236, 0.74);
  line-height: 1.7;
}

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

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

.ops-permission-column strong {
  color: #8fb0ff;
  font-size: 1.05rem;
}

.ops-permission-list {
  display: grid;
  gap: 10px;
}

.ops-sector-pill {
  position: relative;
  padding-right: 18px;
}

.ops-sector-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.ops-sector-pill span {
  color: #e7efff;
}

.ops-alert-block {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(18, 24, 37, 0.92);
  border: 1px solid rgba(111, 128, 179, 0.18);
  color: rgba(203, 213, 236, 0.8);
  line-height: 1.6;
}

.ops-alert-block strong {
  display: block;
  color: #ffd58c;
  margin-bottom: 8px;
}

.ops-alert-block .danger-copy {
  color: #ff7e67;
  font-weight: 700;
}

.ops-alert-block .success-copy {
  color: #72d59a;
  font-weight: 700;
}

.ops-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.ops-detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(113, 128, 176, 0.1);
}

.ops-detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ops-detail-list strong {
  color: #f4f8ff;
}

.ops-placeholder-panel {
  min-height: 200px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ops-placeholder-panel div {
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(40, 52, 80, 0.96), rgba(30, 40, 63, 0.96));
  border: 1px solid rgba(111, 128, 179, 0.16);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reference-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.reference-login-frame {
  width: min(100vw, 1618px);
}

.reference-login-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1618 / 972;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: #030714;
}

.reference-login-art {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.reference-login-overlay {
  position: absolute;
  inset: 0;
}

.reference-login-input,
.reference-login-submit,
.reference-login-sso,
.reference-login-toggle,
.reference-login-remember {
  position: absolute;
}

.reference-login-input {
  width: 25.9%;
  height: 5.9%;
  padding: 0 4.6% 0 3.7%;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #f2f6ff;
  caret-color: #f2f6ff;
  font-size: clamp(0.74rem, 1.05vw, 1.1rem);
  font-weight: 600;
  outline: none;
}

.reference-login-input::placeholder {
  color: transparent;
}

.reference-login-input:focus {
  box-shadow: inset 0 0 0 2px rgba(54, 124, 255, 0.42);
}

.reference-login-input.username {
  left: 70.45%;
  top: 35.2%;
}

.reference-login-input.password {
  left: 70.45%;
  top: 47.08%;
}

.reference-login-remember {
  left: 70.3%;
  top: 54.88%;
  width: 2.2%;
  height: 3.4%;
  display: block;
}

.reference-login-remember input {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.reference-login-submit,
.reference-login-sso,
.reference-login-toggle {
  border: 0;
  background: transparent;
  color: transparent;
}

.reference-login-submit {
  left: 70.3%;
  top: 61.2%;
  width: 26.2%;
  height: 5.95%;
  border-radius: 16px;
}

.reference-login-sso {
  left: 70.32%;
  top: 74.25%;
  width: 26.15%;
  height: 5.8%;
  border-radius: 16px;
}

.reference-login-toggle {
  left: 93.65%;
  top: 48.1%;
  width: 1.85%;
  height: 3.4%;
  border-radius: 999px;
}

.reference-login-alert {
  position: absolute;
  left: 70.45%;
  top: 29.4%;
  width: 25.9%;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(132, 28, 53, 0.88);
  border: 1px solid rgba(255, 130, 155, 0.32);
  color: #ffe8ef;
  font-size: clamp(0.72rem, 0.95vw, 0.96rem);
  line-height: 1.35;
  box-shadow: 0 10px 30px rgba(62, 8, 23, 0.34);
}

@media (max-width: 1240px) {
  .ops-topbar {
    grid-template-columns: minmax(0, 1fr);
  }

  .ops-topbar-overview .ops-topbar-actions {
    flex-wrap: wrap;
  }

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

  .ops-sidebar {
    order: 2;
  }

  .ops-kpi-grid,
  .ops-grid.two,
  .ops-permission-grid,
  .ops-record-meta-grid,
  .ops-dashboard-kpis,
  .ops-dashboard-table-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-record-hero,
  .ops-dashboard-main-grid,
  .ops-dashboard-bottom-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .ops-form-grid,
  .ops-kpi-grid,
  .ops-grid.two,
  .ops-permission-grid,
  .ops-action-grid,
  .ops-record-meta-grid,
  .ops-record-summary,
  .ops-dashboard-kpis,
  .ops-dashboard-table-grid,
  .ops-dashboard-action-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ops-form-grid .span-2,
  .ops-form-grid .span-4 {
    grid-column: span 1;
  }

  .ops-toolbar,
  .ops-search-row,
  .ops-history-item {
    align-items: stretch;
  }

  .ops-dashboard-donut-layout {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .ops-toolbar-primary,
  .ops-toolbar-right,
  .ops-toolbar-secondary,
  .ops-form-heading-side,
  .ops-form-heading-options,
  .ops-form-header-actions,
  .ops-form-meta-bar,
  .ops-radio-group,
  .ops-choice-cluster,
  .ops-topbar-actions {
    width: 100%;
  }

  .ops-form-top-split {
    flex-direction: column;
  }

  .ops-tool-button,
  .ops-primary-button,
  .ops-secondary-button,
  .ops-shortcut,
  .ops-mini-button {
    width: 100%;
  }

  .ops-history-item {
    flex-direction: column;
  }

  .ops-topbar-overview .ops-overview-pill,
  .ops-topbar-overview .ops-overview-status-pill,
  .ops-topbar-overview .ops-user-pill,
  .ops-topbar-overview .ops-icon-button {
    width: 100%;
    justify-content: center;
  }

  .ops-report-modal-backdrop {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .reference-login-frame {
    width: 100%;
  }

  .reference-login-stage {
    border-radius: 18px;
  }

  .reference-login-alert {
    padding: 8px 10px;
  }

  .landing-highlights,
  .login-preview-nav {
    grid-template-columns: 1fr;
  }

  .landing-footer-strip {
    padding: 14px 16px;
  }

  .landing-footer-strip span {
    padding-right: 0;
  }

  .ops-dashboard-head,
  .ops-dashboard-card-head,
  .ops-dashboard-kpi-meta,
  .ops-dashboard-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-topbar-search {
    min-height: 54px;
  }

  .ops-dashboard-kpi-value {
    font-size: 1.7rem;
  }

  .landing-footer-strip span::after {
    display: none;
  }

  .ops-page,
  .ops-sidebar,
  .ops-topbar,
  .ops-form-card {
    padding: 16px;
    border-radius: 22px;
  }

  .ops-topbar-search,
  .ops-inline-search,
  .ops-field input,
  .ops-field select,
  .ops-field textarea {
    min-height: 48px;
  }

  .ops-table {
    min-width: 780px;
  }

  .ops-table-card {
    overflow: auto;
  }

  .ops-report-modal {
    border-radius: 22px;
  }

  .ops-report-modal-head,
  .ops-report-modal-body {
    padding: 18px;
  }
}

.consultation-chart-surface,
.consultation-map-surface,
.consultation-lookup-surface {
  display: grid;
  gap: 22px;
}

.consultation-chart-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
}

.consultation-chart-controls .ops-field {
  flex: 0 1 220px;
  min-width: 180px;
}

.consultation-chart-svg {
  width: 100%;
  min-height: 360px;
  overflow: visible;
}

.consultation-chart-empty,
.consultation-map-empty {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 22px;
  border: 1px dashed rgba(131, 147, 193, 0.26);
  background: rgba(12, 18, 31, 0.64);
  color: rgba(188, 200, 226, 0.78);
  text-align: center;
}

.consultation-chart-grid {
  stroke: rgba(147, 164, 205, 0.18);
  stroke-width: 1;
}

.consultation-chart-axis {
  fill: rgba(177, 192, 226, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.consultation-chart-baseline {
  stroke: rgba(208, 219, 244, 0.32);
  stroke-width: 1.5;
}

.consultation-chart-bar {
  transition: opacity 180ms ease, transform 180ms ease;
  transform-origin: center bottom;
}

.consultation-chart-bar.positive {
  fill: rgba(151, 210, 255, 0.92);
}

.consultation-chart-bar.negative {
  fill: rgba(255, 148, 127, 0.92);
}

.consultation-chart-label {
  fill: rgba(198, 210, 235, 0.84);
  font-size: 14px;
  font-weight: 600;
}

.consultation-map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.consultation-map-tab {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(120, 137, 183, 0.24);
  border-radius: 14px;
  background: rgba(14, 19, 31, 0.92);
  color: rgba(204, 215, 238, 0.82);
  font-weight: 700;
}

.consultation-map-tab.active {
  border-color: rgba(123, 162, 255, 0.44);
  background: rgba(54, 71, 118, 0.7);
  color: #f4f7ff;
}

.consultation-map-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.consultation-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(118, 135, 182, 0.18);
  border-radius: 14px;
  background: rgba(14, 19, 31, 0.82);
  color: rgba(224, 233, 248, 0.88);
}

.consultation-inline-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #7b95ff;
}

.consultation-map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(118, 137, 188, 0.18);
}

.consultation-map-frame.map {
  background:
    radial-gradient(circle at 20% 18%, rgba(131, 208, 255, 0.22), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(105, 124, 255, 0.16), transparent 16%),
    linear-gradient(180deg, rgba(21, 37, 58, 0.98), rgba(11, 20, 34, 0.98));
}

.consultation-map-frame.satellite {
  background:
    radial-gradient(circle at 24% 24%, rgba(98, 157, 105, 0.34), transparent 20%),
    radial-gradient(circle at 76% 38%, rgba(126, 94, 63, 0.26), transparent 18%),
    linear-gradient(180deg, rgba(18, 26, 22, 0.98), rgba(10, 16, 14, 0.98));
}

.consultation-map-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 620px;
}

.consultation-map-grid {
  stroke: rgba(205, 217, 244, 0.14);
  stroke-width: 1;
}

.consultation-map-point {
  stroke: rgba(8, 12, 20, 0.82);
  stroke-width: 2;
  opacity: 0.96;
}

.consultation-map-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.consultation-map-list-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(118, 137, 188, 0.16);
  background: rgba(12, 18, 31, 0.82);
}

.consultation-map-list-item strong {
  color: rgba(238, 243, 255, 0.94);
  font-size: 0.95rem;
}

.consultation-map-list-item span {
  color: rgba(193, 204, 229, 0.82);
}

.consultation-map-list-item small {
  color: rgba(132, 151, 189, 0.86);
}

.consultation-lookup-form {
  display: grid;
  gap: 18px;
}

.consultation-lookup-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.consultation-lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-end;
}

.consultation-lookup-row .ops-field {
  margin: 0;
}

.consultation-lookup-output {
  width: 100%;
  min-height: 340px;
  padding: 18px;
  border: 1px solid rgba(118, 137, 188, 0.22);
  border-radius: 20px;
  resize: vertical;
  background: rgba(10, 15, 27, 0.88);
  color: rgba(225, 234, 248, 0.9);
  line-height: 1.65;
}

.consultation-lookup-output:focus {
  outline: none;
  border-color: rgba(123, 162, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(86, 117, 255, 0.14);
}

@media (max-width: 960px) {
  .consultation-lookup-row {
    grid-template-columns: 1fr;
  }

  .consultation-map-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .consultation-chart-controls,
  .consultation-map-toolbar,
  .consultation-map-filter-grid,
  .consultation-lookup-modes {
    gap: 10px;
  }

  .consultation-inline-check {
    width: 100%;
    justify-content: flex-start;
  }

  .consultation-map-svg {
    min-height: 420px;
  }

  .consultation-map-list {
    grid-template-columns: 1fr;
  }
}
