:root {
  color-scheme: dark;
  --bg: #03070d;
  --ink: #f2f8ff;
  --soft: #c8d7e6;
  --muted: #7f93a8;
  --teal: #19F4FF;
  --cyan: #98FFFF;
  --teal-rgb: 25, 244, 255;
  --teal-highlight: #98FFFF;
  --teal-glow-soft: #86FFFF;
  --teal-edge: #008EA1;
  --badge-navy: #02070C;
  --badge-ring: #0B3D48;
  --blue: #1b6eaa;
  --panel: rgba(5, 13, 23, 0.74);
  --panel-strong: rgba(8, 20, 34, 0.88);
  --line: rgba(163, 210, 232, 0.16);
  --line-hot: rgba(25, 244, 255, 0.48);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(8, 26, 43, 0.92) 0%, rgba(4, 9, 16, 0.96) 46%, rgba(2, 5, 10, 1) 100%),
    linear-gradient(180deg, #071320 0%, #03070d 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(70, 189, 253, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(70, 189, 253, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

.dashboard-shell {
  width: min(1560px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0 28px;
}

.dashboard-shell .topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(460px, auto) minmax(260px, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 62px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(153, 205, 232, 0.12);
  border-radius: 8px;
  background: rgba(3, 9, 16, 0.78);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.dashboard-shell .brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dashboard-shell .brand img {
  width: 132px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(84, 189, 253, 0.18));
}

.dashboard-shell .brand span {
  color: rgba(200, 215, 230, 0.72);
  white-space: nowrap;
}

.dashboard-shell .nav {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 4px;
  border: 1px solid rgba(153, 205, 232, 0.12);
  border-radius: 8px;
  background: rgba(1, 6, 12, 0.58);
}

.dashboard-shell .nav a,
.dashboard-shell .nav .disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: rgba(215, 229, 241, 0.78);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.dashboard-shell .nav a:hover {
  border-color: rgba(84, 189, 253, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-shell .nav a.active {
  border-color: rgba(51, 245, 220, 0.58);
  color: #eaffff;
  background:
    linear-gradient(180deg, rgba(51, 245, 220, 0.26), rgba(29, 111, 170, 0.24)),
    rgba(4, 24, 34, 0.9);
  box-shadow: 0 0 22px rgba(51, 245, 220, 0.28), inset 0 0 18px rgba(51, 245, 220, 0.12);
}

.dashboard-shell .nav .disabled {
  color: rgba(200, 215, 230, 0.38);
  cursor: not-allowed;
}

.dashboard-shell .account {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
}

.dashboard-shell .account strong {
  display: block;
  max-width: 260px;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-shell .account span {
  display: block;
  margin-top: 2px;
  color: rgba(127, 147, 168, 0.9);
}

.dashboard-shell .logout,
.dashboard-shell .button,
.dashboard-shell .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(153, 205, 232, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 13px;
  font-weight: 780;
}

.dashboard-shell .logout {
  padding: 0 13px;
}

.dashboard-shell .logout:hover,
.dashboard-shell .button:hover,
.dashboard-shell .text-link:hover {
  border-color: rgba(51, 245, 220, 0.42);
  color: #eaffff;
  background: rgba(51, 245, 220, 0.1);
}

.hero-command {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(430px, 0.82fr);
  gap: 28px;
  align-items: center;
  min-height: 410px;
  padding: 34px;
  border: 1px solid rgba(163, 210, 232, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.82) 0%, rgba(3, 8, 15, 0.38) 48%, rgba(3, 8, 15, 0.78) 100%),
    url("/static/dashboard/hero-earth-network.svg") center / cover no-repeat,
    linear-gradient(120deg, #071525, #02050a);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-command::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(51, 245, 220, 0.16), transparent 22%, transparent 80%, rgba(84, 189, 253, 0.12)),
    linear-gradient(180deg, transparent 58%, rgba(3, 7, 13, 0.62));
}

.hero-command::after {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  border-radius: 7px;
  box-shadow: inset 0 0 70px rgba(51, 245, 220, 0.07);
}

.hero-copy,
.hero-visual-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
}

.dashboard-shell .eyebrow {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.dashboard-shell h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: #f6fbff;
  font-size: clamp(3.35rem, 4rem, 4.45rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 36px rgba(84, 189, 253, 0.2);
}

.subhead {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(215, 229, 241, 0.82);
  font-size: 17px;
  line-height: 1.52;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.chips span {
  border: 1px solid rgba(51, 245, 220, 0.25);
  border-radius: 999px;
  padding: 7px 10px;
  color: #dffffb;
  background: rgba(3, 14, 24, 0.62);
  box-shadow: inset 0 0 16px rgba(51, 245, 220, 0.06);
  font-size: 11px;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dashboard-shell .button {
  padding: 0 16px;
}

.dashboard-shell .button.primary {
  border-color: rgba(51, 245, 220, 0.56);
  background:
    linear-gradient(180deg, rgba(51, 245, 220, 0.92), rgba(52, 177, 223, 0.86));
  color: #031016;
  box-shadow: 0 0 26px rgba(51, 245, 220, 0.24);
}

.hero-visual-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 312px;
  padding: 18px;
  border: 1px solid rgba(51, 245, 220, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 18, 31, 0.88), rgba(2, 8, 15, 0.7)),
    linear-gradient(90deg, rgba(51, 245, 220, 0.1), rgba(84, 189, 253, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.command-center-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(163, 210, 232, 0.13);
}

.command-center-head h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.status-grid,
.metrics-row,
.dashboard-grid,
.card-grid,
.trust-strip {
  display: grid;
}

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

.metric-card {
  min-height: 88px;
  padding: 13px;
  border: 1px solid rgba(163, 210, 232, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(51, 245, 220, 0.09), rgba(84, 189, 253, 0.03)),
    rgba(1, 8, 15, 0.58);
}

.metric-card span {
  display: block;
  min-height: 32px;
  color: rgba(200, 215, 230, 0.72);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.32;
}

.metric-card strong {
  display: block;
  margin-top: 5px;
  color: #f5feff;
  font-size: 27px;
  line-height: 1;
}

.status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 2px;
}

.status-grid div {
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(51, 245, 220, 0.18);
  border-radius: 8px;
  background: rgba(1, 8, 15, 0.5);
}

.status-grid span {
  color: rgba(127, 147, 168, 0.95);
  font-size: 11px;
  font-weight: 700;
}

.status-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 13px;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}

.main-column,
.sidebar-column {
  display: grid;
  gap: 14px;
}

.panel-section,
.side-panel {
  border: 1px solid rgba(163, 210, 232, 0.14);
  border-radius: 8px;
  background: rgba(4, 12, 22, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.panel-section {
  padding: 18px;
}

.side-panel {
  padding: 16px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}

.section-head.compact {
  display: block;
  margin-bottom: 10px;
}

.section-head h2 {
  margin-bottom: 0;
  color: #f6fbff;
  font-size: 17px;
  line-height: 1.16;
  letter-spacing: 0;
}

.card-grid {
  gap: 12px;
}

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

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

.action-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "icon title cta"
    "icon copy cta";
  column-gap: 13px;
  row-gap: 5px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(163, 210, 232, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(51, 245, 220, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(84, 189, 253, 0.08), transparent 42%),
    rgba(4, 13, 23, 0.78);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.action-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(51, 245, 220, 0.18) 49%, transparent 50%),
    linear-gradient(135deg, transparent 0 62%, rgba(84, 189, 253, 0.12) 63%, transparent 64%);
  opacity: 0.36;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(51, 245, 220, 0.42);
  background:
    linear-gradient(135deg, rgba(51, 245, 220, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(84, 189, 253, 0.12), transparent 42%),
    var(--panel-strong);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), 0 0 24px rgba(51, 245, 220, 0.08);
}

.action-card .xreg-dashboard-icon {
  grid-area: icon;
}

.action-card h3 {
  position: relative;
  grid-area: title;
  margin-bottom: 0;
  color: #f4fbff;
  font-size: 16px;
  line-height: 1.2;
}

.action-card p {
  position: relative;
  grid-area: copy;
  margin-bottom: 0;
  color: rgba(200, 215, 230, 0.72);
  font-size: 13px;
  line-height: 1.42;
}

.action-card span {
  position: relative;
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(51, 245, 220, 0.34);
  border-radius: 999px;
  color: transparent;
  background: rgba(51, 245, 220, 0.08);
}

.action-card span::after {
  content: "->";
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

.action-card.wide {
  min-height: 132px;
}

.xreg-dashboard-icon {
  width: 52px;
  height: 52px;
  display: inline-block;
  padding: 0;
  object-fit: contain;
  flex: 0 0 auto;
  border: 1px solid rgba(51, 245, 220, 0.28);
  border-radius: 999px;
  background: rgba(51, 245, 220, 0.08);
  box-shadow: inset 0 0 18px rgba(51, 245, 220, 0.08);
}

.quick-list,
.activity-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 36px;
  color: var(--soft);
  font-size: 13px;
}

.quick-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(51, 245, 220, 0.32);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(51, 245, 220, 0.08);
  font-size: 12px;
  font-weight: 860;
}

.activity-list li {
  display: grid;
  gap: 3px;
  padding-top: 9px;
  border-top: 1px solid rgba(163, 210, 232, 0.11);
}

.activity-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.activity-list strong {
  color: var(--soft);
  font-size: 13px;
}

.activity-list span,
.empty {
  color: rgba(127, 147, 168, 0.95);
  font-size: 13px;
  line-height: 1.44;
}

.empty {
  margin-bottom: 0;
}

.text-link {
  width: 100%;
  margin-top: 12px;
  padding: 0 12px;
  color: #dffffb;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border: 1px solid rgba(163, 210, 232, 0.14);
  border-radius: 8px;
  background: rgba(4, 12, 22, 0.74);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.trust-strip div {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon copy";
  column-gap: 12px;
  row-gap: 2px;
  align-content: center;
  padding: 16px;
  border-left: 1px solid rgba(163, 210, 232, 0.1);
}

.trust-strip div:first-child {
  border-left: 0;
}

.trust-strip .xreg-dashboard-icon {
  grid-area: icon;
}

.trust-strip strong {
  grid-area: title;
  color: #f4fbff;
  font-size: 14px;
}

.trust-strip span {
  grid-area: copy;
  display: block;
  color: rgba(127, 147, 168, 0.95);
  font-size: 12px;
  line-height: 1.36;
}

@media (max-width: 1180px) {
  .dashboard-shell .topbar {
    grid-template-columns: 1fr;
  }

  .dashboard-shell .nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .dashboard-shell .account {
    justify-content: space-between;
  }

  .hero-command,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 880px;
  }

  .hero-visual-panel {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .dashboard-shell {
    width: min(100% - 24px, 1560px);
    padding-top: 10px;
  }

  .hero-command {
    min-height: 0;
    padding: 22px;
  }

  .dashboard-shell h1 {
    font-size: clamp(2.5rem, 3rem, 3.2rem);
  }

  .subhead {
    font-size: 15px;
  }

  .card-grid.three,
  .card-grid.two,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div:first-child {
    border-left: 0;
    border-top: 1px solid rgba(163, 210, 232, 0.1);
  }

  .trust-strip div:first-child {
    border-top: 0;
  }
}

@media (max-width: 600px) {
  .dashboard-shell {
    width: min(100% - 18px, 1560px);
  }

  .dashboard-shell .topbar {
    padding: 9px;
  }

  .dashboard-shell .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .dashboard-shell .brand img {
    width: 124px;
  }

  .dashboard-shell .account {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-shell .account strong {
    max-width: calc(100vw - 56px);
  }

  .hero-command {
    padding: 18px;
  }

  .dashboard-shell h1 {
    font-size: clamp(2.15rem, 2.45rem, 2.65rem);
  }

  .hero-visual-panel,
  .panel-section,
  .side-panel {
    padding: 14px;
  }

  .metrics-row,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "icon copy"
      "icon cta";
    min-height: 0;
  }

  .action-card span {
    justify-self: start;
    min-width: 34px;
    height: 34px;
  }
}

/* Premium command-center dashboard home */
body:has(.xreg-home-shell) {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(87, 196, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(87, 196, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 0%, rgba(51, 245, 220, 0.14), transparent 32rem),
    radial-gradient(circle at 88% 10%, rgba(87, 196, 255, 0.16), transparent 34rem),
    linear-gradient(135deg, #071625 0%, #03070d 48%, #02050a 100%);
  background-size: 86px 86px, 86px 86px, auto, auto, auto;
}

.xreg-home-shell {
  width: min(1640px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0 30px;
}

.xreg-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(480px, auto) minmax(260px, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(161, 215, 239, 0.14);
  border-radius: 8px;
  background: rgba(2, 8, 15, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.xreg-brand,
.xreg-user,
.xreg-nav,
.button,
.logout,
.text-link,
.learn-more {
  min-height: 40px;
}

.xreg-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.xreg-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(51, 245, 220, 0.52);
  border-radius: 8px;
  color: #07131a;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 0 30px rgba(51, 245, 220, 0.22);
  font-size: 24px;
  font-weight: 940;
}

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

.xreg-brand-copy strong {
  color: #f6fbff;
  font-size: 16px;
  line-height: 1;
}

.xreg-brand-copy small {
  color: rgba(199, 215, 232, 0.66);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.xreg-nav {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 4px;
  border: 1px solid rgba(161, 215, 239, 0.12);
  border-radius: 8px;
  background: rgba(1, 6, 12, 0.58);
}

.xreg-nav a,
.xreg-nav .disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: rgba(218, 232, 244, 0.78);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.xreg-nav a:hover {
  border-color: rgba(87, 196, 255, 0.26);
  color: #f3f8ff;
  background: rgba(255, 255, 255, 0.04);
}

.xreg-nav a.active {
  border-color: rgba(51, 245, 220, 0.58);
  color: #efffff;
  background:
    linear-gradient(180deg, rgba(51, 245, 220, 0.26), rgba(23, 95, 153, 0.28)),
    rgba(3, 24, 34, 0.9);
  box-shadow: 0 0 24px rgba(51, 245, 220, 0.24), inset 0 0 18px rgba(51, 245, 220, 0.12);
}

.xreg-nav .disabled,
.text-link.disabled {
  color: rgba(199, 215, 232, 0.4);
  cursor: not-allowed;
}

.xreg-user {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
}

.xreg-user strong {
  display: block;
  max-width: 260px;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xreg-user span {
  display: block;
  margin-top: 2px;
  color: rgba(132, 151, 170, 0.92);
}

.xreg-topbar .logout,
.xreg-dashboard .button,
.xreg-dashboard .text-link,
.xreg-dashboard .learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(161, 215, 239, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.xreg-topbar .logout {
  padding: 0 13px;
}

.xreg-topbar .logout:hover,
.xreg-dashboard .button:hover,
.xreg-dashboard .text-link:hover,
.xreg-dashboard .learn-more:hover {
  border-color: rgba(51, 245, 220, 0.42);
  color: #efffff;
  background: rgba(51, 245, 220, 0.1);
}

.xreg-dashboard {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.xreg-dashboard .hero-command {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.7fr);
  gap: 30px;
  align-items: stretch;
  min-height: 510px;
  padding: 38px;
  border: 1px solid rgba(161, 215, 239, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.9) 0%, rgba(2, 7, 13, 0.64) 44%, rgba(2, 7, 13, 0.84) 100%),
    radial-gradient(circle at 72% 48%, rgba(51, 245, 220, 0.2), transparent 28rem),
    url("/static/dashboard/assets/hero/Globe.png") right center / min(56vw, 760px) auto no-repeat,
    linear-gradient(120deg, #071625, #02050a);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.xreg-dashboard .hero-command::before,
.xreg-dashboard .hero-command::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.xreg-dashboard .hero-command::before {
  background:
    linear-gradient(90deg, rgba(51, 245, 220, 0.15), transparent 22%, transparent 78%, rgba(87, 196, 255, 0.16)),
    linear-gradient(180deg, transparent 58%, rgba(3, 7, 13, 0.72));
}

.xreg-dashboard .hero-command::after {
  inset: 1px;
  border-radius: 7px;
  box-shadow: inset 0 0 90px rgba(51, 245, 220, 0.08);
}

.xreg-dashboard .hero-copy,
.xreg-dashboard .hero-visual-panel {
  position: relative;
  z-index: 1;
}

.xreg-dashboard .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 790px;
}

.xreg-dashboard .eyebrow {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.xreg-dashboard h1 {
  max-width: 780px;
  margin-bottom: 0;
  color: #f7fbff;
  font-size: clamp(3.25rem, 5.5vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 0 38px rgba(87, 196, 255, 0.2);
}

.xreg-dashboard .subhead {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(218, 232, 244, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.sector-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(51, 245, 220, 0.24);
  border-radius: 999px;
  padding: 5px 11px 5px 6px;
  color: #dffffb;
  background: rgba(3, 14, 24, 0.64);
  box-shadow: inset 0 0 18px rgba(51, 245, 220, 0.06);
  font-size: 12px;
  font-weight: 760;
}

.sector-chips img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.xreg-dashboard .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.xreg-dashboard .button {
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
}

.xreg-dashboard .button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.xreg-dashboard .button.primary {
  border-color: rgba(51, 245, 220, 0.58);
  background: linear-gradient(180deg, rgba(51, 245, 220, 0.94), rgba(87, 196, 255, 0.84));
  color: #041118;
  box-shadow: 0 0 28px rgba(51, 245, 220, 0.24);
}

.xreg-dashboard .hero-visual-panel {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.command-center-card {
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(51, 245, 220, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 18, 31, 0.9), rgba(2, 8, 15, 0.7)),
    linear-gradient(90deg, rgba(51, 245, 220, 0.1), rgba(87, 196, 255, 0.05));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.command-center-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(161, 215, 239, 0.14);
}

.command-center-head h2,
.section-head h2,
.materials-card h2,
.activity-card h2,
.quick-start-card h2 {
  margin: 0;
  color: #f6fbff;
  font-size: 22px;
  line-height: 1.12;
}

.live-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(51, 245, 220, 0.34);
  border-radius: 999px;
  color: #dffffb;
  background: rgba(51, 245, 220, 0.08);
  font-size: 12px;
  font-weight: 820;
}

.live-indicator::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(51, 245, 220, 0.72);
  content: "";
}

.metric-grid,
.system-status,
.primary-action-grid,
.xreg-dashboard .dashboard-grid,
.xreg-dashboard .trust-strip {
  display: grid;
}

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

.metric-grid article {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(161, 215, 239, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(51, 245, 220, 0.1), rgba(87, 196, 255, 0.03)),
    rgba(1, 8, 15, 0.58);
}

.metric-grid span {
  display: block;
  min-height: 32px;
  color: rgba(199, 215, 232, 0.72);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.32;
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  color: #f5feff;
  font-size: 28px;
  line-height: 1;
}

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

.system-status div {
  min-height: 60px;
  padding: 10px;
  border: 1px solid rgba(51, 245, 220, 0.18);
  border-radius: 8px;
  background: rgba(1, 8, 15, 0.52);
}

.system-status span {
  color: rgba(132, 151, 170, 0.96);
  font-size: 11px;
  font-weight: 720;
}

.system-status strong {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 13px;
}

.primary-actions,
.tool-card,
.materials-card,
.activity-card,
.quick-start-card,
.xreg-dashboard .trust-strip {
  border: 1px solid rgba(161, 215, 239, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(51, 245, 220, 0.035), transparent 42%),
    rgba(4, 12, 22, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.primary-actions {
  padding: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head.compact {
  display: block;
  margin-bottom: 12px;
}

.primary-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.xreg-dashboard .action-card,
.tool-link {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: none;
  gap: 14px;
  align-items: center;
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(161, 215, 239, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(51, 245, 220, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(87, 196, 255, 0.08), transparent 42%),
    rgba(4, 13, 23, 0.8);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.xreg-dashboard .action-card::before,
.tool-link::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: url("/static/dashboard/assets/accents/four-line-sweep.png");
  background-position: right 12px top 12px;
  background-repeat: no-repeat;
  background-size: 98px auto;
  opacity: 0.24;
}

.xreg-dashboard .action-card:hover,
.tool-link:hover {
  transform: translateY(-2px);
  border-color: rgba(51, 245, 220, 0.42);
  background:
    linear-gradient(135deg, rgba(51, 245, 220, 0.13), transparent 38%),
    linear-gradient(315deg, rgba(87, 196, 255, 0.12), transparent 42%),
    var(--panel-strong);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 24px rgba(51, 245, 220, 0.08);
}

.xreg-dashboard .action-card h3,
.tool-link h3 {
  position: relative;
  margin: 0 0 7px;
  color: #f4fbff;
  font-size: 17px;
  line-height: 1.2;
}

.xreg-dashboard .action-card p,
.tool-link p,
.materials-card p,
.empty {
  position: relative;
  margin: 0;
  color: rgba(199, 215, 232, 0.74);
  font-size: 13px;
  line-height: 1.44;
}

.xreg-dashboard .action-card span,
.tool-link span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 38px;
  border: 1px solid rgba(51, 245, 220, 0.34);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(51, 245, 220, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.xreg-dashboard .action-card .xreg-dashboard-icon,
.xreg-dashboard .action-card h3,
.xreg-dashboard .action-card p,
.xreg-dashboard .action-card span {
  grid-area: auto;
}

.xreg-dashboard .action-card span::after {
  content: none;
}

.xreg-dashboard .xreg-dashboard-icon,
.panel-icon {
  display: inline-block;
  object-fit: contain;
  flex: 0 0 auto;
}

.xreg-dashboard .xreg-dashboard-icon {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.primary-card .xreg-dashboard-icon {
  width: 68px;
  height: 68px;
}

.panel-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
}

.xreg-dashboard .dashboard-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.6fr) minmax(260px, 0.74fr) minmax(220px, 0.56fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 0;
}

.tool-card,
.materials-card,
.activity-card,
.quick-start-card {
  min-height: 280px;
  padding: 18px;
}

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

.tool-link {
  min-height: 108px;
}

.materials-card .text-link {
  width: 100%;
  margin-top: 18px;
  padding: 0 12px;
  color: #dffffb;
}

.xreg-dashboard .activity-list,
.xreg-dashboard .quick-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.xreg-dashboard .activity-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid rgba(161, 215, 239, 0.11);
}

.xreg-dashboard .activity-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.xreg-dashboard .activity-list img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.xreg-dashboard .activity-list strong {
  color: var(--soft);
  font-size: 13px;
}

.xreg-dashboard .activity-list span {
  display: block;
  margin-top: 3px;
  color: rgba(132, 151, 170, 0.96);
  font-size: 12px;
}

.xreg-dashboard .quick-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  color: var(--soft);
  font-size: 13px;
}

.xreg-dashboard .quick-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(51, 245, 220, 0.32);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(51, 245, 220, 0.08);
  font-size: 12px;
  font-weight: 880;
}

.xreg-dashboard .trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: stretch;
  padding: 0;
  margin-top: 0;
}

.trust-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon copy";
  column-gap: 12px;
  row-gap: 3px;
  align-content: center;
  padding: 16px;
  border-left: 1px solid rgba(161, 215, 239, 0.1);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item .xreg-dashboard-icon {
  grid-area: icon;
  width: 52px;
  height: 52px;
}

.trust-item strong {
  grid-area: title;
  color: #f4fbff;
  font-size: 14px;
}

.trust-item span {
  grid-area: copy;
  display: block;
  color: rgba(132, 151, 170, 0.96);
  font-size: 12px;
  line-height: 1.36;
}

.learn-more {
  align-self: center;
  min-width: 112px;
  margin: 16px;
  padding: 0 14px;
  color: #dffffb;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .xreg-topbar,
  .xreg-dashboard .hero-command,
  .xreg-dashboard .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .xreg-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .xreg-user {
    justify-content: space-between;
  }

  .xreg-dashboard .hero-command {
    background:
      linear-gradient(90deg, rgba(2, 7, 13, 0.94) 0%, rgba(2, 7, 13, 0.72) 100%),
      radial-gradient(circle at 72% 44%, rgba(51, 245, 220, 0.18), transparent 24rem),
      url("/static/dashboard/assets/hero/Globe.png") right top / min(72vw, 620px) auto no-repeat,
      linear-gradient(120deg, #071625, #02050a);
  }

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

  .learn-more {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .xreg-home-shell {
    width: min(100% - 24px, 1640px);
    padding-top: 10px;
  }

  .xreg-dashboard .hero-command {
    min-height: 0;
    padding: 24px;
  }

  .xreg-dashboard h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .xreg-dashboard .subhead {
    font-size: 15px;
  }

  .primary-action-grid,
  .metric-grid,
  .system-status,
  .xreg-dashboard .trust-strip {
    grid-template-columns: 1fr;
  }

  .xreg-dashboard .action-card,
  .tool-link {
    grid-template-columns: auto 1fr;
  }

  .xreg-dashboard .action-card span,
  .tool-link span {
    grid-column: 2;
    justify-self: start;
  }

  .trust-item,
  .trust-item:first-child {
    border-left: 0;
    border-top: 1px solid rgba(161, 215, 239, 0.1);
  }

  .trust-item:first-child {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .xreg-topbar,
  .xreg-dashboard .hero-command,
  .primary-actions,
  .tool-card,
  .materials-card,
  .activity-card,
  .quick-start-card {
    padding: 14px;
  }

  .xreg-brand-copy small {
    display: none;
  }

  .xreg-user {
    align-items: stretch;
    flex-direction: column;
  }

  .sector-chips span {
    width: 100%;
  }

  .primary-card .xreg-dashboard-icon,
  .xreg-dashboard .xreg-dashboard-icon {
    width: 52px;
    height: 52px;
  }
}

/* Top bar and hero tuning pass */
.xreg-home-shell {
  width: 100%;
  padding-top: 0;
}

.xreg-topbar {
  width: 100%;
  min-height: 76px;
  grid-template-columns: minmax(230px, 0.82fr) minmax(560px, 1.5fr) minmax(310px, 0.88fr);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  padding: 12px 30px;
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0.94), rgba(3, 9, 16, 0.82)),
    rgba(2, 8, 15, 0.92);
}

.xreg-dashboard {
  width: min(1640px, calc(100% - 40px));
  margin: 16px auto 0;
}

.xreg-brand-mark {
  width: 48px;
  height: 48px;
  font-size: 27px;
}

.xreg-brand-copy strong {
  font-size: 18px;
}

.xreg-nav {
  justify-content: flex-end;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
}

.xreg-nav a,
.xreg-nav .disabled {
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.xreg-nav a img,
.xreg-nav .disabled img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.xreg-nav a.active {
  position: relative;
  min-height: 50px;
  padding: 0 18px;
  box-shadow: 0 0 28px rgba(51, 245, 220, 0.24), inset 0 0 18px rgba(51, 245, 220, 0.16);
}

.xreg-nav a.active::after {
  position: absolute;
  right: 18px;
  bottom: 7px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  box-shadow: 0 0 16px rgba(51, 245, 220, 0.85);
  content: "";
}

.xreg-user {
  gap: 10px;
}

.xreg-user-bell,
.xreg-avatar {
  flex: 0 0 auto;
}

.xreg-user-bell {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.9;
}

.xreg-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(51, 245, 220, 0.42);
  border-radius: 999px;
  color: #041118;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 0 20px rgba(51, 245, 220, 0.2);
  font-size: 15px;
  font-weight: 900;
}

.xreg-user-copy {
  min-width: 0;
}

.xreg-topbar .logout {
  min-width: 40px;
}

.xreg-dashboard .hero-command {
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.86fr);
  min-height: 440px;
  align-items: center;
  padding: 36px 38px;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 13, 0.9) 0%, rgba(2, 7, 13, 0.58) 42%, rgba(2, 7, 13, 0.76) 100%),
    radial-gradient(circle at 63% 52%, rgba(51, 245, 220, 0.2), transparent 24rem),
    url("/static/dashboard/assets/hero/Globe.png"),
    linear-gradient(120deg, #071625, #02050a);
  background-position: center, center, 62% 50%, center;
  background-repeat: no-repeat;
  background-size: auto, auto, min(58vw, 760px) auto, auto;
}

.xreg-dashboard .hero-copy {
  max-width: 720px;
}

.xreg-dashboard h1 {
  max-width: 690px;
  font-size: clamp(3.1rem, 5.2vw, 5.15rem);
}

.xreg-dashboard .subhead {
  max-width: 620px;
}

.sector-chips {
  max-width: 720px;
}

.sector-chips span {
  min-height: 34px;
  padding-right: 12px;
}

.xreg-dashboard .hero-visual-panel {
  justify-content: flex-end;
}

.command-center-card {
  max-width: 620px;
  min-height: 280px;
  padding: 18px;
}

.command-center-head {
  align-items: center;
}

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

.metric-grid article {
  min-height: 110px;
  padding: 13px 12px;
}

.metric-grid span {
  min-height: 38px;
  font-size: 10px;
  text-transform: uppercase;
}

.metric-grid strong {
  font-size: clamp(1.4rem, 1.9vw, 1.9rem);
}

.system-status {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 3px;
}

@media (max-width: 1280px) {
  .xreg-topbar {
    grid-template-columns: 1fr;
    padding: 12px 20px;
  }

  .xreg-nav {
    justify-content: flex-start;
  }

  .xreg-dashboard .hero-command {
    grid-template-columns: 1fr;
    background-position: center, center, right 6% top 18px, center;
    background-size: auto, auto, min(72vw, 640px) auto, auto;
  }

  .xreg-dashboard .hero-visual-panel {
    justify-content: stretch;
  }

  .command-center-card {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .xreg-dashboard {
    width: min(100% - 24px, 1640px);
  }

  .xreg-nav a,
  .xreg-nav .disabled {
    padding: 0 11px;
  }

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

@media (max-width: 560px) {
  .xreg-topbar {
    padding: 10px 12px;
  }

  .xreg-user {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .xreg-user-copy {
    max-width: calc(100vw - 142px);
  }

  .xreg-dashboard .hero-command {
    padding: 18px;
  }

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

/* Reference mockup top-screen rebuild */
.xreg-home-shell {
  width: 100%;
  min-height: 100vh;
  padding: 0 28px 30px;
}

.xreg-topbar {
  min-height: 84px;
  grid-template-columns: 270px minmax(620px, 1fr) 310px;
  margin: 0 -28px;
  padding: 14px 32px;
  border: 0;
  border-bottom: 1px solid rgba(144, 197, 232, 0.16);
  background: rgba(2, 7, 14, 0.92);
  box-shadow: none;
}

.xreg-brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  color: #f7ffff;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.78), transparent 0.38rem),
    linear-gradient(145deg, #09d9ff, #10f0b5 78%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.xreg-brand-copy strong {
  font-size: 27px;
  letter-spacing: -0.02em;
}

.xreg-brand-copy small {
  display: none;
}

.xreg-nav {
  justify-content: center;
  gap: 18px;
}

.xreg-nav a,
.xreg-nav .disabled {
  gap: 10px;
  min-height: 40px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(238, 246, 255, 0.9);
  font-size: 15px;
  font-weight: 760;
}

.xreg-nav a img,
.xreg-nav .disabled img {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

.xreg-nav a.active {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(87, 196, 255, 0.2);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 36, 58, 0.86), rgba(5, 17, 30, 0.82));
}

.xreg-nav a.active::after {
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 3px;
  background: var(--teal);
}

.xreg-user {
  gap: 12px;
  justify-content: flex-end;
}

.xreg-user-bell {
  width: 24px;
  height: 24px;
}

.xreg-user-bell::after {
  content: "";
}

.xreg-avatar {
  width: 45px;
  height: 45px;
  border-color: rgba(144, 197, 232, 0.22);
  color: #eef6ff;
  background: #102139;
}

.xreg-user-copy strong {
  font-size: 14px;
}

.xreg-user-copy span {
  font-size: 12px;
}

.xreg-topbar .logout {
  width: 34px;
  min-width: 34px;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: transparent;
  background: transparent;
}

.xreg-topbar .logout::before {
  color: rgba(238, 246, 255, 0.8);
  content: "⌄";
  font-size: 20px;
  line-height: 1;
}

.xreg-dashboard {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 16px;
}

.xreg-dashboard .hero-command {
  min-height: 330px;
  margin-top: 0;
  grid-template-columns: minmax(480px, 0.58fr) minmax(560px, 0.42fr);
  gap: 30px;
  align-items: center;
  padding: 38px 60px;
  border-color: rgba(87, 196, 255, 0.22);
  border-radius: 14px;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 14, 0.9) 0%, rgba(2, 7, 14, 0.48) 48%, rgba(2, 7, 14, 0.62) 100%),
    radial-gradient(circle at 58% 42%, rgba(51, 245, 220, 0.22), transparent 18rem),
    url("/static/dashboard/assets/hero/Globe.png");
  background-position: center, center, 51% 50%;
  background-repeat: no-repeat;
  background-size: auto, auto, min(68vw, 960px) auto;
  box-shadow: inset 0 0 70px rgba(51, 245, 220, 0.06);
}

.xreg-dashboard .hero-command::before {
  background:
    linear-gradient(90deg, rgba(51, 245, 220, 0.1), transparent 30%, transparent 78%, rgba(87, 196, 255, 0.08)),
    linear-gradient(180deg, transparent 70%, rgba(3, 7, 13, 0.28));
}

.xreg-dashboard .hero-copy {
  max-width: 660px;
}

.xreg-dashboard .hero-copy .eyebrow {
  margin-bottom: 12px;
  color: #20ffe1;
}

.xreg-dashboard h1 {
  max-width: 660px;
  font-size: clamp(3.15rem, 4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.xreg-dashboard .subhead {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(238, 246, 255, 0.84);
  font-size: 16px;
  line-height: 1.45;
}

.sector-chips {
  gap: 10px;
  margin-top: 26px;
}

.sector-chips span {
  min-height: 36px;
  border-color: rgba(144, 197, 232, 0.18);
  padding: 4px 14px 4px 8px;
  background: rgba(2, 8, 16, 0.58);
  color: rgba(238, 246, 255, 0.86);
}

.sector-chips span.active {
  border-color: rgba(51, 245, 220, 0.84);
  color: #031016;
  background: linear-gradient(180deg, rgba(51, 245, 220, 0.95), rgba(5, 207, 184, 0.86));
}

.sector-chips img {
  width: 20px;
  height: 20px;
}

.xreg-dashboard .hero-actions {
  display: none;
}

.command-center-card {
  max-width: 590px;
  min-height: 268px;
  margin-left: auto;
  padding: 18px 22px;
  border-color: rgba(87, 196, 255, 0.22);
  border-radius: 14px;
  background: rgba(2, 10, 20, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.command-center-head {
  padding-bottom: 12px;
}

.command-center-head .eyebrow {
  margin: 0;
  color: #25ffe1;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.command-center-head h2 {
  display: none;
}

.view-all {
  color: rgba(238, 246, 255, 0.62);
  font-size: 13px;
}

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

.metric-grid article {
  min-height: 142px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 14px 14px 10px;
  border: 0;
  border-left: 1px solid rgba(144, 197, 232, 0.13);
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.metric-grid article:first-child {
  border-left: 0;
}

.metric-grid article img {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  object-fit: contain;
  opacity: 0.92;
}

.metric-grid span {
  order: 3;
  min-height: 40px;
  margin-top: 6px;
  color: rgba(238, 246, 255, 0.86);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.25;
  text-transform: none;
}

.metric-grid strong {
  order: 2;
  margin: 0;
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}

.metric-grid small {
  order: 4;
  margin-top: 8px;
  color: #24ffc7;
  font-size: 12px;
}

.system-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  border-top: 1px solid rgba(144, 197, 232, 0.13);
  padding-top: 12px;
}

.system-status p {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin: 0;
  color: rgba(238, 246, 255, 0.74);
  font-size: 13px;
}

.system-status p span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #24ffc7;
  box-shadow: 0 0 12px rgba(36, 255, 199, 0.72);
}

.system-status strong {
  color: #24ffc7;
}

.system-status .live-indicator {
  min-height: 28px;
  border: 0;
  padding: 0;
  color: #24ffc7;
  background: transparent;
}

.primary-actions {
  margin-top: 6px;
  border-radius: 14px;
  padding: 18px 10px 10px;
}

.primary-actions .section-head {
  margin: 0 18px 12px;
  border-bottom: 1px solid rgba(144, 197, 232, 0.18);
}

.primary-actions .section-head h2 {
  display: none;
}

.primary-actions .eyebrow {
  font-size: 14px;
  letter-spacing: 0.14em;
}

.primary-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.xreg-dashboard .action-card.primary-card {
  min-height: 112px;
  grid-template-columns: 92px 1fr 36px;
  padding: 16px 20px;
  border-color: rgba(87, 196, 255, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(6, 18, 31, 0.88), rgba(4, 16, 28, 0.72)),
    rgba(2, 10, 20, 0.84);
}

.xreg-dashboard .action-card.primary-card::before {
  background-image: url("/static/dashboard/assets/accents/four-line-sweep.png");
  background-position: right center;
  background-size: 220px auto;
  opacity: 0.36;
}

.primary-card .xreg-dashboard-icon {
  width: 76px;
  height: 76px;
}

.xreg-dashboard .action-card.primary-card h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.xreg-dashboard .action-card.primary-card p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.42;
}

.xreg-dashboard .action-card.primary-card span {
  width: 34px;
  min-width: 34px;
  height: 34px;
  overflow: hidden;
  color: transparent;
  border: 0;
  background: rgba(51, 245, 220, 0.08);
}

.xreg-dashboard .action-card.primary-card span::after {
  color: #24ffc7;
  content: "›";
  font-size: 34px;
  line-height: 0.7;
}

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

  .xreg-dashboard .hero-command {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .command-center-card {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .xreg-home-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .xreg-topbar {
    margin-right: -14px;
    margin-left: -14px;
    padding: 12px 14px;
  }

  .xreg-dashboard .hero-command {
    padding: 24px;
  }

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

  .metric-grid article {
    border-left: 0;
    border-top: 1px solid rgba(144, 197, 232, 0.13);
  }

  .metric-grid article:first-child {
    border-top: 0;
  }
}

/* Reference-target top screen lock. Keep this block last. */
.xreg-home-page {
  min-height: 100vh;
  color: #f5f8ff;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 227, 255, 0.12), transparent 34rem),
    radial-gradient(circle at 88% 16%, rgba(20, 255, 203, 0.1), transparent 34rem),
    linear-gradient(180deg, #040811 0%, #020711 100%);
}

.xreg-home-page .xreg-home-shell {
  width: 100%;
  min-height: 100vh;
  padding: 0 28px 28px;
}

.xreg-home-page .xreg-topbar {
  position: relative;
  width: auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: 270px minmax(620px, 1fr) 330px;
  gap: 22px;
  align-items: center;
  margin: 0 -28px;
  padding: 14px 32px;
  border: 0;
  border-bottom: 1px solid rgba(126, 183, 221, 0.16);
  border-radius: 0;
  background: rgba(2, 6, 14, 0.94);
  box-shadow: none;
  backdrop-filter: none;
}

.xreg-home-page .xreg-brand {
  gap: 10px;
}

.xreg-home-page .xreg-brand-mark {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background:
    radial-gradient(circle at 45% 31%, rgba(255, 255, 255, 0.95) 0 4px, transparent 5px),
    linear-gradient(145deg, #08d4ff 0%, #15f7b7 74%);
  box-shadow: 0 0 28px rgba(0, 224, 255, 0.28);
  font-size: 28px;
  line-height: 1;
}

.xreg-home-page .xreg-brand-copy strong {
  color: #ffffff;
  font-size: 28px;
  font-weight: 920;
  letter-spacing: 0;
}

.xreg-home-page .xreg-brand-copy small {
  display: none;
}

.xreg-home-page .xreg-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.xreg-home-page .xreg-nav a,
.xreg-home-page .xreg-nav .disabled {
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(241, 247, 255, 0.88);
  background: transparent;
  font-size: 15px;
  font-weight: 760;
  white-space: nowrap;
}

.xreg-home-page .xreg-nav a img,
.xreg-home-page .xreg-nav .disabled img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.92;
}

.xreg-home-page .xreg-nav a.active {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(79, 189, 255, 0.22);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(12, 33, 55, 0.94), rgba(4, 17, 31, 0.9));
  color: #ffffff;
  box-shadow: 0 0 22px rgba(0, 225, 255, 0.14), inset 0 0 18px rgba(0, 225, 255, 0.07);
}

.xreg-home-page .xreg-nav a.active::after {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 3px;
  border-radius: 999px;
  background: #04f9e7;
  box-shadow: 0 0 18px rgba(4, 249, 231, 0.9);
  content: "";
}

.xreg-home-page .xreg-user {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.xreg-home-page .xreg-user-bell {
  width: 25px;
  height: 25px;
  opacity: 0.92;
}

.xreg-home-page .xreg-avatar {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(126, 183, 221, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: #0f2037;
  box-shadow: none;
  font-size: 15px;
  font-weight: 820;
}

.xreg-home-page .xreg-user-copy strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 820;
}

.xreg-home-page .xreg-user-copy span {
  color: rgba(241, 247, 255, 0.64);
  font-size: 12px;
}

.xreg-home-page .xreg-topbar .logout {
  width: 34px;
  min-width: 34px;
  height: 34px;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: transparent;
  background: transparent;
}

.xreg-home-page .xreg-topbar .logout::before {
  color: rgba(241, 247, 255, 0.84);
  content: "v";
  font-size: 22px;
  line-height: 1;
}

.xreg-home-page .xreg-dashboard {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 18px;
  margin: 0;
}

.xreg-home-page .xreg-dashboard .hero-command {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(520px, 0.57fr) minmax(570px, 0.43fr);
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 40px 60px;
  overflow: hidden;
  border: 1px solid rgba(79, 189, 255, 0.24);
  border-radius: 15px;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 14, 0.94) 0%, rgba(2, 7, 14, 0.54) 49%, rgba(2, 7, 14, 0.66) 100%),
    radial-gradient(circle at 57% 48%, rgba(4, 249, 231, 0.18), transparent 19rem),
    url("/static/dashboard/assets/hero/Globe.png");
  background-position: center, center, 52% 50%;
  background-repeat: no-repeat;
  background-size: auto, auto, min(67vw, 980px) auto;
  box-shadow: inset 0 0 80px rgba(4, 249, 231, 0.06);
}

.xreg-home-page .xreg-dashboard .hero-command::before {
  background:
    linear-gradient(90deg, rgba(4, 249, 231, 0.12), transparent 30%, transparent 80%, rgba(79, 189, 255, 0.1)),
    linear-gradient(180deg, transparent 70%, rgba(3, 7, 13, 0.34));
}

.xreg-home-page .xreg-dashboard .hero-command::after {
  box-shadow: none;
}

.xreg-home-page .hero-copy {
  max-width: 690px;
  justify-content: center;
}

.xreg-home-page .hero-copy .eyebrow {
  margin-bottom: 12px;
  color: #16ffe6;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.xreg-home-page .xreg-dashboard h1 {
  max-width: 700px;
  font-size: clamp(3.35rem, 4.6vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.xreg-home-page .xreg-dashboard .subhead {
  max-width: 590px;
  margin-top: 18px;
  color: rgba(241, 247, 255, 0.82);
  font-size: 16px;
  line-height: 1.45;
}

.xreg-home-page .sector-chips {
  gap: 10px;
  margin-top: 26px;
}

.xreg-home-page .sector-chips span {
  min-height: 36px;
  padding: 4px 15px 4px 8px;
  border: 1px solid rgba(126, 183, 221, 0.22);
  border-radius: 999px;
  color: rgba(241, 247, 255, 0.86);
  background: rgba(2, 8, 16, 0.68);
  box-shadow: none;
}

.xreg-home-page .sector-chips span.active {
  border-color: rgba(4, 249, 231, 0.9);
  color: #031016;
  background: linear-gradient(180deg, rgba(4, 249, 231, 0.98), rgba(8, 207, 183, 0.9));
}

.xreg-home-page .sector-chips img {
  width: 20px;
  height: 20px;
}

.xreg-home-page .hero-actions {
  display: none;
}

.xreg-home-page .hero-visual-panel {
  display: flex;
  justify-content: flex-end;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.xreg-home-page .command-center-card {
  width: min(100%, 590px);
  max-width: 590px;
  min-height: 268px;
  margin-left: auto;
  padding: 18px 22px;
  border: 1px solid rgba(126, 183, 221, 0.24);
  border-radius: 15px;
  background: rgba(2, 10, 20, 0.8);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.xreg-home-page .command-center-head {
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(126, 183, 221, 0.14);
}

.xreg-home-page .command-center-head .eyebrow {
  margin: 0;
  color: #16ffe6;
  font-size: 14px;
  letter-spacing: 0.16em;
}

.xreg-home-page .command-center-head .eyebrow::before {
  margin-right: 9px;
  content: "";
}

.xreg-home-page .command-center-head h2 {
  display: none;
}

.xreg-home-page .view-all {
  color: rgba(241, 247, 255, 0.62);
  font-size: 13px;
}

.xreg-home-page .metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.xreg-home-page .metric-grid article {
  min-height: 142px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 14px 14px 10px;
  border: 0;
  border-left: 1px solid rgba(126, 183, 221, 0.13);
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.xreg-home-page .metric-grid article:first-child {
  border-left: 0;
}

.xreg-home-page .metric-grid article img {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  object-fit: contain;
  opacity: 0.94;
}

.xreg-home-page .metric-grid span {
  order: 3;
  min-height: 40px;
  margin-top: 6px;
  color: rgba(241, 247, 255, 0.84);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.25;
  text-transform: none;
}

.xreg-home-page .metric-grid strong {
  order: 2;
  margin: 0;
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}

.xreg-home-page .metric-grid small {
  order: 4;
  margin-top: 8px;
  color: #24ffc7;
  font-size: 12px;
}

.xreg-home-page .system-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  border-top: 1px solid rgba(126, 183, 221, 0.14);
  padding-top: 12px;
}

.xreg-home-page .system-status p {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin: 0;
  color: rgba(241, 247, 255, 0.74);
  font-size: 13px;
}

.xreg-home-page .system-status p span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #24ffc7;
  box-shadow: 0 0 12px rgba(36, 255, 199, 0.72);
}

.xreg-home-page .system-status strong,
.xreg-home-page .system-status .live-indicator {
  color: #24ffc7;
}

.xreg-home-page .system-status .live-indicator {
  min-height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
}

.xreg-home-page .primary-actions {
  margin-top: 0;
  padding: 18px 10px 10px;
  border-radius: 15px;
  border-color: rgba(79, 189, 255, 0.18);
  background: rgba(3, 11, 21, 0.86);
}

.xreg-home-page .primary-actions .section-head {
  margin: 0 18px 12px;
  border-bottom: 1px solid rgba(126, 183, 221, 0.18);
}

.xreg-home-page .primary-actions .section-head h2 {
  display: none;
}

.xreg-home-page .primary-actions .eyebrow {
  color: #16ffe6;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.xreg-home-page .primary-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.xreg-home-page .action-card.primary-card {
  min-height: 112px;
  grid-template-columns: 92px 1fr 36px;
  padding: 16px 20px;
  border-color: rgba(79, 189, 255, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(6, 18, 31, 0.92), rgba(4, 16, 28, 0.76)),
    rgba(2, 10, 20, 0.86);
}

.xreg-home-page .action-card.primary-card::before {
  background-image: url("/static/dashboard/assets/accents/four-line-sweep.png");
  background-position: right center;
  background-size: 220px auto;
  opacity: 0.36;
}

.xreg-home-page .primary-card .xreg-dashboard-icon {
  width: 76px;
  height: 76px;
}

.xreg-home-page .action-card.primary-card h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.xreg-home-page .action-card.primary-card p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.42;
}

.xreg-home-page .action-card.primary-card span {
  width: 34px;
  min-width: 34px;
  height: 34px;
  overflow: hidden;
  color: transparent;
  border: 0;
  background: rgba(51, 245, 220, 0.08);
}

.xreg-home-page .action-card.primary-card span::after {
  color: #24ffc7;
  content: ">";
  font-size: 34px;
  line-height: 0.7;
}

@media (max-width: 1280px) {
  .xreg-home-page .xreg-topbar {
    grid-template-columns: 1fr;
  }

  .xreg-home-page .xreg-dashboard .hero-command {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .xreg-home-page .command-center-card {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-home-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .xreg-home-page .xreg-topbar {
    margin-right: -14px;
    margin-left: -14px;
    padding: 12px 14px;
  }

  .xreg-home-page .xreg-dashboard .hero-command {
    padding: 24px;
  }

  .xreg-home-page .metric-grid,
  .xreg-home-page .primary-action-grid {
    grid-template-columns: 1fr;
  }

  .xreg-home-page .metric-grid article {
    border-top: 1px solid rgba(126, 183, 221, 0.13);
    border-left: 0;
  }

  .xreg-home-page .metric-grid article:first-child {
    border-top: 0;
  }
}

/* Reference top-screen tune: header mark, hero readability, globe visibility, primary actions. */
.xreg-home-page .xreg-brand-mark {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #f8fbff;
  background: none;
  box-shadow: none;
  font-size: 34px;
  font-weight: 920;
  line-height: 1;
  text-shadow: 0 0 20px rgba(4, 249, 231, 0.5);
}

.xreg-home-page .xreg-brand-mark::after {
  color: #16ffe6;
  content: "reg.ai";
  font-size: 25px;
  font-weight: 860;
}

.xreg-home-page .xreg-brand-copy {
  display: none;
}

.xreg-home-page .xreg-dashboard .hero-command {
  grid-template-columns: minmax(650px, 0.56fr) minmax(520px, 0.44fr);
  padding: 38px 58px;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 14, 0.94) 0%, rgba(2, 7, 14, 0.68) 38%, rgba(2, 7, 14, 0.24) 61%, rgba(2, 7, 14, 0.56) 100%),
    radial-gradient(circle at 63% 49%, rgba(4, 249, 231, 0.3), transparent 23rem),
    url("/static/dashboard/assets/hero/Globe.png");
  background-position: center, center, 58% 50%;
  background-size: auto, auto, min(76vw, 1150px) auto;
}

.xreg-home-page .xreg-dashboard .hero-command::before {
  background:
    linear-gradient(90deg, rgba(4, 249, 231, 0.09), transparent 34%, transparent 82%, rgba(79, 189, 255, 0.08)),
    linear-gradient(180deg, transparent 76%, rgba(3, 7, 13, 0.2));
}

.xreg-home-page .hero-copy {
  max-width: 820px;
}

.xreg-home-page .xreg-dashboard h1 {
  max-width: 830px;
  font-size: clamp(3.05rem, 4.05vw, 4.3rem);
  line-height: 1.03;
}

.xreg-home-page .xreg-dashboard h1 span {
  white-space: nowrap;
}

.xreg-home-page .primary-actions .eyebrow {
  color: #16ffe6;
  font-size: 15px;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.xreg-home-page .action-card.primary-card {
  min-height: 136px;
  grid-template-columns: 112px 1fr 40px;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
}

.xreg-home-page .action-card.primary-card::before {
  background-size: 330px auto;
  opacity: 0.42;
}

.xreg-home-page .primary-card .xreg-dashboard-icon {
  width: 94px;
  height: 94px;
  padding: 0;
  object-fit: contain;
}

.xreg-home-page .action-card.primary-card h3 {
  font-size: 20px;
}

.xreg-home-page .action-card.primary-card p {
  max-width: 360px;
}

@media (max-width: 1280px) {
  .xreg-home-page .xreg-dashboard .hero-command {
    grid-template-columns: 1fr;
  }

  .xreg-home-page .xreg-dashboard h1 span {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-brand-mark::after {
    font-size: 21px;
  }

  .xreg-home-page .xreg-dashboard h1 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .xreg-home-page .action-card.primary-card {
    grid-template-columns: 88px 1fr 34px;
    min-height: 118px;
    padding: 16px 18px;
  }

  .xreg-home-page .primary-card .xreg-dashboard-icon {
    width: 76px;
    height: 76px;
  }
}

/* Reference-match top viewport pass. */
.xreg-home-page .xreg-home-shell {
  padding: 0 34px 26px;
}

.xreg-home-page .xreg-topbar {
  min-height: 88px;
  grid-template-columns: 340px minmax(640px, 1fr) 340px;
  margin: 0 -34px;
  padding: 12px 38px;
}

.xreg-home-page .xreg-brand {
  gap: 8px;
}

.xreg-home-page .xreg-brand-mark {
  position: relative;
  min-width: 120px;
  padding-left: 38px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 920;
  text-shadow: 0 0 22px rgba(4, 249, 231, 0.56);
}

.xreg-home-page .xreg-brand-mark::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 31px;
  height: 43px;
  border-radius: 55% 55% 55% 12%;
  background:
    radial-gradient(circle at 52% 61%, rgba(255, 255, 255, 0.9) 0 5px, transparent 6px),
    linear-gradient(145deg, #13ffe1 0%, #0987ff 58%, #1bf2a4 100%);
  box-shadow: 0 0 24px rgba(4, 249, 231, 0.54);
  content: "";
  transform: rotate(42deg);
}

.xreg-home-page .xreg-brand-mark::after {
  color: #ffffff;
  content: "reg.ai";
  font-size: 28px;
  font-weight: 820;
  text-shadow: none;
}

.xreg-home-page .xreg-nav {
  gap: 30px;
}

.xreg-home-page .xreg-nav a,
.xreg-home-page .xreg-nav .disabled {
  font-size: 16px;
}

.xreg-home-page .xreg-nav a.active {
  min-height: 58px;
  padding: 0 24px;
}

.xreg-home-page .xreg-user-copy strong {
  font-size: 15px;
}

.xreg-home-page .xreg-dashboard {
  gap: 22px;
}

.xreg-home-page .xreg-dashboard .hero-command {
  min-height: 300px;
  grid-template-columns: minmax(740px, 1fr) minmax(660px, 0.43fr);
  gap: 22px;
  padding: 34px 72px;
  border-color: rgba(57, 164, 221, 0.36);
  background-image:
    linear-gradient(90deg, rgba(2, 7, 14, 0.92) 0%, rgba(2, 7, 14, 0.58) 36%, rgba(2, 7, 14, 0.1) 57%, rgba(2, 7, 14, 0.48) 100%),
    radial-gradient(circle at 55% 52%, rgba(4, 249, 231, 0.26), transparent 21rem),
    url("/static/dashboard/assets/hero/Globe.png");
  background-position: center, center, 55% 52%;
  background-size: auto, auto, min(82vw, 1260px) auto;
}

.xreg-home-page .hero-copy {
  max-width: 810px;
}

.xreg-home-page .hero-copy .eyebrow {
  margin-bottom: 10px;
}

.xreg-home-page .xreg-dashboard h1 {
  max-width: 810px;
  font-size: clamp(3rem, 3.55vw, 4.05rem);
  line-height: 1.03;
}

.xreg-home-page .xreg-dashboard .subhead {
  max-width: 610px;
  margin-top: 14px;
  font-size: 17px;
}

.xreg-home-page .sector-chips {
  margin-top: 24px;
}

.xreg-home-page .hero-visual-panel {
  justify-content: flex-end;
}

.xreg-home-page .command-center-card {
  width: min(100%, 690px);
  max-width: 690px;
  min-height: 266px;
  padding: 22px 28px;
}

.xreg-home-page .metric-grid article {
  min-height: 136px;
}

.xreg-home-page .metric-grid article img {
  width: 36px;
  height: 36px;
}

.xreg-home-page .primary-actions {
  padding: 20px 14px 14px;
  border-color: rgba(57, 164, 221, 0.34);
}

.xreg-home-page .primary-actions .section-head {
  margin: 0 22px 14px;
}

.xreg-home-page .action-card.primary-card {
  min-height: 132px;
  grid-template-columns: 118px 1fr 48px;
  gap: 20px;
  padding: 18px 24px;
  border-color: rgba(57, 164, 221, 0.42);
}

.xreg-home-page .primary-card .xreg-dashboard-icon {
  width: 96px;
  height: 96px;
}

.xreg-home-page .action-card.primary-card::before {
  background-size: 390px auto;
  opacity: 0.5;
}

.xreg-home-page .action-card.primary-card span {
  width: 44px;
  min-width: 44px;
  height: 44px;
}

@media (max-width: 1500px) {
  .xreg-home-page .xreg-dashboard .hero-command {
    grid-template-columns: minmax(560px, 1fr) minmax(560px, 0.46fr);
    padding-right: 46px;
    padding-left: 46px;
  }

  .xreg-home-page .command-center-card {
    max-width: 610px;
  }
}

@media (max-width: 1280px) {
  .xreg-home-page .xreg-topbar {
    grid-template-columns: 1fr;
  }

  .xreg-home-page .xreg-dashboard .hero-command {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

/* Logo and badge visibility pass. */
.xreg-home-page .xreg-brand {
  min-width: 170px;
  align-items: center;
}

.xreg-home-page .xreg-brand-logo {
  width: 152px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(4, 249, 231, 0.48));
}

.xreg-home-page .xreg-brand-mark,
.xreg-home-page .xreg-brand-mark::before,
.xreg-home-page .xreg-brand-mark::after,
.xreg-home-page .xreg-brand-copy {
  display: none;
}

.xreg-home-page .action-card.primary-card {
  grid-template-columns: 136px 1fr 62px;
  min-height: 146px;
  padding: 18px 26px;
}

.xreg-home-page .primary-card .xreg-dashboard-icon {
  width: 116px;
  height: 116px;
  justify-self: center;
}

.xreg-home-page .action-card.primary-card .action-arrow {
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.xreg-home-page .action-card.primary-card .action-arrow::after {
  content: none;
}

.xreg-home-page .action-card.primary-card .action-arrow img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(4, 249, 231, 0.5));
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-brand-logo {
    width: 132px;
  }

  .xreg-home-page .action-card.primary-card {
    grid-template-columns: 102px 1fr 48px;
  }

  .xreg-home-page .primary-card .xreg-dashboard-icon {
    width: 88px;
    height: 88px;
  }

  .xreg-home-page .action-card.primary-card .action-arrow,
  .xreg-home-page .action-card.primary-card .action-arrow img {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
}

/* Make the real lockup visible even if Flask has not reloaded the latest template. */
.xreg-home-page .xreg-brand {
  width: 174px;
  min-width: 174px;
  height: 76px;
  display: block;
  background-image: url("/static/dashboard/assets/brand/xreg-lockup-dark-trim.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 170px auto;
  filter: drop-shadow(0 0 24px rgba(4, 249, 231, 0.5));
}

.xreg-home-page .xreg-brand-logo,
.xreg-home-page .xreg-brand-mark,
.xreg-home-page .xreg-brand-copy {
  display: none;
}

.xreg-home-page .action-card.primary-card {
  grid-template-columns: 164px 1fr 72px;
  min-height: 164px;
  padding: 20px 28px;
}

.xreg-home-page .primary-card .xreg-dashboard-icon {
  width: 138px;
  height: 138px;
}

.xreg-home-page .action-card.primary-card .action-arrow,
.xreg-home-page .action-card.primary-card .action-arrow img {
  width: 70px;
  height: 70px;
  min-width: 70px;
}

.xreg-home-page .action-card.primary-card h3 {
  font-size: 22px;
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-brand {
    width: 146px;
    min-width: 146px;
    height: 64px;
    background-size: 144px auto;
  }

  .xreg-home-page .action-card.primary-card {
    grid-template-columns: 118px 1fr 54px;
  }

  .xreg-home-page .primary-card .xreg-dashboard-icon {
    width: 106px;
    height: 106px;
  }

  .xreg-home-page .action-card.primary-card .action-arrow,
  .xreg-home-page .action-card.primary-card .action-arrow img {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
}

/* Header-only correction: scale the brand to match the reference top bar. */
.xreg-home-page .xreg-topbar {
  min-height: 86px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.xreg-home-page .xreg-brand {
  position: relative;
  width: 178px;
  min-width: 178px;
  height: 66px;
  background-size: 126px auto;
  background-position: left center;
  filter: drop-shadow(0 0 18px rgba(4, 249, 231, 0.42));
}

.xreg-home-page .xreg-brand::after {
  position: absolute;
  left: 125px;
  top: 32px;
  color: #ffffff;
  content: ".ai";
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 0 16px rgba(4, 249, 231, 0.5);
}

.xreg-home-page .xreg-nav a.active {
  min-height: 56px;
}

.xreg-home-page .xreg-user {
  align-self: center;
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-brand {
    width: 148px;
    min-width: 148px;
    height: 56px;
    background-size: 106px auto;
  }

  .xreg-home-page .xreg-brand::after {
    left: 105px;
    top: 28px;
    font-size: 18px;
  }
}

/* Header cleanup: smaller logo, clearer nav bullets, centered user initial. */
.xreg-home-page .xreg-topbar {
  min-height: 80px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.xreg-home-page .xreg-brand {
  width: 126px;
  min-width: 126px;
  height: 56px;
  background-size: 112px auto;
  background-position: left center;
  filter: drop-shadow(0 0 16px rgba(4, 249, 231, 0.38));
}

.xreg-home-page .xreg-brand::after {
  content: none;
}

.xreg-home-page .xreg-nav a img,
.xreg-home-page .xreg-nav .disabled img {
  width: 20px;
  height: 20px;
  padding: 2px;
  border: 1px solid rgba(215, 232, 246, 0.42);
  border-radius: 999px;
  background: rgba(215, 232, 246, 0.07);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(216, 241, 255, 0.2));
}

.xreg-home-page .xreg-user {
  gap: 12px;
}

.xreg-home-page .xreg-user-bell {
  width: 20px;
  height: 20px;
  padding: 2px;
  border: 1px solid rgba(215, 232, 246, 0.42);
  border-radius: 999px;
  background: rgba(215, 232, 246, 0.07);
  opacity: 1;
}

.xreg-home-page .xreg-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(79, 189, 255, 0.35);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(145deg, #112a48, #0b1b30);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 16px rgba(28, 126, 196, 0.24);
  font-size: 16px;
  font-weight: 820;
  line-height: 1;
  text-align: center;
}

.xreg-home-page .xreg-user-copy {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.xreg-home-page .xreg-user-copy strong,
.xreg-home-page .xreg-user-copy span {
  line-height: 1.15;
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-brand {
    width: 110px;
    min-width: 110px;
    height: 50px;
    background-size: 100px auto;
  }

  .xreg-home-page .xreg-avatar {
    width: 44px;
    height: 44px;
  }
}

/* Header symbol icons: use symbol-only PNGs without extra badge rings. */
.xreg-home-page .xreg-nav a img,
.xreg-home-page .xreg-nav .disabled img {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 0 6px rgba(216, 241, 255, 0.32));
}

.xreg-home-page .xreg-nav a.active img {
  filter: drop-shadow(0 0 8px rgba(4, 249, 231, 0.5));
}

.xreg-home-page .xreg-user-bell {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 0 6px rgba(216, 241, 255, 0.32));
}

/* Force header symbols even when the running Flask process is serving stale img src paths. */
.xreg-home-page .xreg-nav a,
.xreg-home-page .xreg-nav .disabled {
  gap: 10px;
}

.xreg-home-page .xreg-nav a img,
.xreg-home-page .xreg-nav .disabled img {
  display: none;
}

.xreg-home-page .xreg-nav a::before,
.xreg-home-page .xreg-nav .disabled::before {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  filter: drop-shadow(0 0 7px rgba(216, 241, 255, 0.34));
}

.xreg-home-page .xreg-nav a.active::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols-white/ui-home-symbol-white.png");
  filter: drop-shadow(0 0 9px rgba(4, 249, 231, 0.6));
}

.xreg-home-page .xreg-nav a[href="/portal/"]::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols-white/ui-document-symbol-white.png");
}

.xreg-home-page .xreg-nav a[href="/portal/search.html"]::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols-white/ui-search-symbol-white.png");
}

.xreg-home-page .xreg-nav a[href="/expert/"]::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols-white/ui-help-symbol-white.png");
}

.xreg-home-page .xreg-nav a[href="/workspace/"]::before,
.xreg-home-page .xreg-nav .disabled::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols-white/ui-folder-symbol-white.png");
}

.xreg-home-page .xreg-user-bell {
  display: none;
}

.xreg-home-page .xreg-user::before {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  background: url("/static/dashboard/assets/badges/general-ui-symbols-white/ui-bell-symbol-white.png") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 0 7px rgba(216, 241, 255, 0.34));
}

/* Header/hero sizing pass requested 2026-05-11. Keep this block last. */
.xreg-home-page .xreg-topbar {
  min-height: 104px;
  grid-template-columns: 136px minmax(760px, 1fr) 390px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.xreg-home-page .xreg-brand {
  width: 102px;
  min-width: 102px;
  height: 68px;
  background-size: 84px auto;
  background-position: left center;
}

.xreg-home-page .xreg-nav {
  gap: 24px;
}

.xreg-home-page .xreg-nav a,
.xreg-home-page .xreg-nav .disabled {
  gap: 14px;
  min-height: 64px;
  padding: 0 8px;
  font-size: 18px;
}

.xreg-home-page .xreg-nav a.active {
  min-height: 72px;
  padding: 0 28px;
  border-radius: 14px;
}

.xreg-home-page .xreg-nav a::before,
.xreg-home-page .xreg-nav .disabled::before,
.xreg-home-page .xreg-user::before {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.xreg-home-page .xreg-user-copy strong {
  font-size: 17px;
}

.xreg-home-page .xreg-user-copy span {
  font-size: 13px;
}

.xreg-home-page .xreg-avatar {
  width: 58px;
  height: 58px;
  font-size: 18px;
}

.xreg-home-page .xreg-dashboard .hero-command {
  background-color: #02070e;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 14, 0.88) 0%, rgba(2, 7, 14, 0.46) 33%, rgba(2, 7, 14, 0.08) 58%, rgba(2, 7, 14, 0.52) 72%, rgba(2, 7, 14, 0.92) 100%),
    radial-gradient(circle at 28% 54%, rgba(4, 249, 231, 0.14), transparent 25rem),
    url("/static/dashboard/assets/hero/Globe.png"),
    linear-gradient(120deg, #04111a 0%, #02070e 62%, #02070e 100%);
  background-position: center, center, -360px 38px, center;
  background-size: auto, auto, min(104vw, 1640px) auto, auto;
}

.xreg-home-page .command-center-card {
  border-color: rgba(79, 189, 255, 0.22);
  background: rgba(2, 7, 14, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
}

.xreg-home-page .xreg-dashboard .hero-command::before {
  background:
    linear-gradient(90deg, rgba(4, 249, 231, 0.08), transparent 33%, transparent 66%, rgba(2, 7, 14, 0.44) 82%, rgba(2, 7, 14, 0.62)),
    linear-gradient(180deg, transparent 74%, rgba(2, 7, 14, 0.24));
}

@media (max-width: 1280px) {
  .xreg-home-page .xreg-topbar {
    grid-template-columns: 1fr;
  }

  .xreg-home-page .xreg-dashboard .hero-command {
    background-position: center, center, -210px 28px, center;
    background-size: auto, auto, min(128vw, 1180px) auto, auto;
  }
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-brand {
    width: 88px;
    min-width: 88px;
    height: 58px;
    background-size: 75px auto;
  }

  .xreg-home-page .xreg-nav a,
  .xreg-home-page .xreg-nav .disabled {
    min-height: 56px;
    font-size: 16px;
  }

  .xreg-home-page .xreg-nav a::before,
  .xreg-home-page .xreg-nav .disabled::before,
  .xreg-home-page .xreg-user::before {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

/* Brand teal, UI arrows, and launch badge pass requested 2026-05-12. */
.xreg-home-page {
  --teal: #19F4FF;
  --cyan: #98FFFF;
  --teal-rgb: 25, 244, 255;
  --teal-highlight: #98FFFF;
  --teal-glow-soft: #86FFFF;
  --teal-edge: #008EA1;
  --badge-navy: #02070C;
  --badge-ring: #0B3D48;
}

.xreg-home-page .xreg-dashboard .eyebrow,
.xreg-home-page .primary-actions .eyebrow,
.xreg-home-page .metric-grid small,
.xreg-home-page .system-status strong,
.xreg-home-page .system-status .live-indicator,
.xreg-home-page .view-all,
.xreg-home-page .materials-card .text-link,
.xreg-home-page .xreg-dashboard .quick-list span {
  color: #19F4FF;
  text-shadow: 0 0 18px rgba(var(--teal-rgb), 0.24);
}

.xreg-home-page .xreg-nav a.active,
.xreg-home-page .sector-chips span.active,
.xreg-home-page .command-center-card,
.xreg-home-page .primary-actions,
.xreg-home-page .xreg-dashboard .action-card.primary-card,
.xreg-home-page .tool-link,
.xreg-home-page .xreg-dashboard .quick-list span {
  border-color: rgba(var(--teal-rgb), 0.42);
}

.xreg-home-page .xreg-nav a.active {
  background:
    linear-gradient(180deg, rgba(var(--teal-rgb), 0.22), rgba(0, 142, 161, 0.26)),
    rgba(3, 24, 34, 0.9);
  box-shadow: 0 0 24px rgba(var(--teal-rgb), 0.26), inset 0 0 18px rgba(var(--teal-rgb), 0.12);
}

.xreg-home-page .sector-chips span.active {
  background: linear-gradient(180deg, rgba(var(--teal-rgb), 0.94), rgba(0, 151, 168, 0.88));
  color: #02070C;
  box-shadow: 0 0 22px rgba(var(--teal-rgb), 0.24);
}

.xreg-home-page .xreg-brand,
.xreg-home-page .xreg-nav a.active::before,
.xreg-home-page .xreg-user::before {
  filter: drop-shadow(0 0 14px rgba(var(--teal-rgb), 0.38));
}

.xreg-home-page .xreg-dashboard .hero-command::before {
  background:
    linear-gradient(90deg, rgba(var(--teal-rgb), 0.09), transparent 33%, transparent 66%, rgba(2, 7, 14, 0.44) 82%, rgba(2, 7, 14, 0.62)),
    linear-gradient(180deg, transparent 74%, rgba(2, 7, 14, 0.24));
}

.xreg-home-page .system-status p span,
.xreg-home-page .live-indicator::before {
  background: #19F4FF;
  box-shadow: 0 0 14px rgba(var(--teal-rgb), 0.72);
}

.xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow::after {
  content: none;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow img {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(var(--teal-rgb), 0.42));
}

.xreg-home-page .tool-link .tool-launch-badge {
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.xreg-home-page .tool-link .tool-launch-badge img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(var(--teal-rgb), 0.42));
}

.xreg-home-page .tool-link:hover,
.xreg-home-page .xreg-dashboard .action-card.primary-card:hover {
  border-color: rgba(var(--teal-rgb), 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 24px rgba(var(--teal-rgb), 0.12);
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow img {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .xreg-home-page .tool-link .tool-launch-badge img {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}

/* Primary action compact sizing pass requested 2026-05-12. */
.xreg-home-page .primary-actions {
  padding: 16px 14px 16px;
}

.xreg-home-page .primary-actions .section-head {
  margin: 0 22px 16px;
}

.xreg-home-page .primary-action-grid {
  gap: 18px;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card {
  min-height: 108px;
  grid-template-columns: 82px minmax(0, 1fr) 92px;
  gap: 10px;
  align-items: center;
  padding: 8px 18px 8px 10px;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card::before {
  background-image: url("/static/dashboard/assets/accents/four-line-sweep-hover.png");
  background-position: right center;
  background-size: 330px 108px;
  opacity: 0.55;
}

.xreg-home-page .primary-card .xreg-dashboard-icon {
  width: 72px;
  height: 72px;
  justify-self: start;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card h3 {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.14;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card p {
  max-width: 310px;
  font-size: 13px;
  line-height: 1.32;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow {
  width: 88px;
  min-width: 88px;
  height: 88px;
  justify-self: end;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow img {
  width: 88px;
  min-width: 88px;
  height: 88px;
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-dashboard .action-card.primary-card {
    min-height: 98px;
    grid-template-columns: 68px minmax(0, 1fr) 72px;
    padding: 8px 12px 8px 8px;
  }

  .xreg-home-page .primary-card .xreg-dashboard-icon {
    width: 60px;
    height: 60px;
  }

  .xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow,
  .xreg-home-page .xreg-dashboard .action-card.primary-card .action-arrow img {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }
}

/* Badge scale pass requested 2026-05-12. */
.xreg-home-page .metric-grid article {
  min-height: 182px;
  padding-top: 10px;
}

.xreg-home-page .metric-grid article img {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

.xreg-home-page .tool-link > .xreg-dashboard-icon,
.xreg-home-page .materials-card .panel-icon,
.xreg-home-page .trust-item .xreg-dashboard-icon {
  width: 72px;
  height: 72px;
}

.xreg-home-page .tool-link {
  grid-template-columns: 72px minmax(0, 1fr) auto;
}

.xreg-home-page .materials-card .panel-icon {
  margin-bottom: 12px;
}

.xreg-home-page .trust-item {
  grid-template-columns: 72px minmax(0, 1fr);
}

@media (max-width: 900px) {
  .xreg-home-page .metric-grid article img,
  .xreg-home-page .tool-link > .xreg-dashboard-icon,
  .xreg-home-page .materials-card .panel-icon,
  .xreg-home-page .trust-item .xreg-dashboard-icon {
    width: 60px;
    height: 60px;
  }

  .xreg-home-page .tool-link,
  .xreg-home-page .trust-item {
    grid-template-columns: 60px minmax(0, 1fr);
  }
}

/* Complete lower-dashboard badge scale pass requested 2026-05-12. */
.xreg-home-page .tool-link .tool-launch-badge,
.xreg-home-page .tool-link .tool-launch-badge img,
.xreg-home-page .xreg-dashboard .activity-list img {
  width: 72px;
  min-width: 72px;
  height: 72px;
}

.xreg-home-page .tool-link {
  grid-template-columns: 72px minmax(0, 1fr) 72px;
}

.xreg-home-page .xreg-dashboard .activity-list li {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 84px;
}

@media (max-width: 900px) {
  .xreg-home-page .tool-link .tool-launch-badge,
  .xreg-home-page .tool-link .tool-launch-badge img,
  .xreg-home-page .xreg-dashboard .activity-list img {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .xreg-home-page .tool-link,
  .xreg-home-page .xreg-dashboard .activity-list li {
    grid-template-columns: 60px minmax(0, 1fr);
  }
}

/* Header active/hover and sector chip pass requested 2026-05-12. */
.xreg-home-page .xreg-nav a,
.xreg-home-page .xreg-nav .disabled {
  min-height: 64px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.xreg-home-page .xreg-nav a.active {
  min-height: 64px;
  padding: 0 14px;
  border-color: transparent;
  border-radius: 14px;
  color: #f6fbff;
  background: transparent;
  box-shadow: none;
}

.xreg-home-page .xreg-nav a.active::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: calc(100% - 28px);
  max-width: 144px;
  height: 3px;
  border-radius: 999px;
  background: #19F4FF;
  box-shadow: 0 0 14px rgba(var(--teal-rgb), 0.7);
  content: "";
  transform: translateX(-50%);
}

.xreg-home-page .xreg-nav a:hover,
.xreg-home-page .xreg-nav a:focus-visible {
  border-color: rgba(var(--teal-rgb), 0.58);
  color: #02070C;
  background: linear-gradient(180deg, rgba(152, 255, 255, 0.96), rgba(25, 244, 255, 0.9));
  box-shadow: 0 0 24px rgba(var(--teal-rgb), 0.28), inset 0 0 18px rgba(255, 255, 255, 0.2);
}

.xreg-home-page .xreg-nav a:hover::after,
.xreg-home-page .xreg-nav a:focus-visible::after {
  opacity: 0;
}

.xreg-home-page .xreg-nav a:hover::before,
.xreg-home-page .xreg-nav a:focus-visible::before {
  filter: brightness(0) saturate(100%) drop-shadow(0 0 8px rgba(2, 7, 12, 0.28));
}

.xreg-home-page .sector-chips {
  gap: 9px;
}

.xreg-home-page .sector-chips span {
  min-height: 34px;
  gap: 8px;
  padding: 5px 12px 5px 7px;
  font-size: 13px;
  font-weight: 800;
}

.xreg-home-page .sector-chips img {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .xreg-home-page .xreg-nav a,
  .xreg-home-page .xreg-nav .disabled {
    min-height: 56px;
  }

  .xreg-home-page .xreg-nav a.active {
    min-height: 56px;
  }

  .xreg-home-page .sector-chips span {
    min-height: 32px;
    font-size: 12px;
  }

  .xreg-home-page .sector-chips img {
    width: 18px;
    height: 18px;
  }
}

/* Header symbol hover pass requested 2026-05-12. */
.xreg-home-page .xreg-nav a:hover,
.xreg-home-page .xreg-nav a:focus-visible {
  border-color: transparent;
  color: #19F4FF;
  background: transparent;
  box-shadow: none;
}

.xreg-home-page .xreg-nav a:hover::after,
.xreg-home-page .xreg-nav a:focus-visible::after {
  opacity: 1;
}

.xreg-home-page .xreg-nav a:hover::before,
.xreg-home-page .xreg-nav a:focus-visible::before {
  filter: drop-shadow(0 0 9px rgba(var(--teal-rgb), 0.62));
}

.xreg-home-page .xreg-nav a[href="/portal/home.html"]:hover::before,
.xreg-home-page .xreg-nav a[href="/portal/home.html"]:focus-visible::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols/ui-home-symbol.png");
}

.xreg-home-page .xreg-nav a[href="/portal/"]:hover::before,
.xreg-home-page .xreg-nav a[href="/portal/"]:focus-visible::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols/ui-document-symbol.png");
}

.xreg-home-page .xreg-nav a[href="/portal/search.html"]:hover::before,
.xreg-home-page .xreg-nav a[href="/portal/search.html"]:focus-visible::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols/ui-search-symbol.png");
}

.xreg-home-page .xreg-nav a[href="/expert/"]:hover::before,
.xreg-home-page .xreg-nav a[href="/expert/"]:focus-visible::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols/ui-help-symbol.png");
}

.xreg-home-page .xreg-nav a[href="/workspace/"]:hover::before,
.xreg-home-page .xreg-nav a[href="/workspace/"]:focus-visible::before {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols/ui-folder-symbol.png");
}

.xreg-home-page .sector-chips span {
  min-height: 48px;
  gap: 10px;
  padding: 6px 15px 6px 8px;
  font-size: 14px;
  font-weight: 800;
}

.xreg-home-page .sector-chips img {
  width: 36px;
  height: 36px;
}

@media (max-width: 900px) {
  .xreg-home-page .sector-chips span {
    min-height: 40px;
    font-size: 13px;
  }

  .xreg-home-page .sector-chips img {
    width: 30px;
    height: 30px;
  }
}

/* Neutral sector options and softer metric labels pass requested 2026-05-12. */
.xreg-home-page .sector-chips {
  flex-wrap: nowrap;
  gap: 8px;
  max-width: 720px;
}

.xreg-home-page .sector-chips span,
.xreg-home-page .sector-chips span.active {
  min-height: 40px;
  gap: 8px;
  padding: 5px 12px 5px 6px;
  border-color: rgba(var(--teal-rgb), 0.28);
  color: #dffffb;
  background: rgba(3, 14, 24, 0.64);
  box-shadow: inset 0 0 18px rgba(var(--teal-rgb), 0.06);
  font-size: 12px;
  font-weight: 800;
}

.xreg-home-page .sector-chips img {
  width: 30px;
  height: 30px;
}

.xreg-home-page .sector-chips span:hover {
  border-color: rgba(var(--teal-rgb), 0.52);
  color: #19F4FF;
  background: rgba(3, 20, 30, 0.72);
  box-shadow: 0 0 18px rgba(var(--teal-rgb), 0.12), inset 0 0 18px rgba(var(--teal-rgb), 0.08);
}

@media (max-width: 900px) {
  .xreg-home-page .sector-chips {
    flex-wrap: wrap;
    max-width: 100%;
  }
}

/* Shared primary/tool card sweep hover pass requested 2026-05-12. */
.xreg-home-page .xreg-dashboard .action-card.primary-card::before,
.xreg-home-page .tool-link::before {
  background-image: url("/static/dashboard/assets/accents/four-line-sweep.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 330px 108px;
  opacity: 0.42;
  transition: opacity 160ms ease, filter 160ms ease;
}

.xreg-home-page .xreg-dashboard .action-card.primary-card:hover::before,
.xreg-home-page .tool-link:hover::before {
  background-image: url("/static/dashboard/assets/accents/four-line-sweep-hover.png");
  opacity: 0.68;
  filter: drop-shadow(0 0 10px rgba(var(--teal-rgb), 0.18));
}

.xreg-home-page .xreg-dashboard .action-card.primary-card:hover,
.xreg-home-page .tool-link:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--teal-rgb), 0.56);
  background:
    linear-gradient(135deg, rgba(var(--teal-rgb), 0.12), transparent 38%),
    linear-gradient(315deg, rgba(87, 196, 255, 0.12), transparent 42%),
    rgba(5, 17, 30, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), 0 0 26px rgba(var(--teal-rgb), 0.16);
}

/* Command Center status baseline alignment requested 2026-05-12. */
.xreg-home-page .system-status p,
.xreg-home-page .system-status strong,
.xreg-home-page .system-status .live-indicator {
  line-height: 1;
}

.xreg-home-page .system-status p {
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.xreg-home-page .system-status strong {
  display: inline;
  min-height: 1em;
  margin-left: 2px;
  margin-top: 0;
  padding-top: 0;
  vertical-align: baseline;
}

.xreg-home-page .system-status .live-indicator {
  display: inline-flex;
  align-items: center;
}

/* Controlled Intelligence page and home hero action pass requested 2026-05-12. */
.xreg-home-page .hero-copy .hero-actions {
  margin-top: 24px;
}

.xreg-home-page .hero-copy .button.secondary,
.controlled-intelligence-page .button.secondary,
.controlled-intelligence-page .ci-header-link {
  border-color: rgba(var(--teal-rgb), 0.34);
  color: #19F4FF;
  background: rgba(3, 14, 24, 0.66);
  box-shadow: inset 0 0 18px rgba(var(--teal-rgb), 0.06);
}

.xreg-home-page .hero-copy .button.secondary:hover,
.controlled-intelligence-page .button.secondary:hover,
.controlled-intelligence-page .ci-header-link:hover {
  border-color: rgba(var(--teal-rgb), 0.58);
  color: #98FFFF;
  background: rgba(3, 20, 30, 0.78);
  box-shadow: 0 0 22px rgba(var(--teal-rgb), 0.14), inset 0 0 18px rgba(var(--teal-rgb), 0.09);
}

/* Home hero launchpad correction requested 2026-05-12. */
.xreg-home-page .hero-copy .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.xreg-home-page .hero-copy .button {
  min-height: 42px;
  padding: 0 15px;
}

.xreg-home-page .hero-copy .button.primary {
  border-color: rgba(var(--teal-rgb), 0.58);
  color: #02070C;
  background: linear-gradient(180deg, rgba(152, 255, 255, 0.96), rgba(25, 244, 255, 0.9));
  box-shadow: 0 0 22px rgba(var(--teal-rgb), 0.18);
}

.xreg-home-page .xreg-dashboard .hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.85rem, 3.35vw, 3.75rem);
  line-height: 1.03;
}

.controlled-intelligence-page .ci-topbar {
  grid-template-columns: 136px minmax(480px, 1fr) auto;
}

.controlled-intelligence-page .ci-header-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(var(--teal-rgb), 0.34);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.controlled-intelligence-page .ci-page {
  display: grid;
  gap: 18px;
  margin-top: 14px;
}

.controlled-intelligence-page .ci-hero,
.controlled-intelligence-page .ci-section,
.controlled-intelligence-page .ci-final {
  border: 1px solid rgba(161, 215, 239, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--teal-rgb), 0.04), transparent 42%),
    rgba(4, 12, 22, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.controlled-intelligence-page .ci-hero {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 46px;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.9) 0%, rgba(2, 7, 13, 0.66) 52%, rgba(2, 7, 13, 0.88) 100%),
    radial-gradient(circle at 76% 42%, rgba(var(--teal-rgb), 0.18), transparent 28rem),
    url("/static/dashboard/assets/hero/Globe.png") right center / min(58vw, 760px) auto no-repeat,
    linear-gradient(120deg, #071625, #02050a);
}

.controlled-intelligence-page .ci-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
}

.controlled-intelligence-page .ci-hero p:not(.eyebrow),
.controlled-intelligence-page .ci-final p {
  max-width: 760px;
  color: rgba(218, 232, 244, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

.controlled-intelligence-page .ci-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.controlled-intelligence-page .ci-actions .button {
  min-height: 44px;
  padding: 0 16px;
}

.controlled-intelligence-page .ci-actions .button.primary {
  border-color: rgba(var(--teal-rgb), 0.58);
  color: #02070C;
  background: linear-gradient(180deg, rgba(152, 255, 255, 0.96), rgba(25, 244, 255, 0.9));
}

.controlled-intelligence-page .ci-section,
.controlled-intelligence-page .ci-final {
  padding: 24px;
}

.controlled-intelligence-page .ci-section-head {
  margin-bottom: 16px;
}

.controlled-intelligence-page .ci-section-head h2,
.controlled-intelligence-page .ci-final h2 {
  margin: 0;
  color: #f6fbff;
  font-size: 28px;
  line-height: 1.12;
}

.controlled-intelligence-page .ci-card-grid {
  display: grid;
  gap: 14px;
}

.controlled-intelligence-page .ci-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.controlled-intelligence-page .ci-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.controlled-intelligence-page .ci-card-grid.seven {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.controlled-intelligence-page .ci-card-grid article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(161, 215, 239, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--teal-rgb), 0.08), transparent 38%),
    rgba(4, 13, 23, 0.8);
}

.controlled-intelligence-page .ci-card-grid.seven article {
  min-height: 112px;
  display: flex;
  align-items: center;
  color: #f4fbff;
  font-weight: 800;
  line-height: 1.25;
}

.controlled-intelligence-page .ci-card-grid h3 {
  margin: 0 0 8px;
  color: #f4fbff;
  font-size: 18px;
  line-height: 1.2;
}

.controlled-intelligence-page .ci-card-grid p {
  margin: 0;
  color: rgba(199, 215, 232, 0.76);
  font-size: 14px;
  line-height: 1.44;
}

.controlled-intelligence-page .ci-industries .sector-chips {
  margin-top: 4px;
}

.controlled-intelligence-page .ci-final {
  text-align: left;
}

@media (max-width: 1280px) {
  .controlled-intelligence-page .ci-topbar,
  .controlled-intelligence-page .ci-card-grid.three,
  .controlled-intelligence-page .ci-card-grid.four,
  .controlled-intelligence-page .ci-card-grid.seven {
    grid-template-columns: 1fr;
  }

  .controlled-intelligence-page .ci-header-link {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .controlled-intelligence-page .ci-hero,
  .controlled-intelligence-page .ci-section,
  .controlled-intelligence-page .ci-final {
    padding: 20px;
  }

  .controlled-intelligence-page .ci-hero {
    min-height: 0;
  }

.controlled-intelligence-page .ci-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }
}

/* Home hero Controlled Intelligence brand correction requested 2026-05-13. */
.xreg-home-page .hero-copy .hero-brand-label {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(3.1rem, 4.35vw, 5rem);
  font-weight: 920;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(87, 196, 255, 0.14);
}

.xreg-home-page .xreg-dashboard .hero-copy .hero-support-line {
  max-width: 660px;
  margin: 14px 0 0;
  color: #f7fbff;
  font-size: clamp(1.45rem, 1.65vw, 1.95rem);
  font-weight: 860;
  line-height: 1.08;
  text-shadow: 0 0 28px rgba(87, 196, 255, 0.16);
}

.xreg-home-page .xreg-dashboard .hero-copy .hero-support-line span {
  white-space: normal;
}

.xreg-home-page .hero-copy .button.secondary.controlled-info-link {
  gap: 9px;
  min-height: 38px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  color: #dffffb;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.xreg-home-page .hero-copy .controlled-info-link .hero-action-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 24px;
  background: url("/static/dashboard/assets/badges/general-ui-symbols-white/ui-shield-symbol-white.png") center / contain no-repeat;
  filter: drop-shadow(0 0 7px rgba(216, 241, 255, 0.28));
}

.xreg-home-page .hero-copy .button.secondary.controlled-info-link:hover,
.xreg-home-page .hero-copy .button.secondary.controlled-info-link:focus-visible {
  color: #19F4FF;
}

.xreg-home-page .hero-copy .controlled-info-link:hover .hero-action-icon,
.xreg-home-page .hero-copy .controlled-info-link:focus-visible .hero-action-icon {
  background-image: url("/static/dashboard/assets/badges/general-ui-symbols/ui-shield-symbol.png");
  filter: drop-shadow(0 0 9px rgba(var(--teal-rgb), 0.62));
}

@media (max-width: 900px) {
  .xreg-home-page .hero-copy .hero-brand-label {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
  }

  .xreg-home-page .xreg-dashboard .hero-copy .hero-support-line {
    font-size: clamp(1.4rem, 6vw, 1.95rem);
  }
}

/* Home hero badge scale and trademark pass requested 2026-05-13. */
.xreg-home-page .hero-copy .hero-brand-label {
  display: block;
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding-right: 0;
  text-transform: none;
  white-space: normal;
}

.xreg-home-page .hero-copy .hero-brand-label::after {
  content: none;
}

.xreg-home-page .xreg-dashboard .hero-copy .hero-support-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  max-width: none;
}

.xreg-home-page .xreg-dashboard .hero-copy .hero-support-line span {
  white-space: nowrap;
}

.xreg-home-page .hero-copy .button.secondary.controlled-info-link {
  gap: 8px;
  min-height: 40px;
  padding: 0 14px 0 6px;
  border-width: 1px;
  font-size: 13px;
  box-shadow: 0 0 20px rgba(var(--teal-rgb), 0.12), inset 0 0 22px rgba(var(--teal-rgb), 0.08);
}

.xreg-home-page .hero-copy .button.secondary.controlled-info-link .controlled-info-copy {
  white-space: nowrap;
}

.xreg-home-page .hero-copy .controlled-info-link .hero-action-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border: 1px solid rgba(216, 241, 255, 0.18);
  border-radius: 999px;
  background-color: rgba(216, 241, 255, 0.08);
  background-size: 18px 18px;
}

.xreg-home-page .hero-copy .controlled-info-link:hover .hero-action-icon,
.xreg-home-page .hero-copy .controlled-info-link:focus-visible .hero-action-icon {
  border-color: rgba(var(--teal-rgb), 0.52);
  background-color: rgba(var(--teal-rgb), 0.14);
}

.xreg-home-page .sector-chips {
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(100%, 900px);
}

.xreg-home-page .sector-chips span,
.xreg-home-page .sector-chips span.active {
  min-height: 44px;
  gap: 8px;
  padding: 0 14px 0 12px;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
  flex: 0 1 auto;
}

.xreg-home-page .sector-chips img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: none;
}

.xreg-home-page .sector-chips span:nth-child(1) img {
  content: url("/static/dashboard/assets/badges/sector-symbols/sector-rail.png");
}

.xreg-home-page .sector-chips span:nth-child(2) img {
  content: url("/static/dashboard/assets/badges/sector-symbols/sector-electric-utilities.png");
}

.xreg-home-page .sector-chips span:nth-child(3) img {
  content: url("/static/dashboard/assets/badges/sector-symbols/sector-oil-gas.png");
}

.xreg-home-page .sector-chips span:nth-child(4) img {
  content: url("/static/dashboard/assets/badges/sector-symbols/sector-waste.png");
}

.xreg-home-page .sector-chips span:nth-child(5) img {
  content: url("/static/dashboard/assets/badges/sector-symbols/sector-government.png");
}

@media (max-width: 1280px) {
  .xreg-home-page .sector-chips {
    flex-wrap: wrap;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .xreg-home-page .hero-copy .button.secondary.controlled-info-link {
    min-height: 40px;
    padding: 0 10px 0 4px;
    font-size: 13px;
  }

  .xreg-home-page .hero-copy .button.secondary.controlled-info-link .controlled-info-copy {
    white-space: normal;
  }

  .xreg-home-page .hero-copy .controlled-info-link .hero-action-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .xreg-home-page .sector-chips span,
  .xreg-home-page .sector-chips span.active {
    min-height: 42px;
    gap: 7px;
    padding: 0 12px 0 10px;
    font-size: 14px;
  }

  .xreg-home-page .sector-chips img {
    width: 28px;
    height: 28px;
  }
}

/* Controlled Intelligence dashboard page pass requested 2026-05-13. */
.ci-dashboard-page .xreg-home-shell {
  width: min(1880px, calc(100% - 52px));
  padding-top: 12px;
}

.ci-dashboard-page .xreg-topbar {
  margin-bottom: 14px;
  border-radius: 8px;
  border-width: 1px;
  background: rgba(2, 7, 14, 0.88);
}

.ci-dashboard-page .ci-dashboard {
  display: grid;
  gap: 12px;
  padding: 12px 0 22px;
}

.ci-dashboard-page .ci-dashboard-hero,
.ci-dashboard-page .ci-panel,
.ci-dashboard-page .ci-dashboard-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(87, 196, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--teal-rgb), 0.055), transparent 42%),
    linear-gradient(180deg, rgba(4, 14, 27, 0.84), rgba(2, 8, 16, 0.84));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.ci-dashboard-page .ci-dashboard-hero {
  min-height: 232px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  padding: 26px 46px;
  background:
    linear-gradient(90deg, rgba(2, 7, 14, 0.96) 0%, rgba(2, 7, 14, 0.72) 45%, rgba(2, 7, 14, 0.82) 100%),
    url("/static/dashboard/assets/hero/Globe.png") right center / min(56vw, 840px) auto no-repeat,
    linear-gradient(120deg, #071625, #02050a);
}

.ci-dashboard-page .ci-dashboard-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(var(--teal-rgb), 0.08), transparent 26%, transparent 72%, rgba(87, 196, 255, 0.1)),
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.42));
}

.ci-dashboard-page .ci-hero-copy,
.ci-dashboard-page .ci-hero-badge {
  position: relative;
  z-index: 1;
}

.ci-dashboard-page .ci-hero-copy .eyebrow,
.ci-dashboard-page .ci-panel-head .eyebrow {
  margin: 0;
  color: #19F4FF;
  font-size: 14px;
  font-weight: 880;
  line-height: 1.1;
  letter-spacing: 0.14em;
}

.ci-dashboard-page .ci-hero-copy h1 {
  max-width: 900px;
  margin: 8px 0 10px;
  color: #f7fbff;
  font-size: clamp(2.55rem, 3.5vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(87, 196, 255, 0.22);
}

.ci-dashboard-page .ci-hero-copy h1 span,
.ci-dashboard-page .ci-dashboard-cta h2 span {
  color: #f7fbff;
}

.ci-dashboard-page .ci-hero-copy p:not(.eyebrow) {
  max-width: 830px;
  margin: 0;
  color: rgba(235, 244, 255, 0.88);
  font-size: 18px;
  line-height: 1.42;
}

.ci-dashboard-page .ci-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.ci-dashboard-page .ci-actions .button,
.ci-dashboard-page .ci-dashboard-cta .button {
  min-height: 38px;
  gap: 12px;
  padding: 0 22px;
}

.ci-dashboard-page .ci-hero-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.ci-dashboard-page .ci-hero-badge img {
  width: min(250px, 36vw);
  height: auto;
  filter: drop-shadow(0 0 34px rgba(25, 244, 255, 0.28));
}

.ci-dashboard-page .ci-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.86fr);
  gap: 10px;
}

.ci-dashboard-page .ci-panel {
  min-height: 0;
  padding: 12px 18px 14px;
}

.ci-dashboard-page .ci-panel-wide {
  grid-column: span 1;
}

.ci-dashboard-page .ci-panel-head {
  margin-bottom: 10px;
}

.ci-dashboard-page .ci-panel-head h2 {
  margin: 3px 0 0;
  color: rgba(218, 232, 244, 0.74);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.25;
}

.ci-dashboard-page .ci-tile-row,
.ci-dashboard-page .ci-step-row,
.ci-dashboard-page .ci-icon-grid,
.ci-dashboard-page .ci-card-grid,
.ci-dashboard-page .ci-delivery-grid,
.ci-dashboard-page .ci-sector-row {
  display: grid;
  gap: 9px;
}

.ci-dashboard-page .ci-tile-row.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ci-dashboard-page .ci-tile-row.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ci-dashboard-page .ci-tile,
.ci-dashboard-page .ci-step,
.ci-dashboard-page .ci-icon-grid article,
.ci-dashboard-page .ci-card-grid article,
.ci-dashboard-page .ci-delivery-grid article,
.ci-dashboard-page .ci-sector-row span {
  border: 1px solid rgba(126, 183, 221, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--teal-rgb), 0.07), transparent 42%),
    rgba(3, 13, 25, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ci-dashboard-page .ci-tile {
  min-height: 150px;
  padding: 13px;
}

.ci-dashboard-page .ci-tile-row.four .ci-tile {
  min-height: 172px;
  padding: 16px;
}

.ci-dashboard-page .ci-tile img,
.ci-dashboard-page .ci-card-grid article img,
.ci-dashboard-page .ci-delivery-grid article img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(25, 244, 255, 0.22));
}

.ci-dashboard-page .ci-tile h3,
.ci-dashboard-page .ci-step h3,
.ci-dashboard-page .ci-card-grid h3,
.ci-dashboard-page .ci-delivery-grid h3 {
  margin: 6px 0 0;
  color: #f6fbff;
  font-size: 14px;
  line-height: 1.15;
}

.ci-dashboard-page .ci-tile p,
.ci-dashboard-page .ci-step p,
.ci-dashboard-page .ci-card-grid p,
.ci-dashboard-page .ci-delivery-grid p {
  margin: 8px 0 0;
  color: rgba(218, 232, 244, 0.78);
  font-size: 15px;
  line-height: 1.34;
}

.ci-dashboard-page .ci-step-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ci-dashboard-page .ci-step {
  min-height: 160px;
  padding: 14px;
  text-align: center;
}

.ci-dashboard-page .ci-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
  border: 1px solid rgba(var(--teal-rgb), 0.42);
  border-radius: 999px;
  color: #19F4FF;
  background: rgba(4, 23, 39, 0.8);
  box-shadow: 0 0 18px rgba(var(--teal-rgb), 0.16);
  font-size: 20px;
  font-weight: 850;
}

.ci-dashboard-page .ci-step img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.ci-dashboard-page .ci-icon-grid.seven {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.ci-dashboard-page .ci-icon-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 12px;
  text-align: center;
}

.ci-dashboard-page .ci-icon-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 6px;
}

.ci-dashboard-page .ci-icon-grid strong {
  color: #f4fbff;
  font-size: 15px;
  line-height: 1.18;
}

.ci-dashboard-page .ci-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ci-dashboard-page .ci-card-grid article,
.ci-dashboard-page .ci-delivery-grid article {
  min-height: 128px;
  padding: 12px;
}

.ci-dashboard-page .ci-card-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 10px;
  align-content: start;
}

.ci-dashboard-page .ci-card-grid article p {
  grid-column: 2;
}

.ci-dashboard-page .ci-card-grid article h3,
.ci-dashboard-page .ci-delivery-grid article h3 {
  margin-top: 0;
}

.ci-dashboard-page .ci-delivery-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ci-dashboard-page .ci-delivery-grid article {
  min-height: 96px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 9px;
}

.ci-dashboard-page .ci-delivery-grid article p {
  grid-column: 2;
  font-size: 15px;
}

.ci-dashboard-page .ci-sector-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ci-dashboard-page .ci-sector-row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: #f6fbff;
  font-size: 15px;
  font-weight: 800;
}

.ci-dashboard-page .ci-sector-row img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ci-dashboard-page .ci-dashboard-cta {
  min-height: 88px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 42px;
}

.ci-dashboard-page .ci-dashboard-cta > img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.ci-dashboard-page .ci-dashboard-cta h2 {
  margin: 0;
  color: #f6fbff;
  font-size: 24px;
  line-height: 1.1;
}

.ci-dashboard-page .ci-dashboard-cta p {
  margin: 6px 0 0;
  color: rgba(218, 232, 244, 0.78);
  font-size: 15px;
}

@media (max-width: 1500px) {
  .ci-dashboard-page .ci-dashboard-grid,
  .ci-dashboard-page .ci-dashboard-hero {
    grid-template-columns: 1fr;
  }

  .ci-dashboard-page .ci-hero-badge {
    display: none;
  }

  .ci-dashboard-page .ci-tile-row.six,
  .ci-dashboard-page .ci-delivery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ci-dashboard-page .ci-icon-grid.seven {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ci-dashboard-page .xreg-home-shell {
    width: min(100% - 24px, 760px);
  }

  .ci-dashboard-page .ci-dashboard-hero,
  .ci-dashboard-page .ci-panel,
  .ci-dashboard-page .ci-dashboard-cta {
    padding: 18px;
  }

  .ci-dashboard-page .ci-tile-row.six,
  .ci-dashboard-page .ci-tile-row.four,
  .ci-dashboard-page .ci-step-row,
  .ci-dashboard-page .ci-icon-grid.seven,
  .ci-dashboard-page .ci-card-grid.four,
  .ci-dashboard-page .ci-delivery-grid,
  .ci-dashboard-page .ci-sector-row,
  .ci-dashboard-page .ci-dashboard-cta {
    grid-template-columns: 1fr;
  }

  .ci-dashboard-page .ci-dashboard-cta > img {
    display: none;
  }
}

/* Controlled Intelligence premium tightening pass requested 2026-05-13. */
.ci-dashboard-page .xreg-home-shell {
  width: 100%;
  min-height: 100vh;
  padding: 0 28px 28px;
}

.ci-dashboard-page .xreg-topbar {
  min-height: 104px;
  grid-template-columns: 136px minmax(760px, 1fr) 390px;
  gap: 22px;
  margin: 0 -28px 14px;
  padding: 14px 32px;
  border: 0;
  border-bottom: 1px solid rgba(126, 183, 221, 0.16);
  border-radius: 0;
  background: rgba(2, 6, 14, 0.94);
  box-shadow: none;
}

.ci-dashboard-page .ci-dashboard {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  gap: 10px;
  padding: 0 0 20px;
}

.ci-dashboard-page .ci-dashboard-hero,
.ci-dashboard-page .ci-panel,
.ci-dashboard-page .ci-dashboard-cta {
  border-color: rgba(79, 189, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--teal-rgb), 0.06), transparent 38%),
    linear-gradient(180deg, rgba(4, 14, 27, 0.88), rgba(2, 8, 16, 0.9));
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.ci-dashboard-page .ci-dashboard-hero {
  min-height: 260px;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 28px;
  padding: 34px 46px;
  background:
    linear-gradient(90deg, rgba(2, 7, 14, 0.97) 0%, rgba(2, 7, 14, 0.68) 47%, rgba(2, 7, 14, 0.84) 100%),
    url("/static/dashboard/assets/hero/Globe.png") right center / min(56vw, 840px) auto no-repeat,
    linear-gradient(120deg, #071625, #02050a);
}

.ci-dashboard-page .ci-dashboard-hero::after {
  background:
    linear-gradient(90deg, rgba(4, 249, 231, 0.09), transparent 29%, transparent 72%, rgba(79, 189, 255, 0.1)),
    linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.35));
}

.ci-dashboard-page .ci-hero-copy h1 {
  max-width: 880px;
  margin: 0 0 12px;
  color: #f7fbff;
  font-size: clamp(3rem, 4.4vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.ci-dashboard-page .ci-hero-copy .ci-subhead {
  max-width: 1040px;
  margin: 0 0 8px;
  color: #f7fbff;
  font-size: clamp(1.25rem, 1.75vw, 2rem);
  font-weight: 850;
  line-height: 1.18;
}

.ci-dashboard-page .ci-hero-copy p:not(.eyebrow):not(.ci-subhead) {
  max-width: 780px;
  color: rgba(235, 244, 255, 0.78);
  font-size: 16px;
  line-height: 1.45;
}

.ci-dashboard-page .ci-hero-badge {
  min-height: 160px;
}

.ci-dashboard-page .ci-hero-badge img {
  width: min(180px, 24vw);
  filter: drop-shadow(0 0 30px rgba(25, 244, 255, 0.26));
}

.ci-dashboard-page .ci-dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.ci-dashboard-page .ci-panel {
  min-height: 0;
  padding: 14px 18px 16px;
}

.ci-dashboard-page .ci-panel-wide {
  grid-column: auto;
}

.ci-dashboard-page .ci-panel-full {
  grid-column: 1 / -1;
}

.ci-dashboard-page .ci-panel-head {
  margin-bottom: 10px;
}

.ci-dashboard-page .ci-panel-head .eyebrow {
  color: #19F4FF;
  font-size: 15px;
  font-weight: 880;
  letter-spacing: 0;
  line-height: 1.15;
}

.ci-dashboard-page .ci-panel-head h2 {
  max-width: 980px;
  margin: 4px 0 0;
  color: rgba(218, 232, 244, 0.76);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.3;
}

.ci-dashboard-page .ci-compact-list,
.ci-dashboard-page .ci-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.ci-dashboard-page .ci-compact-card,
.ci-dashboard-page .ci-metric-grid article,
.ci-dashboard-page .ci-sector-row span {
  border: 1px solid rgba(126, 183, 221, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--teal-rgb), 0.08), transparent 42%),
    rgba(3, 13, 25, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ci-dashboard-page .ci-compact-card,
.ci-dashboard-page .ci-metric-grid article {
  min-height: 92px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  align-items: start;
  padding: 11px 12px;
}

.ci-dashboard-page .ci-compact-card img,
.ci-dashboard-page .ci-metric-grid article img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 11px rgba(25, 244, 255, 0.2));
}

.ci-dashboard-page .ci-compact-card h3,
.ci-dashboard-page .ci-metric-grid h3 {
  margin: 0;
  color: #f6fbff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
}

.ci-dashboard-page .ci-compact-card p,
.ci-dashboard-page .ci-metric-grid p {
  margin: 5px 0 0;
  color: rgba(218, 232, 244, 0.78);
  font-size: 15px;
  line-height: 1.32;
}

.ci-dashboard-page .ci-sector-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.ci-dashboard-page .ci-sector-row span {
  min-height: 50px;
  padding: 7px 14px;
  color: #f6fbff;
  font-size: 15px;
  font-weight: 850;
}

.ci-dashboard-page .ci-sector-row img {
  width: 30px;
  height: 30px;
}

.ci-dashboard-page .ci-dashboard-cta {
  min-height: 82px;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 12px 34px;
}

.ci-dashboard-page .ci-dashboard-cta > img {
  width: 62px;
  height: 62px;
}

.ci-dashboard-page .ci-dashboard-cta h2 {
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  line-height: 1.08;
}

.ci-dashboard-page .ci-dashboard-cta p {
  margin-top: 4px;
  color: rgba(218, 232, 244, 0.78);
  font-size: 14px;
}

.ci-dashboard-page .ci-dashboard-cta .button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  white-space: nowrap;
}

.ci-dashboard-page .ci-dashboard-cta .button.primary {
  border: 1px solid rgba(51, 245, 220, 0.58);
  background: linear-gradient(180deg, rgba(51, 245, 220, 0.94), rgba(52, 177, 223, 0.9));
  color: #031016;
  box-shadow: 0 0 24px rgba(51, 245, 220, 0.22);
  font-weight: 860;
}

@media (max-width: 1280px) {
  .ci-dashboard-page .xreg-topbar {
    grid-template-columns: 1fr;
  }

  .ci-dashboard-page .ci-dashboard-hero {
    grid-template-columns: minmax(0, 1fr) 190px;
    padding: 30px;
  }

  .ci-dashboard-page .ci-hero-badge img {
    width: 150px;
  }
}

@media (max-width: 1080px) {
  .ci-dashboard-page .ci-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ci-dashboard-page .xreg-home-shell {
    padding: 0 14px 18px;
  }

  .ci-dashboard-page .xreg-topbar {
    margin: 0 -14px 12px;
  }

  .ci-dashboard-page .ci-dashboard-hero,
  .ci-dashboard-page .ci-panel,
  .ci-dashboard-page .ci-dashboard-cta {
    padding: 16px;
  }

  .ci-dashboard-page .ci-dashboard-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .ci-dashboard-page .ci-hero-badge {
    display: none;
  }

  .ci-dashboard-page .ci-compact-list,
  .ci-dashboard-page .ci-metric-grid,
  .ci-dashboard-page .ci-sector-row,
  .ci-dashboard-page .ci-dashboard-cta {
    grid-template-columns: 1fr;
  }

  .ci-dashboard-page .ci-dashboard-cta > img {
    display: none;
  }

  .ci-dashboard-page .ci-dashboard-cta .button {
    width: 100%;
  }
}

/* Controlled Intelligence typography and badge scale polish requested 2026-05-13. */
.ci-dashboard-page .ci-dashboard {
  gap: 12px;
}

.ci-dashboard-page .ci-dashboard-hero {
  min-height: 286px;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  padding: 38px 50px;
}

.ci-dashboard-page .ci-hero-copy h1 {
  max-width: 980px;
  margin-bottom: 14px;
  font-size: clamp(3.5rem, 4.7vw, 4.5rem);
  font-weight: 900;
}

.ci-dashboard-page .ci-hero-copy .ci-subhead {
  max-width: 1050px;
  font-size: clamp(1.125rem, 1.35vw, 1.375rem);
  line-height: 1.28;
}

.ci-dashboard-page .ci-hero-copy p:not(.eyebrow):not(.ci-subhead) {
  max-width: 850px;
  font-size: 16px;
  line-height: 1.5;
}

.ci-dashboard-page .ci-hero-badge img {
  width: min(220px, 24vw);
}

.ci-dashboard-page .ci-panel {
  padding: 18px 20px 20px;
}

.ci-dashboard-page .ci-panel-head {
  margin-bottom: 14px;
}

.ci-dashboard-page .ci-panel-head .eyebrow {
  color: #19F4FF;
  font-size: clamp(1.125rem, 1.15vw, 1.375rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.ci-dashboard-page .ci-panel-head h2 {
  max-width: 1100px;
  margin-top: 6px;
  color: rgba(235, 244, 255, 0.84);
  font-size: clamp(1rem, 0.95vw, 1.125rem);
  font-weight: 620;
  line-height: 1.3;
}

.ci-dashboard-page .ci-compact-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.ci-dashboard-page .ci-compact-card {
  min-height: 104px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
}

.ci-dashboard-page .ci-compact-card img {
  width: 48px;
  height: 48px;
}

.ci-dashboard-page .ci-compact-card h3 {
  font-size: 17px;
  line-height: 1.16;
}

.ci-dashboard-page .ci-compact-card p {
  margin-top: 6px;
  color: rgba(226, 239, 250, 0.82);
  font-size: 15px;
  line-height: 1.38;
}

.ci-dashboard-page .ci-feature-panel .ci-metric-grid {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 10px;
}

.ci-dashboard-page .ci-feature-panel .ci-metric-grid article {
  min-height: 112px;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.ci-dashboard-page .ci-feature-panel .ci-metric-grid article img {
  width: 58px;
  height: 58px;
}

.ci-dashboard-page .ci-feature-panel .ci-metric-grid h3 {
  font-size: 17px;
  line-height: 1.14;
}

.ci-dashboard-page .ci-feature-panel .ci-metric-grid p {
  margin-top: 6px;
  color: rgba(226, 239, 250, 0.82);
  font-size: 15px;
  line-height: 1.34;
}

.ci-dashboard-page .ci-sector-row {
  gap: 10px;
}

.ci-dashboard-page .ci-sector-row span {
  min-height: 58px;
  gap: 12px;
  padding: 9px 16px;
  font-size: 16px;
}

.ci-dashboard-page .ci-sector-row img {
  width: 28px;
  height: 28px;
}

.ci-dashboard-page .ci-dashboard-cta {
  min-height: 96px;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  padding: 16px 38px;
}

.ci-dashboard-page .ci-dashboard-cta > img {
  width: 74px;
  height: 74px;
}

.ci-dashboard-page .ci-dashboard-cta h2 {
  font-size: clamp(1.45rem, 1.85vw, 2rem);
}

.ci-dashboard-page .ci-dashboard-cta p {
  font-size: 15px;
}

.ci-dashboard-page .ci-dashboard-cta .button {
  min-height: 46px;
  font-size: 15px;
}

@media (max-width: 1500px) {
  .ci-dashboard-page .ci-feature-panel .ci-metric-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 1280px) {
  .ci-dashboard-page .ci-dashboard-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
    padding: 34px;
  }

  .ci-dashboard-page .ci-hero-badge img {
    width: 185px;
  }
}

@media (max-width: 760px) {
  .ci-dashboard-page .ci-dashboard-hero,
  .ci-dashboard-page .ci-panel,
  .ci-dashboard-page .ci-dashboard-cta {
    padding: 18px;
  }

  .ci-dashboard-page .ci-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 3.5rem);
  }

  .ci-dashboard-page .ci-panel-head h2,
  .ci-dashboard-page .ci-hero-copy .ci-subhead {
    font-size: 18px;
  }

  .ci-dashboard-page .ci-compact-card,
  .ci-dashboard-page .ci-feature-panel .ci-metric-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 14px;
  }

  .ci-dashboard-page .ci-compact-card img,
  .ci-dashboard-page .ci-feature-panel .ci-metric-grid article img {
    width: 44px;
    height: 44px;
  }

  .ci-dashboard-page .ci-feature-panel .ci-metric-grid {
    grid-template-columns: 1fr;
  }
}

/* Controlled Intelligence hero lockup and panel rhythm pass requested 2026-05-13. */
.ci-dashboard-page .ci-dashboard-hero {
  min-height: 258px;
  grid-template-columns: 1fr;
  padding: 34px 48px;
  background:
    linear-gradient(90deg, rgba(2, 7, 14, 0.97) 0%, rgba(2, 7, 14, 0.75) 42%, rgba(2, 7, 14, 0.42) 68%, rgba(2, 7, 14, 0.76) 100%),
    url("/static/dashboard/assets/hero/Globe.png") right center / min(54vw, 820px) auto no-repeat,
    linear-gradient(120deg, #071625, #02050a);
}

.ci-dashboard-page .ci-hero-copy {
  max-width: 1220px;
}

.ci-dashboard-page .ci-hero-title-lockup {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-bottom: 14px;
}

.ci-dashboard-page .ci-hero-title-lockup img {
  width: clamp(82px, 8vw, 132px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 30px rgba(25, 244, 255, 0.28));
}

.ci-dashboard-page .ci-hero-title-lockup h1 {
  margin: 0;
  font-size: clamp(3.35rem, 4.65vw, 4.5rem);
}

.ci-dashboard-page .ci-hero-badge {
  display: none;
}

.ci-dashboard-page .ci-compact-card,
.ci-dashboard-page .ci-feature-panel .ci-metric-grid article,
.ci-dashboard-page .ci-fit-panel .ci-metric-grid article {
  align-content: center;
  align-items: center;
}

.ci-dashboard-page .ci-feature-panel .ci-metric-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.ci-dashboard-page .ci-feature-panel .ci-metric-grid article {
  min-height: 104px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
}

.ci-dashboard-page .ci-feature-panel .ci-metric-grid article img {
  width: 48px;
  height: 48px;
}

.ci-dashboard-page .ci-fit-panel .ci-metric-grid {
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 10px;
}

.ci-dashboard-page .ci-fit-panel .ci-metric-grid article {
  min-height: 126px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
}

.ci-dashboard-page .ci-fit-panel .ci-metric-grid article img {
  width: 54px;
  height: 54px;
}

.ci-dashboard-page .ci-fit-panel .ci-metric-grid h3 {
  font-size: 17px;
  line-height: 1.14;
}

.ci-dashboard-page .ci-fit-panel .ci-metric-grid p {
  margin-top: 6px;
  color: rgba(226, 239, 250, 0.82);
  font-size: 15px;
  line-height: 1.34;
}

@media (max-width: 1500px) {
  .ci-dashboard-page .ci-fit-panel .ci-metric-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 1280px) {
  .ci-dashboard-page .ci-dashboard-hero {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .ci-dashboard-page .ci-dashboard-hero {
    padding: 18px;
  }

  .ci-dashboard-page .ci-hero-title-lockup {
    gap: 14px;
  }

  .ci-dashboard-page .ci-hero-title-lockup img {
    width: 58px;
  }

  .ci-dashboard-page .ci-hero-title-lockup h1 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .ci-dashboard-page .ci-fit-panel .ci-metric-grid {
    grid-template-columns: 1fr;
  }
}

/* Controlled Intelligence shield/text hero and matching card markup pass requested 2026-05-13. */
.ci-dashboard-page .ci-dashboard-hero {
  min-height: 292px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 38px 54px;
}

.ci-dashboard-page .ci-hero-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: clamp(178px, 12vw, 238px) minmax(0, 1fr);
  gap: clamp(24px, 2.4vw, 42px);
  align-items: center;
  max-width: 1380px;
}

.ci-dashboard-page .ci-hero-shield {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 34px rgba(25, 244, 255, 0.3));
}

.ci-dashboard-page .ci-hero-copy {
  max-width: 1040px;
}

.ci-dashboard-page .ci-hero-copy h1 {
  margin: 0 0 14px;
}

.ci-dashboard-page .ci-hero-title-lockup {
  display: contents;
}

.ci-dashboard-page .ci-hero-title-lockup img {
  display: none;
}

.ci-dashboard-page .ci-feature-panel .ci-compact-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.ci-dashboard-page .ci-fit-panel .ci-compact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ci-dashboard-page .ci-feature-panel .ci-compact-card,
.ci-dashboard-page .ci-fit-panel .ci-compact-card {
  min-height: 104px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-content: center;
  align-items: center;
  padding: 14px 16px;
}

.ci-dashboard-page .ci-feature-panel .ci-compact-card img,
.ci-dashboard-page .ci-fit-panel .ci-compact-card img {
  width: 48px;
  height: 48px;
}

@media (max-width: 900px) {
  .ci-dashboard-page .ci-hero-lockup {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
  }

  .ci-dashboard-page .ci-fit-panel .ci-compact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ci-dashboard-page .ci-hero-lockup {
    grid-template-columns: 1fr;
  }

  .ci-dashboard-page .ci-hero-shield {
    width: 112px;
  }
}

/* No-glow brand polish requested 2026-05-13. */
.xreg-home-page .xreg-brand,
.xreg-home-page .xreg-brand-logo {
  filter: none !important;
}

.xreg-home-page .xreg-brand::after {
  text-shadow: none !important;
}

.ci-dashboard-page .ci-hero-shield,
.ci-dashboard-page .ci-hero-badge img,
.ci-dashboard-page .ci-hero-title-lockup img {
  filter: none !important;
}

/* Left alignment tightening requested 2026-05-13. */
.xreg-home-page .xreg-topbar {
  padding-left: 20px;
}

.ci-dashboard-page .xreg-topbar {
  padding-left: 20px;
}

.ci-dashboard-page .ci-dashboard-hero {
  padding-left: 24px;
}

.ci-dashboard-page .ci-hero-lockup {
  grid-template-columns: clamp(164px, 11vw, 222px) minmax(0, 1fr);
  gap: clamp(18px, 1.8vw, 32px);
}

@media (max-width: 760px) {
  .ci-dashboard-page .ci-dashboard-hero {
    padding-left: 14px;
  }
}

/* Where Xreg Fits white heading pass requested 2026-05-13. */
.ci-dashboard-page .ci-fit-panel .ci-panel-head .eyebrow,
.ci-dashboard-page .ci-fit-panel .ci-panel-head h2 {
  color: #f7fbff;
}

/* Where Xreg Fits split header polish requested 2026-05-14. */
.ci-dashboard-page .ci-fit-split-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
  margin-bottom: 18px;
}

.ci-dashboard-page .ci-fit-split-head h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(2.25rem, 2.15vw, 2.625rem);
  font-weight: 920;
  line-height: 1.02;
  letter-spacing: 0;
}

.ci-dashboard-page .ci-fit-split-head p {
  position: relative;
  max-width: 980px;
  margin: 0;
  padding-left: clamp(22px, 2vw, 34px);
  color: #f7fbff;
  font-size: clamp(1.375rem, 1.45vw, 1.625rem);
  font-weight: 760;
  line-height: 1.22;
}

.ci-dashboard-page .ci-fit-split-head p::before {
  position: absolute;
  top: 0.08em;
  bottom: 0.08em;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(25, 244, 255, 0.9), rgba(79, 189, 255, 0.24));
  content: "";
}

@media (max-width: 980px) {
  .ci-dashboard-page .ci-fit-split-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ci-dashboard-page .ci-fit-split-head p {
    max-width: 760px;
    padding-left: 18px;
    font-size: 20px;
  }
}

/* Where Xreg Fits centered split header refinement requested 2026-05-14. */
.ci-dashboard-page .ci-fit-split-head {
  width: min(100%, 1260px);
  display: grid;
  grid-template-columns: max-content minmax(560px, 820px);
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 3vw, 44px);
  margin: 0 auto 14px;
}

.ci-dashboard-page .ci-fit-split-head h2 {
  font-size: clamp(2.75rem, 3vw, 3.5rem);
  line-height: 0.98;
}

.ci-dashboard-page .ci-fit-split-head p {
  max-width: 820px;
  padding-left: clamp(26px, 2vw, 34px);
  font-size: clamp(1.625rem, 1.72vw, 2.125rem);
  line-height: 1.17;
}

.ci-dashboard-page .ci-fit-split-head p::before {
  top: 0.12em;
  bottom: 0.12em;
}

@media (max-width: 1180px) {
  .ci-dashboard-page .ci-fit-split-head {
    grid-template-columns: max-content minmax(0, 720px);
  }
}

@media (max-width: 980px) {
  .ci-dashboard-page .ci-fit-split-head {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 14px;
    margin-bottom: 14px;
  }

  .ci-dashboard-page .ci-fit-split-head h2 {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .ci-dashboard-page .ci-fit-split-head p {
    max-width: 760px;
    padding-top: 14px;
    padding-left: 0;
    font-size: clamp(1.25rem, 4.8vw, 1.625rem);
  }

  .ci-dashboard-page .ci-fit-split-head p::before {
    top: 0;
    bottom: auto;
    left: 0;
    width: 74px;
    height: 2px;
  }
}

/* Dashboard hero no-glow polish requested 2026-05-14. */
.xreg-home-page .hero-copy .hero-brand-label,
.xreg-home-page .xreg-dashboard .hero-copy .hero-support-line,
.xreg-home-page .xreg-dashboard .hero-copy .hero-support-line span {
  text-shadow: none !important;
}

.xreg-home-page .hero-copy .button.secondary.controlled-info-link,
.xreg-home-page .hero-copy .button.secondary.controlled-info-link:hover,
.xreg-home-page .hero-copy .button.secondary.controlled-info-link:focus-visible,
.xreg-home-page .sector-chips span,
.xreg-home-page .sector-chips span.active,
.xreg-home-page .sector-chips span:hover {
  box-shadow: none !important;
}

.xreg-home-page .hero-copy .controlled-info-link .hero-action-icon,
.xreg-home-page .hero-copy .controlled-info-link:hover .hero-action-icon,
.xreg-home-page .hero-copy .controlled-info-link:focus-visible .hero-action-icon,
.xreg-home-page .sector-chips img {
  filter: none !important;
}

.xreg-home-page .hero-copy .button.secondary.controlled-info-link,
.xreg-home-page .hero-copy .button.secondary.controlled-info-link:hover,
.xreg-home-page .hero-copy .button.secondary.controlled-info-link:focus-visible {
  box-shadow: 0 0 20px rgba(var(--teal-rgb), 0.12), inset 0 0 22px rgba(var(--teal-rgb), 0.08) !important;
}

/* Compact dashboard header requested 2026-05-18. */
.xreg-home-page .xreg-compact-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.xreg-home-page .xreg-menu-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(var(--teal-rgb), 0.42);
  border-radius: 999px;
  color: #dffffb;
  background: rgba(3, 14, 24, 0.72);
  box-shadow: 0 0 18px rgba(var(--teal-rgb), 0.12), inset 0 0 18px rgba(var(--teal-rgb), 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.xreg-home-page .xreg-menu-button:hover,
.xreg-home-page .xreg-menu-button:focus-visible,
.xreg-home-page .xreg-menu-button[aria-expanded="true"] {
  border-color: rgba(var(--teal-rgb), 0.58);
  color: #19F4FF;
  background: rgba(3, 20, 30, 0.82);
  outline: none;
}

.xreg-home-page .xreg-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 90;
  width: min(360px, calc(100vw - 40px));
  padding: 10px;
  border: 1px solid rgba(var(--teal-rgb), 0.42);
  border-radius: 8px;
  background: rgba(2, 10, 20, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), 0 0 24px rgba(var(--teal-rgb), 0.12);
}

.xreg-home-page .xreg-menu-panel[hidden] {
  display: none;
}

.xreg-home-page .xreg-menu-links {
  display: grid;
  gap: 6px;
}

.xreg-home-page .xreg-menu-links a,
.xreg-home-page .xreg-menu-links .disabled,
.xreg-home-page .xreg-menu-meta > span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(161, 215, 239, 0.12);
  border-radius: 8px;
  color: rgba(238, 246, 255, 0.86);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 800;
}

.xreg-home-page .xreg-menu-links a:hover,
.xreg-home-page .xreg-menu-links a:focus-visible {
  border-color: rgba(var(--teal-rgb), 0.42);
  color: #19F4FF;
  background: rgba(var(--teal-rgb), 0.1);
  outline: none;
}

.xreg-home-page .xreg-menu-links a.active {
  border-color: rgba(var(--teal-rgb), 0.5);
  color: #eaffff;
  background: rgba(var(--teal-rgb), 0.12);
}

.xreg-home-page .xreg-menu-links img,
.xreg-home-page .xreg-menu-meta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(216, 241, 255, 0.34));
}

.xreg-home-page .xreg-menu-links .disabled {
  opacity: 0.58;
}

.xreg-home-page .xreg-menu-meta {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(var(--teal-rgb), 0.16);
}

.xreg-home-page .xreg-menu-meta > span {
  min-height: 48px;
}

.xreg-home-page .xreg-menu-meta .account {
  grid-template-columns: 1fr;
}

.xreg-home-page .xreg-menu-meta strong,
.xreg-home-page .xreg-menu-meta small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xreg-home-page .xreg-menu-meta small {
  margin-top: 3px;
  color: rgba(199, 215, 232, 0.72);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1380px) {
  .xreg-home-page .xreg-topbar,
  .ci-dashboard-page .xreg-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 82px;
    padding-right: 20px;
  }

  .xreg-home-page .xreg-nav,
  .xreg-home-page .xreg-user {
    display: none;
  }

  .xreg-home-page .xreg-compact-menu {
    display: block;
  }
}

@media (max-width: 520px) {
  .xreg-home-page .xreg-topbar,
  .ci-dashboard-page .xreg-topbar {
    min-height: 72px;
  }

  .xreg-home-page .xreg-brand {
    width: 88px;
    min-width: 88px;
    height: 52px;
    background-size: 76px auto;
  }

  .xreg-home-page .xreg-menu-panel {
    right: -4px;
    width: min(336px, calc(100vw - 28px));
  }
}

/* Compact header menu control polish requested 2026-05-18. */
.xreg-home-page .xreg-topbar {
  z-index: 100;
}

.xreg-home-page .xreg-menu-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  border-color: rgba(var(--teal-rgb), 0.32);
  color: #f6fbff;
  background: rgba(2, 10, 20, 0.78);
  box-shadow: inset 0 0 14px rgba(var(--teal-rgb), 0.045);
  font-size: 14px;
  letter-spacing: 0;
}

.xreg-home-page .xreg-menu-bars {
  width: 19px;
  display: grid;
  gap: 4px;
}

.xreg-home-page .xreg-menu-bars span {
  display: block;
  width: 19px;
  height: 2.4px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(216, 241, 255, 0.25);
}

.xreg-home-page .xreg-menu-button:hover,
.xreg-home-page .xreg-menu-button:focus-visible,
.xreg-home-page .xreg-menu-button[aria-expanded="true"] {
  border-color: rgba(var(--teal-rgb), 0.52);
  color: #19F4FF;
  background: rgba(3, 18, 28, 0.86);
  box-shadow: 0 0 14px rgba(var(--teal-rgb), 0.12), inset 0 0 14px rgba(var(--teal-rgb), 0.065);
}

.xreg-home-page .xreg-menu-button:hover .xreg-menu-bars span,
.xreg-home-page .xreg-menu-button:focus-visible .xreg-menu-bars span,
.xreg-home-page .xreg-menu-button[aria-expanded="true"] .xreg-menu-bars span {
  background: #ffffff;
  box-shadow: 0 0 8px rgba(var(--teal-rgb), 0.4);
}

.xreg-home-page .xreg-menu-links a,
.xreg-home-page .xreg-menu-links button,
.xreg-home-page .xreg-menu-links .disabled {
  font: inherit;
  text-align: left;
}

.xreg-home-page .xreg-menu-links button {
  cursor: pointer;
}

.xreg-home-page .xreg-menu-links a,
.xreg-home-page .xreg-menu-links button,
.xreg-home-page .xreg-menu-links .disabled,
.xreg-home-page .xreg-menu-meta > span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(161, 215, 239, 0.12);
  border-radius: 8px;
  color: rgba(238, 246, 255, 0.86);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 800;
}

.xreg-home-page .xreg-menu-links a:hover,
.xreg-home-page .xreg-menu-links a:focus-visible,
.xreg-home-page .xreg-menu-links button:hover,
.xreg-home-page .xreg-menu-links button:focus-visible {
  border-color: rgba(var(--teal-rgb), 0.42);
  color: #19F4FF;
  background: rgba(var(--teal-rgb), 0.1);
  outline: none;
}

.xreg-home-page .xreg-menu-meta .account {
  grid-template-columns: 1fr;
}
