:root {
  --bg: #0b1220;
  --panel: rgba(14, 23, 40, 0.86);
  --panel-soft: rgba(24, 35, 60, 0.68);
  --line: rgba(129, 157, 197, 0.25);
  --text: #ecf5ff;
  --muted: #9bb0cc;
  --accent: #59ffca;
  --accent-2: #5ba2ff;
  --danger: #ff6f91;
  --shadow: 0 12px 40px rgba(2, 8, 16, 0.45);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 8% 0%, rgba(91, 162, 255, 0.25), transparent),
    radial-gradient(1000px 400px at 90% 8%, rgba(89, 255, 202, 0.18), transparent),
    linear-gradient(180deg, #060b14, #0b1220 55%, #101827);
  min-height: 100vh;
}

.app-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 0;
}

.sidebar {
  border-right: 1px solid rgba(129, 157, 197, 0.2);
  background:
    radial-gradient(420px 240px at 15% 0%, rgba(91, 162, 255, 0.12), transparent),
    linear-gradient(180deg, rgba(7, 12, 23, 0.97), rgba(9, 15, 28, 0.94));
  padding: 0.82rem 0.78rem;
  min-height: 100vh;
  height: 100vh;
  position: sticky;
  top: 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
}

.sidebar-top {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}

.sidebar-website {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
  padding: 0.72rem 0.82rem;
  border-radius: 14px;
  border: 1px solid rgba(89, 255, 202, 0.22);
  background: linear-gradient(135deg, rgba(89, 255, 202, 0.12), rgba(91, 162, 255, 0.12));
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(3, 10, 20, 0.24);
}

.sidebar-website::after {
  content: "->";
  color: var(--accent);
}

.sidebar-kicker {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.side-nav a {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(18, 29, 50, 0.55);
  color: var(--text);
  text-decoration: none;
  padding: 0.62rem 0.74rem;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.nav-link__icon {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(129, 157, 197, 0.2);
  background: linear-gradient(180deg, rgba(22, 41, 72, 0.95), rgba(12, 20, 36, 0.92));
  color: #cbe5ff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
  color: #cbe5ff;
  font-size: 0;
  line-height: 0;
  position: relative;
}

.nav-link__icon::before {
  content: "";
  width: 0.92rem;
  height: 0.92rem;
  display: block;
  background-color: currentColor;
  -webkit-mask: var(--nav-icon) center / contain no-repeat;
  mask: var(--nav-icon) center / contain no-repeat;
}

.side-nav a:hover {
  transform: translateX(2px);
  background: rgba(21, 35, 59, 0.82);
}

.side-nav a.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: linear-gradient(135deg, rgba(89, 255, 202, 0.1), rgba(91, 162, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(89, 255, 202, 0.12);
}

.side-nav a.is-active .nav-link__icon {
  border-color: rgba(89, 255, 202, 0.3);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(89, 255, 202, 0.12);
}

.side-nav a[href="./index.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3.2 3.8 10v10.2h6.3v-6.2h3.8v6.2h6.3V10z'/%3E%3C/svg%3E");
}

.side-nav a[href="./curated.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h5v5H4zm0 7h5v5H4zm7-7h9v2h-9zm0 4h9v2h-9zm0 3h9v2h-9zm0 4h9v2h-9z'/%3E%3C/svg%3E");
}

.side-nav a[href="./dashboard.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 18h3V9H4zm6 0h3V5h-3zm6 0h3v-7h-3z'/%3E%3C/svg%3E");
}

.side-nav a[href="./followers-feed.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 6h14v2H5zm0 5h10v2H5zm0 5h14v2H5z'/%3E%3C/svg%3E");
}

.side-nav a[href="./monitor.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4 4 8v4c0 4.9 3.4 9.4 8 10.8 4.6-1.4 8-5.9 8-10.8V8zm0 3.2 4.5 2v2.7c0 3.4-1.9 6.6-4.5 7.8-2.6-1.2-4.5-4.4-4.5-7.8V9.2z'/%3E%3C/svg%3E");
}

.side-nav a[href="./check-who-follows.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10.5 4a6.5 6.5 0 1 0 4.1 11.5l4 4 1.4-1.4-4-4A6.5 6.5 0 0 0 10.5 4m0 2a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9'/%3E%3C/svg%3E");
}

.side-nav a[href="./daily-reports.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3v18H4V4zm11 6H6v12h12z'/%3E%3C/svg%3E");
}

.side-nav a[href="./guide.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 4h10a3 3 0 0 1 3 3v13H9a3 3 0 0 0-3 3zm0 0a3 3 0 0 0-3 3v13h2a3 3 0 0 1 3-3h9V7a1 1 0 0 0-1-1z'/%3E%3C/svg%3E");
}

.side-nav a[href="./internal-tracker.html"] .nav-link__icon {
  --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v4H4zm0 6h16v10H4zm3 3v4h2v-4zm4 0v4h2v-4zm4 0v4h2v-4z'/%3E%3C/svg%3E");
}

.content-wrap {
  min-width: 0;
  transition: opacity 120ms ease;
  padding-bottom: 1.2rem;
}

.mobile-nav {
  display: none;
}

body.is-routing .content-wrap {
  opacity: 0.72;
}

.page-header {
  padding: 1rem 1.2rem 0.35rem;
}

.page-header .hero__content {
  border: 1px solid rgba(129, 157, 197, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(360px 180px at 100% 0%, rgba(91, 162, 255, 0.14), transparent),
    linear-gradient(145deg, rgba(13, 22, 39, 0.9), rgba(10, 18, 32, 0.86));
  box-shadow: var(--shadow);
  padding: 0.85rem 1.05rem;
}

.home-hero .hero__content {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.compact-page .page-header {
  padding-top: 0.9rem;
  padding-bottom: 0.2rem;
}

.compact-page .page-header .hero__content {
  max-width: none;
}

.compact-page .page-header h1 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  margin: 0.1rem 0 0.35rem;
}

.compact-page .page-main {
  max-width: none;
  gap: 0.75rem;
}

.compact-page .card {
  padding: 0.8rem;
}

.compact-page .row {
  margin-bottom: 0.6rem;
}

.shell-framed-page .content-wrap {
  display: flex;
  flex-direction: column;
}

.topbar {
  height: 56px;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 32px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__crumb,
.topbar__status {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: rgba(155, 176, 204, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.topbar__crumb--active {
  color: var(--text);
}

.topbar__sep {
  color: rgba(155, 176, 204, 0.52);
  font-size: 12px;
}

.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: statusPulseShell 2s ease-in-out infinite;
}

.shell-framed-page .page-header {
  padding: 40px 32px 32px;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
  position: relative;
  overflow: hidden;
}

.shell-framed-page .page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 142, 240, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 142, 240, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 100% at 0% 50%, black, transparent);
  pointer-events: none;
}

.shell-framed-page .page-header .hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.shell-framed-page .page-header h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f5f2eb;
}

.shell-framed-page .page-header p {
  max-width: 520px;
  color: rgba(155, 176, 204, 0.7);
  line-height: 1.65;
}

.shell-framed-page .page-main {
  max-width: none;
  margin: 0;
  padding: 32px;
}

@keyframes statusPulseShell {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.branch-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.branch-col {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 22, 40, 0.82), rgba(10, 18, 33, 0.74));
  padding: 0.8rem 0.9rem;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.branch-col h2 {
  margin: 0;
}

.branch-section-head {
  margin-bottom: 0.45rem;
}

.branch-section-head--sub {
  margin-bottom: 0.35rem;
}

.branch-note {
  max-width: 38ch;
  margin: 0;
  font-size: 0.92rem;
}

.branch-editor-stack {
  display: grid;
  gap: 0.65rem;
  flex: 1;
}

.branch-form {
  margin-bottom: 0;
  width: 100%;
}

.branch-form select,
.branch-form input,
.branch-form button {
  min-height: 44px;
  min-width: 0;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.row.branch-form--builder,
.row.branch-form--selects,
.row.branch-form--rename,
.row.branch-form--accounts {
  display: grid;
  width: 100%;
  align-items: stretch;
  gap: 0.75rem;
  min-width: 0;
}

.row.branch-form--builder {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr) auto;
}

.row.branch-form--selects {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
}

.row.branch-form--rename {
  grid-template-columns: minmax(0, 1fr) minmax(78px, max-content) minmax(92px, max-content);
}

.row.branch-form--accounts {
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.8fr) auto auto auto;
}

.branch-form button,
.branch-form a {
  padding-inline: 0.9rem;
  white-space: nowrap;
}

.branch-form--builder button {
  min-width: 126px;
  justify-self: start;
}

.branch-form--rename button {
  min-width: 78px;
}

.branch-col--builder {
  align-self: start;
}

.branch-accounts-card {
  margin-bottom: 1rem;
}

.branch-accounts-card #branchSummary {
  margin: 0;
}

.branch-tree {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.branch-map {
  position: relative;
  min-height: 560px;
  margin: 0.7rem 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 20%, rgba(91, 162, 255, 0.25), transparent 45%),
    radial-gradient(circle at 75% 68%, rgba(89, 255, 202, 0.2), transparent 45%),
    linear-gradient(180deg, #061127, #08152d 55%, #061021);
  overflow: hidden;
}

.branch-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.08;
  pointer-events: none;
}

.branch-map.empty {
  display: grid;
  place-items: center;
}

.branch-map__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 999px;
  border: 1px solid rgba(91, 162, 255, 0.85);
  background: radial-gradient(circle at 30% 30%, rgba(91, 162, 255, 0.92), rgba(41, 108, 215, 0.9));
  color: #edf5ff;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 40px rgba(91, 162, 255, 0.32);
  z-index: 3;
}

.branch-map__node {
  position: absolute;
  transform: translate(-50%, -50%);
  min-width: 140px;
  max-width: 170px;
  border-radius: 999px;
  border: 1px solid rgba(137, 160, 197, 0.6);
  background: radial-gradient(circle at 30% 30%, rgba(96, 122, 162, 0.9), rgba(67, 89, 123, 0.92));
  color: #f4f8ff;
  padding: 0.55rem 0.6rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.2;
  z-index: 3;
}

.branch-map__node small {
  display: block;
  color: rgba(220, 230, 248, 0.8);
  font-size: 0.66rem;
  margin-top: 0.2rem;
}

.branch-map__node.is-active {
  border-color: rgba(89, 255, 202, 0.9);
  box-shadow: 0 0 18px rgba(89, 255, 202, 0.3);
}

.branch-map.is-dense .branch-map__center {
  width: 132px;
  height: 132px;
  font-size: 0.92rem;
}

.branch-map.is-dense .branch-map__node {
  min-width: 116px;
  max-width: 132px;
  padding: 0.42rem 0.48rem;
  font-size: 0.7rem;
}

.branch-map.is-dense .branch-map__node small {
  font-size: 0.6rem;
}

.branch-map__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18%;
  height: 2px;
  background: linear-gradient(90deg, rgba(53, 132, 232, 0.8), rgba(88, 154, 245, 0.4));
  transform-origin: left center;
  transform: rotate(var(--angle));
  z-index: 2;
}

.branch-map__scale {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  max-width: calc(100% - 28px);
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(129, 157, 197, 0.18);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(10px);
}

.branch-map__scale-item,
.branch-map__scale-sep {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-map__scale-item {
  color: rgba(155, 176, 204, 0.66);
}

.branch-map__scale-item.is-active {
  color: #eef6ff;
}

.branch-map__scale-sep {
  color: rgba(155, 176, 204, 0.34);
}

.branch-map__empty {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
  z-index: 3;
}

.branch-node {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem;
  background: rgba(11, 18, 34, 0.7);
}

.branch-node__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.branch-node__children {
  margin-top: 0.45rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.subbranch-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(22, 35, 60, 0.7);
  color: var(--text);
  padding: 0.25rem 0.6rem;
  cursor: pointer;
}

.subbranch-chip.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 1100px) {
  .branch-top-grid {
    grid-template-columns: 1fr;
  }

  .branch-form--builder,
  .branch-form--selects,
  .branch-form--rename,
  .branch-form--accounts {
    grid-template-columns: 1fr;
  }

  .branch-map {
    min-height: 460px;
  }

  .branch-roster__grid--categories,
  .branch-roster__grid--subcategories,
  .branch-roster__grid--branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.monitor-map-card {
  padding: 1rem;
}

.branch-roster {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(129, 157, 197, 0.16);
}

.branch-roster__grid {
  display: grid;
  gap: 0.7rem;
}

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

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

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

.branch-roster__section {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.branch-roster__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.branch-roster__summary {
  color: var(--muted);
  font-size: 0.8rem;
}

.branch-roster__pill {
  display: grid;
  justify-items: start;
  gap: 0.22rem;
  min-height: 88px;
  padding: 0.8rem 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(91, 162, 255, 0.28);
  background: linear-gradient(145deg, rgba(14, 31, 58, 0.88), rgba(10, 24, 47, 0.84));
  color: var(--text);
  font-weight: 500;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.branch-roster__pill:hover {
  transform: translateY(-1px);
  border-color: rgba(91, 162, 255, 0.5);
}

.branch-roster__pill.is-active {
  border-color: rgba(89, 255, 202, 0.55);
  box-shadow: 0 0 0 1px rgba(89, 255, 202, 0.14) inset;
  background: linear-gradient(145deg, rgba(12, 42, 59, 0.92), rgba(10, 28, 47, 0.92));
}

.branch-roster__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(154, 184, 220, 0.72);
}

.branch-roster__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  font-size: 1rem;
  font-weight: 600;
}

.branch-roster__meta {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.85rem;
}

.branch-roster__empty {
  padding: 0.8rem 0;
}

.hero { padding: 2rem 1.2rem 1rem; }
.hero__content { max-width: 1250px; margin: 0 auto; }
.kicker { letter-spacing: 0.2em; color: var(--accent); font-size: 0.72rem; margin: 0; }
h1 { font-size: clamp(2rem, 4.8vw, 3.3rem); margin: 0.2rem 0 0.4rem; }
h2 { margin: 0 0 0.8rem; font-size: 1.1rem; }
h3.subhead { margin: 0 0 0.6rem; font-size: 0.95rem; color: var(--muted); }

.layout {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.2rem 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    var(--panel);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(2, 8, 16, 0.34);
  padding: 1rem;
}

.controls { grid-column: 1; }
.signals { grid-column: 1; }
.prospects { grid-column: 1; }
.stream { grid-column: 2; grid-row: 1 / span 3; }

.row { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.row.compact { align-items: center; }

input, select, button, a {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--text);
  padding: 0.62rem 0.8rem;
  font: inherit;
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

input { width: 100%; }
button { cursor: pointer; }
input:focus,
select:focus,
button:focus,
a:focus {
  outline: none;
  border-color: rgba(91, 162, 255, 0.56);
  box-shadow: 0 0 0 3px rgba(91, 162, 255, 0.14);
}

button:hover, a:hover { border-color: var(--accent-2); }
button.danger:hover { border-color: var(--danger); }

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  background: linear-gradient(145deg, rgba(20, 31, 54, 0.72), rgba(14, 23, 40, 0.6));
}

.list.dense li { padding: 0.45rem 0.55rem; }

.actions { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.pill { border-radius: 999px; border: 1px solid var(--line); padding: 0.2rem 0.6rem; color: var(--muted); font-size: 0.76rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.55rem 0.68rem;
  background: linear-gradient(145deg, rgba(18, 30, 52, 0.76), rgba(12, 20, 36, 0.72));
}

.stat b { display: block; font-size: 1rem; }
.stat span { color: var(--muted); font-size: 0.74rem; }

.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 120px;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.stream-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 0.8rem;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.8rem;
  align-content: start;
}

.stream-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.8rem;
  background: linear-gradient(145deg, rgba(18, 30, 52, 0.7), rgba(11, 20, 36, 0.74));
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.stream-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
  box-shadow: 0 18px 30px rgba(2, 8, 16, 0.24);
}
.stream-card.is-selected { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(89, 255, 202, 0.35) inset; }

.stream-card h3 { margin: 0; font-size: 1rem; }
.stream-card small, .stream-card .bio, .muted { color: var(--muted); }
.stream-card .bio { margin: 0; min-height: 40px; font-size: 0.9rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  color: var(--accent);
}

.details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(260px 160px at 100% 0%, rgba(91, 162, 255, 0.1), transparent),
    rgba(16, 26, 45, 0.82);
  padding: 0.95rem;
  min-height: 280px;
}

.details.empty { color: var(--muted); }
.details h3 { margin-top: 0; }
.details .detail-actions { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.6rem; }

.tabs { display: flex; gap: 0.45rem; margin-bottom: 0.6rem; }
.tab.is-active { border-color: var(--accent); color: var(--accent); }

@media (max-width: 1100px) {
  .stream-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    display: none;
  }

  .layout { grid-template-columns: 1fr; }
  .controls, .signals, .prospects, .stream { grid-column: 1; grid-row: auto; }
  .filters { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mobile-nav {
    display: block;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
  }

  .topbar,
  .home-topbar {
    display: none;
  }

  .dashboard-toolbar__grid,
  .dashboard-lower,
  .dashboard-filters,
  .followers-toolbar__filters {
    grid-template-columns: 1fr;
  }

  .dashboard-toolbar__top,
  .dashboard-workspace__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .branch-roster__grid--categories,
  .branch-roster__grid--subcategories,
  .branch-roster__grid--branches {
    grid-template-columns: 1fr;
  }

  .dashboard-account-table__head {
    display: none;
  }

  .dashboard-account-row {
    grid-template-columns: 1fr;
  }

  .dashboard-account-controls {
    justify-content: flex-start;
  }
}

/* Shared multipage UI */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.brand {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.topnav__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.topnav__links a {
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
}

.topnav__links a.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  padding: 0.62rem 0.85rem;
  border: 1px solid var(--accent);
  color: #04121a;
  background: var(--accent);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.cta.secondary {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel-soft);
}

.page-main {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.2rem 2rem;
  display: grid;
  gap: 1rem;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.home-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(18, 30, 52, 0.56);
}

.quick-links .link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.quick-links .link-grid a {
  text-align: center;
}

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

@media (max-width: 900px) {
  .topnav {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-grid,
  .quick-links .link-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }
}

/* Home page visual mode */
.home-page {
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(91, 162, 255, 0.32), transparent),
    radial-gradient(800px 500px at 95% 10%, rgba(89, 255, 202, 0.18), transparent),
    radial-gradient(1100px 700px at 50% 120%, rgba(255, 111, 145, 0.12), transparent),
    linear-gradient(180deg, #050912, #0a1220 60%, #0c1626);
}

.home-hero {
  padding-top: 1.5rem;
  padding-bottom: 1.2rem;
}

.home-surface {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(14, 23, 40, 0.92), rgba(9, 16, 32, 0.84));
  box-shadow: 0 26px 64px rgba(2, 8, 16, 0.36);
  padding: 1.35rem;
  overflow: hidden;
  position: relative;
}

.home-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.04), transparent 70%);
  transform: translateX(-100%);
  animation: sheen 6s linear infinite;
  pointer-events: none;
}

.home-copy h1 {
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.home-mini {
  color: var(--muted);
  max-width: 42ch;
  margin: 0;
}

.signal-orbit {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(155, 176, 204, 0.25);
  border-radius: 999px;
  animation: spin 24s linear infinite;
}

.orbit-a { width: 290px; height: 290px; }
.orbit-b { width: 220px; height: 220px; animation-duration: 16s; animation-direction: reverse; }
.orbit-c { width: 150px; height: 150px; animation-duration: 11s; }

.core {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 1px solid rgba(89, 255, 202, 0.6);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: radial-gradient(circle at 30% 30%, rgba(89, 255, 202, 0.22), rgba(91, 162, 255, 0.2));
  box-shadow: 0 0 40px rgba(89, 255, 202, 0.22);
}

.node {
  position: absolute;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(13, 23, 42, 0.9);
  font-size: 0.72rem;
  color: var(--accent);
  animation: bob 3s ease-in-out infinite;
}

.n1 { top: 8%; left: 52%; }
.n2 { top: 23%; left: 8%; animation-delay: 300ms; }
.n3 { top: 64%; left: 14%; animation-delay: 600ms; }
.n4 { top: 74%; right: 14%; animation-delay: 900ms; }
.n5 { top: 35%; right: 4%; animation-delay: 1200ms; }
.n6 { bottom: 8%; left: 52%; animation-delay: 1500ms; }

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

.metric-ribbon article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: linear-gradient(145deg, rgba(20, 31, 54, 0.8), rgba(12, 20, 36, 0.82));
}

.metric-ribbon b {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.metric-ribbon span {
  color: var(--muted);
  font-size: 0.82rem;
}

.home-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.panel-link {
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease;
  min-height: 170px;
}

.panel-link:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
}

.panel-link .label {
  margin: 0;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
}

.panel-link h2 {
  margin: 0.45rem 0;
  font-size: 1.25rem;
}

.panel-link p {
  margin: 0;
  color: var(--muted);
}

.panel-1 { background: linear-gradient(140deg, rgba(18, 30, 52, 0.9), rgba(18, 47, 73, 0.75)); }
.panel-2 { background: linear-gradient(140deg, rgba(20, 33, 54, 0.9), rgba(42, 34, 67, 0.72)); }
.panel-3 { background: linear-gradient(140deg, rgba(18, 29, 52, 0.9), rgba(29, 57, 52, 0.72)); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes sheen {
  to { transform: translateX(100%); }
}

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

  .metric-ribbon,
  .home-panels {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .metric-ribbon,
  .home-panels {
    grid-template-columns: 1fr;
  }

  .signal-orbit {
    min-height: 280px;
  }

  .orbit-a { width: 240px; height: 240px; }
  .orbit-b { width: 190px; height: 190px; }
  .orbit-c { width: 130px; height: 130px; }
}

.home-page--dashboard {
  background:
    linear-gradient(180deg, #090b11, #0b0e16 60%, #0b0d14);
}

.sidebar.sidebar--system {
  border-right: 1px solid rgba(129, 157, 197, 0.2);
  background:
    radial-gradient(420px 240px at 15% 0%, rgba(91, 162, 255, 0.12), transparent),
    linear-gradient(180deg, rgba(7, 12, 23, 0.97), rgba(9, 15, 28, 0.94));
  padding: 0.82rem 0.78rem;
  min-height: 100vh;
  height: 100vh;
  position: sticky;
  top: 0;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.02);
  display: block;
  bottom: auto;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
}

.sidebar.sidebar--system .sidebar-top {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  padding: 0;
  border-bottom: none;
}

.sidebar-brandcard {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 0.92rem 0.82rem;
  color: #f4f7fb;
  text-decoration: none;
  border-bottom: 1px solid rgba(129, 157, 197, 0.09);
  margin-bottom: 0;
}

.sidebar-brandcard__mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: #53a4ff;
  color: #0d1420;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sidebar-brandcard__text strong {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.15;
  color: #f4f7fb;
}

.sidebar-brandcard__text small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(155, 176, 204, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.58rem;
}

.sidebar-group-label {
  margin: 0.8rem 1rem 0.38rem;
  color: rgba(155, 176, 204, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.54rem;
  font-weight: 700;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  padding: 0;
  opacity: 1;
}

.sidebar-top + .sidebar-group-label {
  margin-top: 0.52rem;
}

.sidebar.sidebar--system .side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 0.7rem;
  flex: 0 0 auto;
}

.sidebar.sidebar--system .side-nav a {
  padding: 0.62rem 0.66rem;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(214, 224, 242, 0.52);
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.sidebar.sidebar--system .side-nav a:hover {
  transform: none;
  background: rgba(34, 43, 63, 0.4);
  border-color: transparent;
  color: rgba(214, 224, 242, 0.72);
}

.sidebar.sidebar--system .side-nav a.is-active {
  color: #eff6ff;
  background: rgba(40, 60, 98, 0.48);
  border-color: rgba(83, 164, 255, 0.22);
  box-shadow: inset 3px 0 0 #53a4ff;
}

.sidebar.sidebar--system .nav-link {
  gap: 0.7rem;
  display: flex;
  align-items: center;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
}

.sidebar.sidebar--system .nav-link__icon {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid rgba(129, 157, 197, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(214, 224, 242, 0.7);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  flex-shrink: 0;
}

.sidebar.sidebar--system .nav-link__icon::before {
  display: none;
}

.sidebar.sidebar--system .nav-link.is-active .nav-link__icon {
  background: rgba(60, 142, 240, 0.15);
  border-color: rgba(60, 142, 240, 0.3);
  color: #53a4ff;
  box-shadow: none;
}

.sidebar-footer {
  margin-top: auto;
  padding: 0.72rem 0.92rem 0.1rem;
  border-top: 1px solid rgba(129, 157, 197, 0.09);
  display: grid;
  gap: 0.12rem;
}

.sidebar-footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.sidebar-footer__label,
.sidebar-footer__clock {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sidebar-footer__label {
  font-size: 0.52rem;
  color: rgba(155, 176, 204, 0.34);
}

.sidebar-footer__clock {
  font-size: 0.66rem;
  color: rgba(214, 224, 242, 0.74);
}

.sidebar-footer__tg {
  min-width: 24px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid rgba(83, 164, 255, 0.32);
  background: rgba(18, 32, 56, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #53a4ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.sidebar-footer__tg:hover {
  border-color: rgba(83, 164, 255, 0.55);
  color: #7ec1ff;
}

.home-page--dashboard .content-wrap {
  padding-bottom: 0;
}

.home-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem 0.8rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
  color: rgba(155, 176, 204, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
}

.home-topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.home-topbar__status span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #45d67b;
  box-shadow: 0 0 10px rgba(69, 214, 123, 0.45);
}

.mobile-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.8rem 1rem 0.7rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
  background:
    radial-gradient(420px 220px at 10% 0%, rgba(91, 162, 255, 0.16), transparent),
    linear-gradient(180deg, rgba(7, 12, 23, 0.97), rgba(9, 15, 28, 0.94));
}

.mobile-nav__brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--text);
  text-decoration: none;
}

.mobile-nav__mark {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(91, 162, 255, 0.95), rgba(63, 132, 240, 0.92));
  color: #08111f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 20px rgba(30, 77, 153, 0.22);
}

.mobile-nav__brandtext {
  display: grid;
  min-width: 0;
}

.mobile-nav__brandtext strong {
  font-size: 0.96rem;
  line-height: 1.05;
}

.mobile-nav__brandtext small {
  color: rgba(155, 176, 204, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.6rem;
  margin-top: 0.12rem;
}

.mobile-nav__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(155, 176, 204, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.6rem;
  white-space: nowrap;
}

.mobile-nav__links {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.72rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
  background: rgba(9, 15, 28, 0.96);
  scrollbar-width: none;
}

.mobile-nav__links::-webkit-scrollbar {
  display: none;
}

.mobile-nav__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(129, 157, 197, 0.18);
  border-radius: 999px;
  background: rgba(18, 29, 50, 0.7);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.84rem;
}

.mobile-nav__link.is-active {
  border-color: rgba(89, 255, 202, 0.42);
  background: linear-gradient(135deg, rgba(89, 255, 202, 0.14), rgba(91, 162, 255, 0.12));
  color: var(--accent);
}

.mobile-nav__icon {
  width: 1.28rem;
  height: 1.28rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(91, 162, 255, 0.12);
  border: 1px solid rgba(129, 157, 197, 0.16);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-dashboard {
  max-width: none;
  padding: 0;
}

.home-dashboard-grid {
  display: block;
  min-height: calc(100vh - 56px);
}

.home-primary {
  border-right: none;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 56px);
}

.home-secondary {
  min-width: 0;
}

.home-hero-panel,
.home-stat-strip,
.home-section {
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
}

.home-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 1.5rem;
  min-height: 272px;
  padding: 1.9rem 1.4rem 1.35rem;
  background:
    linear-gradient(90deg, rgba(91, 162, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(91, 162, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 11, 17, 0.98), rgba(11, 13, 20, 0.98));
  background-size: 28px 28px, 28px 28px, auto;
}

.home-chip-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 24px;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(129, 157, 197, 0.18);
  background: rgba(20, 28, 42, 0.52);
  color: rgba(155, 176, 204, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.63rem;
}

.home-chip--live {
  color: #53a4ff;
  border-color: rgba(83, 164, 255, 0.28);
}

.home-chip--live::before {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #53a4ff;
}

.home-hero-panel h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #f3ede5;
}

.home-hero-panel h1 span {
  color: #4d9dff;
  font-style: italic;
}

.home-hero-panel__lede {
  margin: 1rem 0 0;
  max-width: 30rem;
  color: rgba(155, 176, 204, 0.68);
  font-size: 1rem;
  line-height: 1.6;
}

.home-hero-panel__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.home-page--dashboard .cta {
  border-color: #3c8ef0;
  background: #3c8ef0;
  color: #f5fbff;
}

.home-page--dashboard .cta:hover {
  border-color: #5aa6ff;
  background: #5aa6ff;
  color: #f5fbff;
}

.home-page--dashboard .cta.secondary {
  color: var(--text);
  border-color: rgba(129, 157, 197, 0.18);
  background: rgba(16, 24, 38, 0.72);
}

.home-radar {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  align-self: center;
  margin-top: -0.25rem;
}

.home-radar__ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(38, 82, 156, 0.32);
}

.home-radar__ring--outer { width: 186px; height: 186px; }
.home-radar__ring--mid { width: 128px; height: 128px; }
.home-radar__ring--inner { width: 74px; height: 74px; }

.home-radar__core {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(93, 164, 255, 0.8);
  background: linear-gradient(180deg, #5aa0fb 0%, #3e86e8 100%);
  box-shadow:
    0 0 0 5px rgba(55, 100, 173, 0.2),
    0 10px 24px rgba(10, 24, 48, 0.34);
  color: #dceeff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.63rem;
  font-weight: 700;
}

.home-radar__tag {
  position: absolute;
  padding: 0.12rem 0.38rem;
  border: 1px solid rgba(129, 157, 197, 0.12);
  background: rgba(44, 50, 68, 0.92);
  color: rgba(227, 236, 247, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.54rem;
}

.home-radar__tag--top { top: 10px; left: 50%; transform: translateX(-50%); }
.home-radar__tag--right-top { top: 44px; right: 0; }
.home-radar__tag--right-bottom { bottom: 56px; right: 2px; }
.home-radar__tag--bottom { bottom: 10px; left: 50%; transform: translateX(-50%); }
.home-radar__tag--left-bottom { bottom: 56px; left: 4px; }
.home-radar__tag--left-top { top: 44px; left: 0; }

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

.home-stat-strip article {
  padding: 0.8rem 1.35rem 0.95rem;
  border-right: 1px solid rgba(129, 157, 197, 0.12);
}

.home-stat-strip article:last-child {
  border-right: none;
}

.home-stat-strip span,
.home-section__head p,
.home-feed-card__label {
  display: block;
  color: rgba(155, 176, 204, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
}

.home-stat-strip strong {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fbf7f1;
}

.home-stat-strip small {
  margin-left: 0.35rem;
  color: rgba(155, 176, 204, 0.62);
  font-size: 0.84rem;
}

.home-section {
  background: rgba(10, 12, 18, 0.94);
}

.home-section--feed {
  flex: 1;
  display: flex;
}

.home-feed-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-section__head {
  padding: 0.78rem 1.35rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
}

.home-section__head--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.home-section__head--split a {
  color: #53a4ff;
  text-decoration: none;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
}

.home-pipeline {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(134px, 1fr);
  gap: 0.7rem;
  padding: 1rem 1.2rem 1.35rem;
  align-items: center;
}

.home-pipeline__step {
  min-height: 44px;
  border: 1px solid rgba(129, 157, 197, 0.14);
  background: rgba(43, 46, 61, 0.72);
  color: rgba(155, 176, 204, 0.56);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.75rem 0.8rem;
  cursor: pointer;
}

.home-pipeline__step.is-active,
.home-pipeline__step.is-complete {
  color: #53a4ff;
  border-color: rgba(83, 164, 255, 0.34);
  background: rgba(30, 45, 74, 0.84);
}

.home-pipeline__step--emphasis,
.home-pipeline__step--emphasis.is-active,
.home-pipeline__step--emphasis.is-complete {
  background: linear-gradient(180deg, #5aa7ff, #4d95ee);
  border-color: rgba(118, 183, 255, 0.82);
  color: #f6fbff;
}

.home-pipeline__arrow {
  color: rgba(129, 157, 197, 0.34);
  text-align: center;
}

.home-feed-card__block {
  min-height: 156px;
  padding: 1.2rem 1.35rem 1.35rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
}

.home-feed-card__block:last-child {
  border-bottom: none;
  flex: 1;
}

.home-feed-card h2 {
  margin: 0.7rem 0 0.45rem;
  color: #f3ede5;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.home-feed-card p {
  margin: 0;
  color: rgba(155, 176, 204, 0.68);
  line-height: 1.72;
  font-size: 0.98rem;
}

.home-feed-card__action {
  margin-top: 1.15rem;
  border: 1px solid rgba(83, 164, 255, 0.28);
  background: rgba(18, 39, 70, 0.72);
  color: #53a4ff;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  padding: 0.55rem 0.7rem;
}

.home-quick-list {
  display: grid;
}

.home-quick-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem 0.95rem 1.1rem;
  border-top: 1px solid rgba(129, 157, 197, 0.1);
  color: inherit;
  text-decoration: none;
  transition: background 140ms ease;
}

.home-quick-link:hover {
  background: rgba(23, 31, 46, 0.5);
}

.home-quick-link:first-child {
  border-top: none;
}

.home-quick-link__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: rgba(65, 68, 87, 0.76);
  border: 1px solid rgba(129, 157, 197, 0.12);
  color: rgba(155, 176, 204, 0.7);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.home-quick-link strong {
  display: block;
  color: rgba(227, 232, 242, 0.86);
  font-size: 0.98rem;
  line-height: 1.15;
}

.home-quick-link small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(155, 176, 204, 0.52);
  font-size: 0.74rem;
  line-height: 1.35;
}

.home-quick-link b {
  color: rgba(129, 157, 197, 0.35);
  font-weight: 600;
}

.home-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.35rem;
  border-top: 1px solid rgba(129, 157, 197, 0.12);
  color: rgba(155, 176, 204, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.58rem;
}

.home-footer__right {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.home-footer__tg {
  min-width: 24px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid rgba(83, 164, 255, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #53a4ff;
  background: rgba(13, 24, 41, 0.66);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.home-footer__tg:hover {
  border-color: rgba(83, 164, 255, 0.62);
  color: #86c6ff;
}


.email-follow-page {
  max-width: 1220px;
}

.email-follow-shell,
.email-follow-card {
  padding: 1rem;
}

.email-follow-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.button-link {
  min-height: 36px;
  padding: 0 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(129, 157, 197, 0.25);
  background: rgba(14, 26, 46, 0.84);
  color: var(--text);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
}

.email-project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.email-project-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 0.6rem;
  margin-bottom: 0.72rem;
}

.email-project-tools input {
  min-height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(16, 29, 50, 0.72);
  color: var(--text);
  padding: 0 0.82rem;
  font-size: 0.9rem;
}

.email-project-tools button {
  min-height: 38px;
  padding: 0 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(91, 162, 255, 0.34);
  background: rgba(17, 39, 64, 0.86);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}

.email-project-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(16, 26, 44, 0.84), rgba(12, 20, 35, 0.82));
  color: var(--text);
  text-align: left;
  padding: 0.95rem;
}

.email-project-card.is-active {
  border-color: rgba(91, 162, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(91, 162, 255, 0.26);
}

.email-project-card__handle {
  display: block;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  margin-bottom: 0.35rem;
}

.email-project-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.28rem;
}

.email-project-card small,
.email-project-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.email-project-card em {
  margin-top: 0.55rem;
  line-height: 1.45;
}

.email-copy-block {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 0.9rem;
  background: rgba(11, 19, 33, 0.76);
}

.email-copy-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.email-copy-block__head span {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-copy-block__body {
  margin: 0;
  padding: 0.95rem;
  white-space: pre-wrap;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--text);
}

.email-copy-block__body--tall {
  min-height: 220px;
}

.email-follow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.email-tracker-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.25rem;
  margin-bottom: 0.9rem;
}

.email-tracker-stage {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(16, 26, 44, 0.84), rgba(12, 20, 35, 0.82));
  padding: 0.8rem 0.9rem;
}

.email-tracker-stage span {
  display: block;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.email-tracker-stage strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.email-tracker-stage small {
  color: var(--muted);
}

.email-tracker-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(11, 19, 33, 0.76);
}

.email-tracker-table__head,
.email-tracker-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) minmax(120px, 0.8fr) minmax(150px, 0.9fr) minmax(110px, 0.65fr) minmax(120px, 0.72fr) minmax(120px, 0.72fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.72rem 0.9rem;
}

.email-tracker-table__head {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-tracker-row + .email-tracker-row {
  border-top: 1px solid rgba(129, 157, 197, 0.12);
}

.email-tracker-row strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.18rem;
}

.email-tracker-row small {
  color: var(--muted);
}

.email-tracker-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 162, 255, 0.24);
  background: rgba(18, 32, 54, 0.54);
  color: var(--text);
  font-size: 0.74rem;
  white-space: nowrap;
}

.email-tracker-pill--reached {
  border-color: rgba(89, 255, 202, 0.36);
  background: rgba(12, 54, 52, 0.42);
}

.email-tracker-pill--looked {
  border-color: rgba(245, 193, 94, 0.32);
  background: rgba(74, 52, 14, 0.34);
}

.internal-tracker-page {
  max-width: 1380px;
}

.internal-tracker-shell {
  padding: 0.9rem;
  border-color: var(--line);
  background: linear-gradient(145deg, rgba(14, 24, 42, 0.9), rgba(10, 18, 33, 0.88));
}

.internal-tracker-pipeline {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(11, 19, 33, 0.78);
  padding: 0.7rem;
  margin-bottom: 0.8rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.internal-tracker-stage {
  border: 1px solid rgba(129, 157, 197, 0.22);
  border-radius: 10px;
  background: rgba(16, 27, 46, 0.74);
  min-height: 66px;
  padding: 0.5rem 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.internal-tracker-stage.has-value {
  background: rgba(17, 37, 57, 0.92);
  border-color: rgba(89, 255, 202, 0.34);
  box-shadow: inset 0 0 0 1px rgba(89, 255, 202, 0.12);
}

.internal-tracker-stage.is-active {
  border-color: rgba(91, 162, 255, 0.56);
  background: rgba(22, 40, 64, 0.96);
  box-shadow: inset 0 0 0 1px rgba(91, 162, 255, 0.24);
  transform: translateY(-1px);
}

.internal-tracker-stage:focus-visible {
  outline: 1px solid rgba(89, 255, 202, 0.56);
  outline-offset: 1px;
}

.internal-tracker-stage strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 0.22rem;
}

.internal-tracker-stage span {
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.internal-tracker-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.internal-tracker-toolbar input {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(16, 29, 50, 0.68);
  color: var(--text);
  padding: 0 0.9rem;
  font-size: 0.95rem;
}

.internal-tracker-tabs {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(16, 29, 50, 0.64);
}

.internal-tracker-tabs button {
  min-height: 40px;
  min-width: 92px;
  border: 0;
  border-right: 1px solid rgba(129, 157, 197, 0.2);
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  cursor: pointer;
}

.internal-tracker-tabs button:last-child {
  border-right: 0;
}

.internal-tracker-tabs button.is-active {
  background: rgba(89, 255, 202, 0.14);
  color: var(--text);
}

.internal-tracker-table {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(11, 19, 33, 0.78);
}

.internal-tracker-table__head,
.internal-tracker-row {
  display: grid;
  grid-template-columns: 56px minmax(160px, 1.1fr) minmax(140px, 0.95fr) minmax(160px, 0.95fr) minmax(170px, 0.95fr) minmax(170px, 0.95fr) minmax(108px, 0.74fr) minmax(108px, 0.74fr);
  gap: 0.55rem;
  align-items: center;
  padding: 0.64rem 0.85rem;
}

.internal-tracker-table__head {
  border-bottom: 1px solid var(--line);
  background: rgba(16, 29, 50, 0.66);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.internal-tracker-row {
  color: var(--text);
  font-size: 0.9rem;
}

.internal-tracker-row + .internal-tracker-row {
  border-top: 1px solid rgba(129, 157, 197, 0.14);
}

.internal-tracker-row strong {
  font-size: 1rem;
  color: var(--text);
}

.internal-tracker-row small {
  display: block;
  margin-top: 0.16rem;
  color: var(--muted);
}

.internal-tracker-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(129, 157, 197, 0.3);
  object-fit: cover;
  display: inline-flex;
}

.internal-tracker-avatar--fallback {
  align-items: center;
  justify-content: center;
  background: rgba(16, 29, 50, 0.86);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.internal-tracker-select {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(129, 157, 197, 0.24);
  border-radius: 10px;
  background: rgba(16, 29, 50, 0.72);
  color: var(--text);
  padding: 0 0.62rem;
  font-size: 0.84rem;
}

@media (max-width: 1100px) {
  .home-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .home-primary {
    border-right: none;
  }

  .home-secondary {
    border-top: 1px solid rgba(129, 157, 197, 0.12);
  }

  .email-project-list,
  .email-follow-grid,
  .email-tracker-stages {
    grid-template-columns: 1fr;
  }

  .email-project-tools {
    grid-template-columns: 1fr;
  }

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

  .internal-tracker-toolbar {
    grid-template-columns: 1fr;
  }
}

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

  .home-radar {
    min-height: 200px;
  }

  .home-stat-strip,
  .home-pipeline {
    grid-template-columns: 1fr;
  }

  .home-stat-strip article {
    border-right: none;
    border-bottom: 1px solid rgba(129, 157, 197, 0.12);
  }

  .home-stat-strip article:last-child {
    border-bottom: none;
  }

  .home-pipeline__arrow {
    transform: rotate(90deg);
  }

  .internal-tracker-table {
    overflow-x: auto;
  }

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

  .internal-tracker-table__head,
  .internal-tracker-row {
    min-width: 1080px;
  }
}

@media (max-width: 700px) {
  .home-topbar {
    padding: 0.9rem 1rem 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero-panel,
  .home-section__head,
  .home-feed-card__block,
  .home-pipeline,
  .home-stat-strip article,
  .home-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-hero-panel h1 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }
}

.flywheel-card {
  display: grid;
  place-items: center;
  padding: 1.4rem 1rem;
}

.flywheel {
  position: relative;
  width: min(760px, 100%);
  height: 420px;
  display: grid;
  place-items: center;
}

.flywheel-core {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 1px solid rgba(89, 255, 202, 0.65);
  background: radial-gradient(circle at 30% 30%, rgba(89, 255, 202, 0.22), rgba(91, 162, 255, 0.2));
  box-shadow: 0 0 44px rgba(89, 255, 202, 0.22);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 2;
}

.fw-ring {
  position: absolute;
  border: 1px dashed rgba(155, 176, 204, 0.3);
  border-radius: 999px;
  z-index: 1;
}

.fw-ring-a {
  width: 350px;
  height: 350px;
  animation: spin 22s linear infinite;
}

.fw-ring-b {
  width: 280px;
  height: 280px;
  animation: spin 16s linear infinite reverse;
}

.fw-step {
  position: absolute;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 20, 36, 0.92);
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  z-index: 3;
  animation: bob 3.2s ease-in-out infinite;
}

.fw-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.fw-2 { top: 27%; right: 9%; animation-delay: 350ms; }
.fw-3 { bottom: 23%; right: 13%; animation-delay: 650ms; }
.fw-4 { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: 950ms; }
.fw-5 { top: 27%; left: 9%; animation-delay: 1250ms; }

.flywheel-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.8rem;
}

@media (max-width: 900px) {
  .flywheel {
    height: 520px;
  }

  .fw-ring-a {
    width: 300px;
    height: 300px;
  }

  .fw-ring-b {
    width: 240px;
    height: 240px;
  }

  .fw-1 { top: 6%; }
  .fw-2 { top: 24%; right: 3%; }
  .fw-3 { bottom: 24%; right: 6%; }
  .fw-4 { bottom: 6%; }
  .fw-5 { top: 24%; left: 3%; }
}

.flow-card {
  padding: 1.3rem 1rem;
}

.flow-pipeline {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(120px, 1fr) auto minmax(140px, 1fr);
  gap: 0.45rem;
  align-items: center;
}

.flow-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 31, 54, 0.85), rgba(12, 20, 36, 0.88));
  min-height: 74px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  padding: 0.6rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.flow-box:hover {
  border-color: rgba(91, 162, 255, 0.6);
}

.flow-box:focus-visible {
  outline: 2px solid rgba(89, 255, 202, 0.7);
  outline-offset: 2px;
}

.flow-box.is-active {
  border-color: rgba(91, 162, 255, 0.9);
  box-shadow: 0 0 24px rgba(91, 162, 255, 0.28);
  transform: translateY(-2px);
}

.flow-box.is-complete {
  border-color: rgba(89, 255, 202, 0.65);
}

.flow-box.is-clicked {
  animation: clickPulse 260ms ease;
}

.flow-box.emphasis {
  border-color: rgba(89, 255, 202, 0.6);
  box-shadow: 0 0 24px rgba(89, 255, 202, 0.2);
}

.flow-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  text-align: center;
}

.flow-live {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.flow-live__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(16, 26, 44, 0.84), rgba(12, 20, 35, 0.82));
  padding: 0.75rem;
}

.flow-live__item h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.02rem;
}

.flow-live__item p {
  margin: 0.2rem 0;
}

.flow-action {
  color: var(--accent);
  font-weight: 600;
}

.dashboard-shell {
  max-width: none;
}

.dashboard-hero p {
  max-width: 62ch;
}

.dashboard-hero {
  padding: 0.58rem 0.9rem !important;
}

.dashboard-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.dashboard-hero h1 {
  margin: 0.05rem 0 0.2rem;
}

.dashboard-toolbar,
.dashboard-workspace {
  padding: 1.15rem;
}

.dashboard-toolbar__top,
.dashboard-workspace__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.dashboard-toolbar__top h2,
.dashboard-workspace__head h2 {
  margin-bottom: 0.2rem;
}

.dashboard-toolbar__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.dashboard-control-group {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.dashboard-control-group label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-control-group input,
.dashboard-control-group select {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  font-size: 0.94rem;
}

.dashboard-toolbar__meta {
  margin: 0.8rem 0 0.9rem;
}

.dashboard-filters {
  grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(140px, 1fr));
  margin-bottom: 1rem;
}

.dashboard-stream {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.78fr);
  gap: 0.9rem;
  align-items: start;
}

.dashboard-stream__list {
  min-width: 0;
}

.dashboard-stream__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.dashboard-details {
  position: sticky;
  top: 1rem;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.dashboard-accounts {
  padding: 0.95rem;
}

.dashboard-bulkbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-bulkbar button {
  min-height: 30px;
  padding: 0.28rem 0.62rem;
  font-size: 0.74rem;
}

.dashboard-account-table {
  border: 1px solid rgba(129, 157, 197, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 18, 33, 0.52);
}

.dashboard-account-table__head,
.dashboard-account-row {
  display: grid;
  grid-template-columns: 34px minmax(178px, 1.16fr) minmax(142px, 0.8fr) minmax(152px, 0.86fr) minmax(208px, 1.04fr) minmax(86px, 0.42fr) minmax(96px, 0.5fr) minmax(92px, 0.48fr) minmax(138px, 0.64fr);
  gap: 0.4rem;
  align-items: center;
  padding: 0.28rem 0.62rem;
}

.dashboard-account-table__head {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.14);
  background: rgba(18, 29, 50, 0.38);
}

.dashboard-account-row {
  border-bottom: 1px solid rgba(129, 157, 197, 0.1);
}

.dashboard-account-row:last-child {
  border-bottom: none;
}

.dashboard-account-table.is-branch-scope .dashboard-account-table__head,
.dashboard-account-table.is-branch-scope .dashboard-account-row {
  grid-template-columns: 34px minmax(204px, 1.42fr) minmax(150px, 0.8fr) minmax(216px, 1.04fr) minmax(86px, 0.46fr) minmax(96px, 0.54fr) minmax(92px, 0.52fr) minmax(138px, 0.7fr);
}

.dashboard-account-table.is-branch-scope .dashboard-account-table__head > :nth-child(2),
.dashboard-account-table.is-branch-scope .dashboard-account-row > :nth-child(2) {
  display: block;
}

.dashboard-account-table.is-branch-scope .dashboard-account-table__head > :nth-child(4),
.dashboard-account-table.is-branch-scope .dashboard-account-row > :nth-child(4) {
  display: none;
}

.dashboard-account-row__account {
  display: grid;
  gap: 0.04rem;
  min-width: 0;
}

.dashboard-account-row__meta {
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.05;
}

.dashboard-account-cell {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.92rem;
}

.dashboard-account-cell--role {
  font-size: 0.88rem;
}

.dashboard-account-controls {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.dashboard-account-controls button,
.dashboard-account-controls a {
  min-width: 30px;
  min-height: 28px;
  padding: 0.12rem 0.22rem;
  border-radius: 8px;
  justify-content: center;
  font-size: 0.8rem;
  font-family: "Segoe UI Symbol", "IBM Plex Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 66px;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 600;
}

.dashboard-account-pick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-account-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dashboard-account-pick span {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid rgba(129, 157, 197, 0.28);
  background: rgba(18, 29, 50, 0.7);
  display: inline-block;
}

.dashboard-account-pick input:checked + span {
  border-color: rgba(89, 255, 202, 0.48);
  background: linear-gradient(135deg, rgba(89, 255, 202, 0.22), rgba(91, 162, 255, 0.18));
  box-shadow: inset 0 0 0 3px rgba(7, 12, 23, 0.95);
}

.dashboard-status--ready {
  color: var(--muted);
}

.dashboard-status--running {
  color: #99c8ff;
  border-color: rgba(91, 162, 255, 0.35);
  background: rgba(91, 162, 255, 0.12);
}

.dashboard-status--updated {
  color: var(--accent);
  border-color: rgba(89, 255, 202, 0.35);
  background: rgba(89, 255, 202, 0.08);
}

.dashboard-status--paused {
  color: #ffd58c;
  border-color: rgba(255, 213, 140, 0.28);
  background: rgba(255, 213, 140, 0.08);
}

.dashboard-status--stopped {
  color: #ff9fb3;
  border-color: rgba(255, 111, 145, 0.28);
  background: rgba(255, 111, 145, 0.08);
}

.dashboard-status--error {
  color: #ff9fb3;
  border-color: rgba(255, 111, 145, 0.34);
  background: rgba(255, 111, 145, 0.12);
}

.dashboard-feed-cta {
  display: grid;
  align-content: start;
}

.dashboard-inline-filters {
  margin-bottom: 0.9rem;
}

.dashboard-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed rgba(129, 157, 197, 0.24);
  border-radius: 18px;
  background: rgba(18, 29, 50, 0.34);
  text-align: center;
  padding: 1rem;
}

.reports-shell {
  gap: 1rem;
}

.followers-shell {
  gap: 1rem;
  min-width: 0;
}

.followers-toolbar__filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.followers-feed-table {
  border: 1px solid rgba(129, 157, 197, 0.16);
  border-radius: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  background: rgba(10, 18, 33, 0.52);
  max-width: 100%;
}

.followers-feed-table__head,
.followers-feed-row {
  display: grid;
  grid-template-columns: 170px 118px 84px 84px minmax(230px, 1fr) 96px 102px 150px;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0.58rem;
  min-width: 1020px;
}

.followers-feed-table__head {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.14);
  background: rgba(18, 29, 50, 0.38);
}

.followers-feed-list {
  display: grid;
  min-width: 1020px;
}

.followers-feed-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.followers-feed-pagination button {
  min-height: 30px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
}

.followers-feed-row {
  border-bottom: 1px solid rgba(129, 157, 197, 0.1);
}

.followers-feed-row:last-child {
  border-bottom: none;
}

.followers-feed-row__account {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.followers-feed-row__account--link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.followers-feed-row__account--link:hover strong {
  color: #99c8ff;
}

.followers-feed-row__account div {
  display: grid;
  gap: 0.08rem;
}

.followers-feed-row,
.followers-feed-row span,
.followers-feed-row strong,
.followers-feed-row a,
.followers-feed-row button {
  font-size: 0.82rem;
}

.followers-feed-item__identity {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  min-width: 0;
}

.followers-feed-item__avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(129, 157, 197, 0.22);
}

.followers-feed-item__avatar--fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91, 162, 255, 0.22), rgba(89, 255, 202, 0.16));
  color: var(--text);
  font-weight: 700;
}

.followers-feed-item__top,
.followers-feed-item__bottom {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.followers-feed-item__meta,
.followers-feed-item__bio {
  margin: 0.45rem 0 0;
}

.followers-feed-item__meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.followers-feed-item__meta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.followers-feed-item__meta-cell {
  border: 1px solid rgba(129, 157, 197, 0.14);
  border-radius: 12px;
  padding: 0.55rem 0.62rem;
  background: rgba(16, 26, 45, 0.52);
}

.followers-feed-item__meta-cell b {
  display: block;
  font-size: 0.9rem;
}

.followers-feed-item__meta-cell span {
  color: var(--muted);
  font-size: 0.74rem;
}

.followers-feed-head-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.followers-feed-head-filter {
  min-height: 30px;
  padding: 0.26rem 0.58rem;
  font-size: 0.74rem;
}

.followers-feed-item__bio {
  color: var(--text);
  max-width: 90ch;
}

.followers-feed-row__bio {
  color: var(--muted);
  line-height: 1.2;
}

.followers-feed-item__actions {
  display: flex;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.followers-feed-item__actions a,
.followers-feed-item__actions button,
.followers-feed-item__flag {
  min-height: 26px;
  padding: 0.22rem 0.46rem;
  border-radius: 8px;
  font-size: 0.72rem;
}

.followers-feed-item__ai {
  min-width: 52px;
  min-height: 28px;
  padding: 0.26rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(129, 157, 197, 0.24);
  background: rgba(15, 24, 42, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.followers-feed-item__ai.is-yes {
  border-color: rgba(89, 255, 202, 0.4);
  color: var(--accent);
  background: rgba(10, 36, 38, 0.75);
}

.followers-feed-item__ai.is-no {
  border-color: rgba(129, 157, 197, 0.22);
  color: var(--muted);
}

.followers-feed-item__flag.is-active {
  border-color: rgba(89, 255, 202, 0.48);
  color: var(--accent);
}

.followers-feed-item__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.check-shell {
  gap: 1rem;
}

.check-shell--dashboard {
  max-width: none;
  padding: 0;
  gap: 1rem;
}

.check-hero-panel {
  min-height: 190px;
  padding: 1.65rem 1.7rem 1.25rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
  background:
    linear-gradient(90deg, rgba(91, 162, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(91, 162, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 11, 17, 0.98), rgba(11, 13, 20, 0.98));
  background-size: 28px 28px, 28px 28px, auto;
}

.check-hero-panel__copy {
  max-width: 760px;
}

.check-kicker-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.check-kicker-badge,
.check-kicker-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0.18rem 0.55rem;
  border: 1px solid rgba(129, 157, 197, 0.14);
  background: rgba(16, 21, 31, 0.75);
  color: rgba(155, 176, 204, 0.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.check-kicker-badge {
  color: #53a4ff;
}

.check-hero-dot {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  margin: 0 0 0.45rem 0.8rem;
  border-radius: 999px;
  background: #2d8cff;
  box-shadow: 0 0 0 6px rgba(45, 140, 255, 0.08);
}

.check-hero-panel h1 {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #f7f1e9;
}

.check-hero-panel p {
  margin: 0.85rem 0 0;
  color: rgba(155, 176, 204, 0.64);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 31rem;
}

.check-card--dashboard {
  margin: 0;
  padding: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    var(--panel);
  border-color: rgba(129, 157, 197, 0.12);
  box-shadow: 0 18px 44px rgba(2, 8, 16, 0.34);
}

.check-card__head {
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
}

.check-card__head p {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  color: rgba(155, 176, 204, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.check-lookup-row {
  align-items: stretch;
  padding: 1rem 1.25rem 0.7rem;
  margin-bottom: 0;
}

.check-lookup-card #lookupHandleInput {
  min-height: 40px;
  border-radius: 12px;
  background: #0c0e14;
  border-color: rgba(129, 157, 197, 0.12);
  color: #e8eef8;
  font-size: 0.96rem;
}

.check-lookup-card #lookupBtn {
  min-width: 112px;
  border-radius: 12px;
  background: #4b97f3;
  border-color: #4b97f3;
  color: #f6fbff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.check-lookup-card #lookupSummary {
  padding: 0 1.25rem 1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(155, 176, 204, 0.44);
}

.check-results-head {
  padding: 0.72rem 1.25rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
}

.check-results-head h2 {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f2f5fb;
}

.check-results-list {
  display: grid;
  gap: 0;
  min-height: 270px;
  padding: 0;
}

.check-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border: none;
  border-bottom: 1px solid rgba(129, 157, 197, 0.1);
  border-radius: 0;
  padding: 0.95rem 1.25rem;
  background: transparent;
}

.check-result-item strong {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: #f3f5fb;
}

.check-result-item p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}

.check-result-item a {
  color: #53a4ff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.check-results-empty {
  min-height: 270px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(155, 176, 204, 0.52);
  padding: 2rem 1rem;
}

.check-results-empty__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(129, 157, 197, 0.12);
  color: rgba(155, 176, 204, 0.34);
  margin: 0 auto 1rem;
}

.check-results-empty p,
.check-results-empty small {
  margin: 0;
}

.check-results-empty small {
  display: block;
  margin-top: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  color: rgba(155, 176, 204, 0.28);
}

.check-shell--dashboard .home-footer {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.report-hero {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.report-hero__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.report-browser {
  padding: 1.2rem;
  border-radius: 24px;
  min-height: 520px;
  min-width: 0;
}

.reports-overview-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.18fr);
  gap: 1rem;
}

.report-filters {
  margin-bottom: 0.85rem;
}

.report-filters.is-hidden {
  display: none;
}

.report-groups {
  display: grid;
  gap: 0.8rem;
}

.report-day-list {
  display: grid;
  gap: 0.32rem;
}

.report-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.42rem 0.72rem;
  align-items: center;
  border: none;
  border-bottom: 1px solid rgba(129, 157, 197, 0.12);
  background: transparent;
  padding: 0.62rem 0;
  text-align: left;
  border-radius: 0;
  min-width: 0;
}

.report-row:not(.report-row--head):hover {
  background: rgba(18, 30, 52, 0.22);
}

.report-row.is-selected {
  background: linear-gradient(90deg, rgba(91, 162, 255, 0.14), transparent 64%);
}

.report-row__date {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.report-row__date strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.report-row__date small {
  color: var(--muted);
  font-size: 0.74rem;
}

.report-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 124px;
  padding: 0.36rem 0.7rem;
  border-radius: 10px;
  background: rgba(35, 81, 150, 0.78);
  color: #99c8ff;
  font-weight: 600;
  font-size: 0.74rem;
}

.report-row__sectors {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  min-width: 0;
}

.report-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(129, 157, 197, 0.2);
  border-radius: 9px;
  background: rgba(18, 29, 50, 0.7);
  color: var(--text);
  font-size: 0.78rem;
}

.report-pagination {
  margin-top: 0.56rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.report-pagination button {
  min-height: 32px;
  min-width: 68px;
  padding: 0 0.64rem;
  border-radius: 9px;
  border: 1px solid rgba(129, 157, 197, 0.24);
  background: rgba(16, 29, 50, 0.72);
  color: var(--text);
  font-size: 0.74rem;
}

.report-pagination button:disabled {
  opacity: 0.45;
  cursor: default;
}

.report-pagination span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.report-detail-card {
  min-height: 0;
  padding: 1.2rem;
}

.report-detail-card--wide {
  min-height: 0;
}

.report-detail-card--selected {
  padding: 0.95rem 1rem;
}

.report-detail-card--selected .section-head {
  margin-bottom: 0.45rem;
}

.report-detail-card--selected .muted {
  font-size: 0.8rem;
}

.report-detail-card--selected .stats {
  gap: 0.42rem;
  margin-bottom: 0.45rem;
}

.report-detail-card--selected .stat {
  padding: 0.46rem 0.58rem;
  border-radius: 12px;
}

.report-detail-card--selected .stat b {
  font-size: 0.88rem;
}

.report-detail-card--selected .stat span {
  font-size: 0.72rem;
}

.report-detail-card--selected h3 {
  margin: 0.65rem 0 0.42rem;
}

.report-detail-card h3 {
  margin: 1rem 0 0.7rem;
}

.report-detail-card .list li {
  min-height: 78px;
  align-items: center;
}

.report-detail-card--wide .list li {
  min-height: 70px;
}

.report-list {
  gap: 0.34rem;
}

.report-list li {
  min-height: 56px;
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
}

.report-list .muted {
  font-size: 0.76rem;
}

.report-list--movers li {
  padding: 0;
  overflow: hidden;
}

.report-mover-link {
  width: 100%;
  min-height: 74px;
  padding: 0.56rem 0.62rem;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.62rem;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
}

.report-mover-link:hover {
  background: rgba(18, 30, 52, 0.26);
  border-color: transparent;
}

.report-mover-link__avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(129, 157, 197, 0.3);
  object-fit: cover;
  display: inline-flex;
}

.report-mover-link__avatar--fallback {
  align-items: center;
  justify-content: center;
  background: rgba(16, 29, 50, 0.86);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.report-mover-link__body {
  min-width: 0;
  display: grid;
  gap: 0.16rem;
}

.report-mover-link__body strong {
  font-size: 0.93rem;
  line-height: 1.2;
}

.report-mover-link__body .muted {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.report-list--scouts li strong {
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .dashboard-toolbar__grid,
  .dashboard-lower {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-stream {
    grid-template-columns: 1fr;
  }

  .dashboard-details {
    position: static;
  }

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

  .followers-toolbar__filters {
    grid-template-columns: 1fr 1fr;
  }

  .reports-overview-grid {
    grid-template-columns: 1fr;
  }

  .report-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (max-width: 1050px) {
  .flow-pipeline {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .flow-arrow {
    transform: rotate(90deg);
    line-height: 1;
  }

  .flow-live {
    grid-template-columns: 1fr;
  }
}

@keyframes clickPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Landing page */
.landing-page {
  --landing-bg: #0d1117;
  --landing-surface: rgba(18, 24, 33, 0.78);
  --landing-card: rgba(255, 255, 255, 0.045);
  --landing-line: rgba(168, 188, 214, 0.16);
  --landing-soft: rgba(224, 233, 244, 0.68);
  --landing-accent: #c7f36b;
  --landing-accent-soft: #7cc7ff;
  --landing-cool: #7cc7ff;
  --landing-ink: #f5f8fc;
  --landing-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  margin: 0;
  color: var(--landing-ink);
  background:
    radial-gradient(900px 520px at 8% -5%, rgba(124, 199, 255, 0.16), transparent),
    radial-gradient(760px 420px at 92% 10%, rgba(199, 243, 107, 0.11), transparent),
    radial-gradient(780px 480px at 50% 100%, rgba(124, 199, 255, 0.08), transparent),
    linear-gradient(180deg, #0b1016, #101720 44%, #0d1117);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.landing-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
  opacity: 0.14;
}

.landing-page * {
  box-sizing: border-box;
}

.landing-header,
.landing-main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.landing-header {
  padding: 1rem 0 0;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--landing-line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(12, 16, 22, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--landing-ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.landing-brand__text {
  display: grid;
  gap: 0.08rem;
}

.landing-brand__text strong {
  font-size: 0.98rem;
}

.landing-brand__text small {
  color: rgba(224, 233, 244, 0.56);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-brand__mark {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(199, 243, 107, 0.92), rgba(124, 199, 255, 0.92));
  color: #0d1117;
  box-shadow: 0 12px 34px rgba(124, 199, 255, 0.2);
}

.landing-nav__links,
.landing-nav__actions,
.landing-hero__actions,
.landing-cta__actions,
.landing-proofline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.landing-nav__links a,
.landing-link {
  color: rgba(224, 233, 244, 0.72);
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.landing-nav__links a:hover,
.landing-link:hover {
  color: var(--landing-ink);
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--landing-accent), #eef7bd 58%, var(--landing-accent-soft));
  color: #0d1117;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(199, 243, 107, 0.36);
  box-shadow: 0 16px 42px rgba(124, 199, 255, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.landing-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(124, 199, 255, 0.18);
  filter: saturate(1.05);
}

.landing-button--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--landing-ink);
  border-color: rgba(168, 188, 214, 0.22);
  box-shadow: none;
}

.landing-main {
  padding: 1rem 0 4rem;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 2rem;
  align-items: start;
  padding: 4.2rem 0 2.8rem;
}

.landing-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.landing-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 243, 107, 0.22);
  background: rgba(199, 243, 107, 0.08);
  color: #edf8ce;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-chip--soft {
  border-color: rgba(168, 188, 214, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(224, 233, 244, 0.76);
}

.landing-thesis {
  position: relative;
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.55rem 0.2rem 0.4rem 0;
}

.landing-thesis__line {
  margin: 0;
  color: rgba(224, 233, 244, 0.78);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  min-height: 1.2em;
  transition: color 220ms ease;
}

.landing-thesis.is-alert .landing-thesis__line {
  color: var(--landing-accent);
}

.landing-thesis__cross {
  position: absolute;
  left: -0.05rem;
  right: -0.2rem;
  top: 56%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--landing-accent), var(--landing-accent-soft), transparent);
  transform: rotate(-6deg) scaleX(0);
  transform-origin: center;
  box-shadow: 0 0 24px rgba(124, 199, 255, 0.24);
  opacity: 0;
}

.landing-thesis__cross::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--landing-accent-soft);
  border-right: 3px solid var(--landing-accent-soft);
  transform: translateY(-50%) rotate(35deg);
}

.landing-thesis.is-struck .landing-thesis__cross {
  opacity: 1;
  animation: thesisStrike 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.landing-eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(124, 199, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.landing-hero h1,
.landing-section h2,
.landing-cta h2 {
  margin: 0;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.landing-hero h1 {
  font-size: clamp(3.1rem, 6vw, 5.6rem);
  max-width: 10.6ch;
  min-height: 3.1em;
}

.landing-hero__headline {
  position: relative;
}

.landing-thesis__line.is-typing::after,
.landing-hero__headline.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.92em;
  margin-left: 0.08em;
  background: currentColor;
  vertical-align: -0.08em;
  animation: caretBlink 0.85s step-end infinite;
}

.landing-lead,
.landing-feature p,
.landing-timeline p,
.landing-proof-card p,
.landing-faq p,
.landing-quote,
.landing-section__summary,
.landing-process__panel p,
.signal-stage__card span,
.signal-stage__card p {
  color: rgba(224, 233, 244, 0.72);
  font-size: 1rem;
  line-height: 1.68;
}

.landing-lead {
  max-width: 60ch;
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
}

.landing-proofline {
  margin-top: 1.45rem;
}

.landing-proofline span {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--landing-line);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(224, 233, 244, 0.66);
  font-size: 0.85rem;
}

.landing-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.landing-hero__facts li {
  position: relative;
  padding: 1.05rem 1.08rem;
  border-radius: 24px;
  border: 1px solid var(--landing-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(14, 19, 27, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.landing-hero__facts li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--landing-accent), transparent 75%);
  opacity: 0.7;
}

.landing-hero__facts strong {
  display: block;
  font-size: 1.55rem;
}

.landing-hero__facts span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(224, 233, 244, 0.56);
  font-size: 0.88rem;
  line-height: 1.5;
}

.landing-hero__panel {
  position: relative;
  align-self: start;
}

.landing-panel-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.65rem 0.35rem;
  color: rgba(224, 233, 244, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-stage {
  position: relative;
  min-height: 0;
  padding: 1.15rem;
  border-radius: 32px;
  border: 1px solid rgba(168, 188, 214, 0.16);
  background:
    radial-gradient(520px 220px at 88% 14%, rgba(124, 199, 255, 0.16), transparent),
    radial-gradient(380px 200px at 8% 6%, rgba(199, 243, 107, 0.08), transparent),
    linear-gradient(180deg, rgba(11, 17, 24, 0.98), rgba(14, 20, 29, 0.97));
  box-shadow: 0 28px 72px rgba(2, 8, 16, 0.42);
  overflow: hidden;
  animation: stageLift 900ms 180ms ease both;
}

.signal-stage__frame {
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(168, 188, 214, 0.12);
  pointer-events: none;
}

.signal-stage__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.58;
}

.signal-stage__glow--a {
  inset: 4% auto auto 2%;
  width: 210px;
  height: 210px;
  background: rgba(124, 199, 255, 0.18);
  animation: stageGlowA 5.8s ease-in-out infinite;
}

.signal-stage__glow--b {
  inset: auto 2% 8% auto;
  width: 240px;
  height: 240px;
  background: rgba(199, 243, 107, 0.12);
  animation: stageGlowB 6.6s ease-in-out infinite;
}

.signal-stage__screen {
  position: relative;
  min-height: 420px;
  border-radius: 26px;
  border: 1px solid rgba(168, 188, 214, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(135deg, rgba(16, 24, 34, 0.96), rgba(11, 17, 24, 0.98));
  padding: 0.95rem;
}

.signal-stage__screen-head {
  display: flex;
  gap: 0.35rem;
}

.signal-stage__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(155, 176, 204, 0.52);
}

.signal-stage__headline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin: 0.85rem 0 0.95rem;
}

.signal-stage__label {
  margin: 0 0 0.3rem;
  color: rgba(224, 233, 244, 0.46);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-stage__headline strong {
  font-size: 1.1rem;
}

.signal-stage__status {
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 243, 107, 0.24);
  background: rgba(199, 243, 107, 0.08);
  color: #edf8ce;
  font-size: 0.78rem;
  animation: statusPulse 2.8s ease-in-out infinite;
}

.signal-stage__columns {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.7rem;
}

.signal-stage__mini-grid {
  display: grid;
  gap: 0.7rem;
}

.signal-stage__card {
  padding: 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(168, 188, 214, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(19, 27, 38, 0.72);
  min-height: 118px;
  animation: fadeSlideUp 700ms ease both;
  backdrop-filter: blur(10px);
}

.signal-stage__card strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 1rem;
}

.signal-stage__card--strong {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    radial-gradient(300px 180px at 80% 18%, rgba(124, 199, 255, 0.15), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 44%),
    linear-gradient(145deg, rgba(24, 36, 52, 0.92), rgba(15, 22, 31, 0.94));
  box-shadow: inset 0 0 0 1px rgba(124, 199, 255, 0.14);
}

.signal-stage__mini-grid .signal-stage__card:nth-child(1) {
  animation-delay: 120ms;
}

.signal-stage__mini-grid .signal-stage__card:nth-child(2) {
  animation-delay: 220ms;
}

.signal-stage__card--strong {
  animation-delay: 40ms;
}

.signal-stage__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.signal-stage__rail-item {
  padding: 0.7rem 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(168, 188, 214, 0.12);
  background: rgba(16, 24, 34, 0.64);
  animation: fadeSlideUp 700ms ease both;
}

.signal-stage__rail-item:nth-child(1) { animation-delay: 180ms; }
.signal-stage__rail-item:nth-child(2) { animation-delay: 260ms; }
.signal-stage__rail-item:nth-child(3) { animation-delay: 340ms; }

.signal-stage__rail-item span {
  display: block;
  color: rgba(224, 233, 244, 0.48);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.signal-stage__rail-item strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.92rem;
}

.signal-stage__ticker {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.signal-stage__ticker span {
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 188, 214, 0.12);
  color: rgba(224, 233, 244, 0.84);
  font-size: 0.74rem;
  background: rgba(16, 24, 34, 0.72);
  animation: tickerFloat 4s ease-in-out infinite;
}

.signal-stage__ticker span:nth-child(2) { animation-delay: 300ms; }
.signal-stage__ticker span:nth-child(3) { animation-delay: 600ms; }
.signal-stage__ticker span:nth-child(4) { animation-delay: 900ms; }

.landing-marquee {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 3.2rem;
}

.landing-marquee span {
  padding: 1rem 0.95rem;
  border-radius: 18px;
  border: 1px solid var(--landing-line);
  color: rgba(224, 233, 244, 0.72);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(13, 18, 25, 0.68);
}

.landing-section {
  padding: 2.8rem 0;
}

.landing-panel {
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid var(--landing-line);
  background:
    radial-gradient(520px 260px at 85% 16%, rgba(124, 199, 255, 0.11), transparent),
    radial-gradient(420px 260px at 12% 12%, rgba(199, 243, 107, 0.08), transparent),
    linear-gradient(140deg, rgba(16, 22, 30, 0.96), rgba(12, 17, 24, 0.96));
  box-shadow: var(--landing-shadow);
  backdrop-filter: blur(12px);
}

.landing-section__intro,
.landing-proof,
.landing-cta {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.landing-section h2,
.landing-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  max-width: 12ch;
}

.landing-section__summary {
  max-width: 34ch;
  margin: 0;
}

.landing-grid {
  display: grid;
  gap: 1rem;
}

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

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

.landing-feature,
.landing-proof-card,
.landing-faq article,
.landing-proof-metrics article {
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--landing-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(14, 19, 27, 0.72);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-feature::before,
.landing-proof-card::before,
.landing-faq article::before,
.landing-proof-metrics article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--landing-accent), transparent 70%);
  opacity: 0.75;
}

.landing-feature,
.landing-proof-card,
.landing-faq article,
.landing-proof-metrics article {
  padding: 1.4rem;
}

.landing-feature:hover,
.landing-proof-card:hover,
.landing-faq article:hover,
.landing-proof-metrics article:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 188, 214, 0.24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.landing-feature__index,
.landing-flow__step span {
  display: inline-block;
  margin: 0 0 0.9rem;
  color: var(--landing-accent-soft);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-feature h3,
.landing-proof-card h3,
.landing-faq h3,
.landing-flow__step h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.landing-link--arrow::after {
  content: " ->";
}

.landing-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: stretch;
}

.landing-flow__step {
  padding: 1.2rem;
  animation: fadeSlideUp 700ms ease both;
}

.landing-flow__step:nth-child(1) { animation-delay: 120ms; }
.landing-flow__step:nth-child(3) { animation-delay: 220ms; }
.landing-flow__step:nth-child(5) { animation-delay: 320ms; }
.landing-flow__step:nth-child(7) { animation-delay: 420ms; }

.landing-flow__step,
.landing-flow-note {
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--landing-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(14, 19, 27, 0.7);
  overflow: hidden;
}

.landing-flow__step::before,
.landing-flow-note::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--landing-accent), transparent 70%);
  opacity: 0.75;
}

.landing-flow__step p {
  margin: 0;
  color: rgba(224, 233, 244, 0.72);
  font-size: 0.96rem;
  line-height: 1.6;
}

.landing-flow__arrow {
  display: grid;
  place-items: center;
  color: var(--landing-accent-soft);
  font-size: 1.5rem;
  opacity: 0.85;
  animation: flowArrowPulse 2.6s ease-in-out infinite;
}

.landing-flow-note {
  margin-top: 0.9rem;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.landing-flow-note p {
  margin: 0;
  color: rgba(224, 233, 244, 0.7);
  line-height: 1.6;
}

.landing-section--contrast {
  background:
    radial-gradient(520px 260px at 85% 16%, rgba(124, 199, 255, 0.14), transparent),
    radial-gradient(420px 260px at 12% 12%, rgba(199, 243, 107, 0.09), transparent),
    linear-gradient(140deg, rgba(17, 23, 31, 0.96), rgba(12, 17, 24, 0.96));
}

.landing-quote {
  margin: 0;
  max-width: 30ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.04;
}

.landing-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.landing-proof-metrics span {
  display: block;
  color: rgba(224, 233, 244, 0.52);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.landing-proof-metrics strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.08rem;
}

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

.landing-cta {
  margin-top: 2rem;
  background:
    radial-gradient(460px 220px at 85% 20%, rgba(124, 199, 255, 0.16), transparent),
    radial-gradient(380px 220px at 15% 18%, rgba(199, 243, 107, 0.12), transparent),
    linear-gradient(135deg, rgba(17, 24, 32, 0.96), rgba(11, 16, 23, 0.98));
}

@keyframes thesisStrike {
  from { transform: rotate(-6deg) scaleX(0); opacity: 0.35; }
  to { transform: rotate(-6deg) scaleX(1); opacity: 1; }
}

@keyframes caretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stageLift {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stageGlowA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -8px, 0) scale(1.06); }
}

@keyframes stageGlowB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-12px, 10px, 0) scale(1.08); }
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(124, 199, 255, 0);
    border-color: rgba(168, 188, 214, 0.16);
  }
  50% {
    box-shadow: 0 0 18px rgba(124, 199, 255, 0.12);
    border-color: rgba(199, 243, 107, 0.28);
  }
}

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

@keyframes flowArrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.65; }
  50% { transform: translateX(4px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-thesis__cross,
  .signal-stage,
  .signal-stage__glow,
  .signal-stage__status,
  .signal-stage__card,
  .signal-stage__rail-item,
  .signal-stage__ticker span,
  .landing-flow__step,
  .landing-flow__arrow {
    animation: none !important;
  }

  .landing-thesis__line.is-typing::after,
  .landing-hero__headline.is-typing::after {
    animation: none !important;
  }
}

@media (max-width: 1040px) {
  .landing-hero,
  .signal-stage__columns {
    grid-template-columns: 1fr;
  }

  .landing-grid--three,
  .landing-faq,
  .landing-marquee,
  .landing-proof-metrics,
  .signal-stage__rail {
    grid-template-columns: 1fr 1fr;
  }

  .landing-proof,
  .landing-section__intro,
  .landing-cta {
    align-items: start;
    flex-direction: column;
  }

  .landing-section h2,
  .landing-cta h2,
  .landing-hero h1,
  .landing-section__summary,
  .landing-quote {
    max-width: none;
  }

  .signal-stage__card--strong {
    min-height: 200px;
  }
}

@media (max-width: 720px) {
  .landing-header,
  .landing-main {
    width: min(1180px, calc(100% - 1rem));
  }

  .landing-nav,
  .landing-nav__links,
  .landing-nav__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-nav {
    padding: 1rem;
  }

  .landing-hero {
    padding-top: 2.35rem;
  }

  .landing-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .landing-nav,
  .landing-hero__facts,
  .landing-grid--three,
  .landing-grid--two,
  .landing-faq,
  .landing-marquee,
  .landing-proof-metrics,
  .signal-stage__rail,
  .landing-flow {
    grid-template-columns: 1fr;
  }

  .landing-flow {
    gap: 0.55rem;
  }

  .landing-flow__arrow {
    transform: rotate(90deg);
    min-height: 24px;
  }

  .landing-flow-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .signal-stage__screen {
    min-height: auto;
  }

  .signal-stage__card,
  .signal-stage__card--strong {
    min-height: 0;
  }
}

.monitor-main {
  max-width: 1320px;
}

.monitor-shell {
  padding: 1.15rem;
}

.monitor-shell .dashboard-toolbar__top {
  margin-bottom: 0.45rem;
}

.monitor-hero-actions,
.monitor-category-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.monitor-category-shell {
  margin-bottom: 0.65rem;
}

.monitor-unassigned-slot {
  margin: 0.1rem 0 0.65rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px);
}

.monitor-unassigned-card {
  padding: 0.82rem 0.9rem;
}

.monitor-manual-add {
  margin: 0.1rem 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(129, 157, 197, 0.16);
  border-radius: 18px;
  background: rgba(10, 18, 33, 0.4);
}

.monitor-manual-add.is-hidden {
  display: none;
}

.monitor-manual-add__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(170px, 0.72fr) minmax(0, 1.1fr) auto;
  gap: 0.8rem;
  align-items: end;
  margin-top: 0.35rem;
}

.monitor-manual-add__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.monitor-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.monitor-category-card {
  border: 1px solid rgba(91, 162, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(14, 31, 58, 0.88), rgba(10, 24, 47, 0.84));
  color: var(--text);
  text-align: left;
  padding: 0.95rem;
  display: grid;
  gap: 0.28rem;
}

.monitor-category-card:hover {
  border-color: rgba(91, 162, 255, 0.46);
  transform: translateY(-1px);
}

.monitor-category-card.is-active {
  border-color: rgba(89, 255, 202, 0.46);
  box-shadow: inset 0 0 0 1px rgba(89, 255, 202, 0.12);
  background: linear-gradient(145deg, rgba(12, 42, 59, 0.92), rgba(10, 28, 47, 0.92));
}

.monitor-category-card__eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(155, 176, 204, 0.7);
}

.monitor-category-card strong {
  font-size: 1rem;
}

.monitor-category-card small {
  color: var(--muted);
}

.monitor-add-btn {
  border: 1px solid rgba(91, 162, 255, 0.36);
  background: linear-gradient(135deg, rgba(91, 162, 255, 0.24), rgba(25, 49, 88, 0.6));
  color: #eef6ff;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  font-weight: 700;
}

.monitor-toolbar__controls {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.monitor-shell .dashboard-workspace__head {
  padding-top: 0.15rem;
  margin-bottom: 0.8rem;
}

.monitor-tabs,
.monitor-sorts {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
}

.monitor-tab,
.monitor-sort {
  border: 1px solid transparent;
  background: transparent;
  color: rgba(212, 224, 244, 0.65);
  padding: 0.35rem 0;
  border-radius: 12px;
  box-shadow: none;
}

.monitor-tab.is-active {
  border: 1px solid rgba(91, 162, 255, 0.38);
  background: linear-gradient(180deg, rgba(17, 45, 92, 0.86), rgba(10, 30, 66, 0.68));
  color: #f4f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.monitor-tab span {
  color: rgba(155, 176, 204, 0.74);
  margin-left: 0.2rem;
}

.monitor-sort {
  color: rgba(155, 176, 204, 0.78);
}

.monitor-sort--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 162, 255, 0.34);
  background: linear-gradient(180deg, rgba(18, 44, 86, 0.9), rgba(10, 28, 58, 0.78));
  color: #eef6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.monitor-sort--cta:hover {
  border-color: rgba(91, 162, 255, 0.56);
  color: #ffffff;
}

.monitor-telegram-shell {
  padding: 1rem;
  margin-bottom: 1rem;
}


.monitor-telegram-shell.is-hidden {
  display: none;
}

.monitor-telegram-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.9fr) auto;
  gap: 0.8rem;
  align-items: end;
}

.monitor-category-setup-grid {
  grid-template-columns: minmax(0, 1.25fr) auto;
}

.monitor-telegram-field {
  display: grid;
  gap: 0.35rem;
}

.monitor-telegram-field span {
  color: rgba(155, 176, 204, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.monitor-telegram-field input {
  min-height: 42px;
}

.monitor-telegram-actions {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.monitor-list-head {
  margin: 0.1rem 0 0.7rem;
}

.monitor-list-actions {
  display: flex;
  align-items: end;
  gap: 0.8rem;
}

.monitor-status-filter {
  min-width: 180px;
}

.monitor-status-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(129, 157, 197, 0.16);
  border-radius: 12px;
  color: #e6eefc;
  background: rgba(15, 24, 42, 0.45);
}

.monitor-table__head,
.monitor-row {
  grid-template-columns: minmax(230px, 1.15fr) minmax(120px, 0.52fr) minmax(130px, 0.58fr) minmax(120px, 0.7fr) minmax(180px, 0.8fr) minmax(120px, 0.42fr) !important;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.monitor-project,
.monitor-followers,
.monitor-actions,
.monitor-sector,
.monitor-flagged-at {
  display: flex;
  align-items: center;
}

.monitor-flagged-at {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
}

.monitor-flagged-at strong {
  font-size: 0.84rem;
  color: #eef5ff;
  line-height: 1.1;
}

.monitor-flagged-at small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.1;
}

.monitor-category-select {
  min-width: 120px;
  min-height: 38px;
  padding: 0.32rem 0.52rem;
  font-size: 0.88rem;
}

.monitor-project {
  gap: 0.55rem;
  min-width: 0;
}

.monitor-project strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.1;
}

.monitor-project p {
  margin: 0.08rem 0 0;
  font-size: 0.78rem;
  line-height: 1.3;
}

.monitor-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.monitor-logo--polaris {
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 2px, transparent 4px),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.85) 49%, rgba(255, 255, 255, 0.85) 51%, transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(255, 255, 255, 0.85) 49%, rgba(255, 255, 255, 0.85) 51%, transparent 52%),
    linear-gradient(180deg, #02060d, #111827);
  color: transparent;
}

.monitor-logo--squaretower {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(180deg, #02060d, #111827);
}

.monitor-logo--jpeg {
  background: radial-gradient(circle at 50% 50%, #f8d652 0 35%, #0b0f18 36% 100%);
  color: #0b0f18;
}

.monitor-logo--dream {
  background: linear-gradient(135deg, #94b9e8, #5c8ccf);
}

.monitor-sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.35rem 0.68rem;
  font-size: 0.92rem;
  color: #f4f8ff;
  background: rgba(18, 29, 52, 0.8);
}

.monitor-sector-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.monitor-sector-pill--defi { color: #8fa1ff; }
.monitor-sector-pill--rwa { color: #45f0c0; }
.monitor-sector-pill--social { color: #f7af2d; }
.monitor-sector-pill--trading { color: #43d0ff; }

.monitor-avatar-stack {
  display: flex;
  align-items: center;
}

.monitor-avatar {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(5, 12, 26, 0.95);
  color: #f4f8ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.monitor-avatar:first-child {
  margin-left: 0;
}

.monitor-avatar--rose { background: linear-gradient(135deg, #fc636b, #9b2f56); }
.monitor-avatar--ink { background: linear-gradient(135deg, #04060d, #232b3f); }
.monitor-avatar--lime { background: linear-gradient(135deg, #a3ff86, #4fa36c); color: #102018; }
.monitor-avatar--gold { background: linear-gradient(135deg, #f2d01c, #a07f00); color: #1d1700; }
.monitor-avatar--bronze { background: linear-gradient(135deg, #7c572f, #3c2510); }
.monitor-avatar--tan { background: linear-gradient(135deg, #a27745, #5d3d1e); }
.monitor-avatar--blue { background: linear-gradient(135deg, #233bd6, #a6b5ff); }
.monitor-avatar--cream { background: linear-gradient(135deg, #f4f1dc, #c7bb98); color: #1d1b15; }
.monitor-avatar--mono { background: linear-gradient(135deg, #05070d, #4a505f); }
.monitor-avatar--royal { background: linear-gradient(135deg, #1136fe, #4668ff); }
.monitor-avatar--peach { background: linear-gradient(135deg, #f5b08f, #ef7b8a); color: #301717; }

.monitor-avatar--count {
  background: rgba(30, 42, 68, 0.96);
  color: rgba(193, 209, 234, 0.84);
  border-color: rgba(5, 12, 26, 0.95);
}

.monitor-actions {
  gap: 0.3rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.monitor-actions a,
.monitor-actions button {
  min-width: 0;
  padding: 0.34rem 0.56rem;
  background: rgba(17, 28, 49, 0.72);
  color: rgba(220, 232, 250, 0.82);
  border: 1px solid rgba(91, 162, 255, 0.22);
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.1;
}

.monitor-actions button[data-send-telegram] {
  color: #53a4ff;
  border-color: rgba(83, 164, 255, 0.28);
}

.monitor-logo--image {
  object-fit: cover;
  border-radius: 13px;
}

.monitor-avatar--dynamic-0 {
  background: linear-gradient(135deg, #3d63f6, #7ea1ff);
}

.monitor-avatar--dynamic-1 {
  background: linear-gradient(135deg, #1f222a, #525a6d);
}

.monitor-avatar--dynamic-2 {
  background: linear-gradient(135deg, #58cbb5, #2d8f8c);
}

@media (max-width: 1120px) {
  .monitor-table__head,
  .monitor-row {
    grid-template-columns: minmax(210px, 1fr) 120px 120px 120px 150px 110px !important;
  }

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

  .monitor-unassigned-slot {
    grid-template-columns: minmax(220px, 1fr);
  }

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

  .followers-feed-table__head,
    .followers-feed-row {
      grid-template-columns: 140px 96px minmax(190px, 1fr) 74px 74px 74px 84px 94px 114px;
    }
  }

  @media (max-width: 820px) {
    .monitor-category-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

@media (max-width: 860px) {
  .monitor-toolbar__controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .monitor-hero-actions,
  .monitor-category-actions {
    align-items: flex-start;
  }

  .monitor-telegram-grid {
    grid-template-columns: 1fr;
  }

  .monitor-category-setup-grid {
    grid-template-columns: 1fr;
  }

  .monitor-manual-add__grid {
    grid-template-columns: 1fr;
  }

  .monitor-row {
    grid-template-columns: 1fr !important;
  }

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

  .followers-feed-table__head {
    display: none;
  }

    .followers-feed-row {
      grid-template-columns: 1fr;
    }
  }

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

  .monitor-telegram-grid {
    grid-template-columns: 1fr 1fr;
  }

  .monitor-telegram-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .monitor-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .monitor-unassigned-slot {
    grid-template-columns: 1fr;
  }

}

/* Unified mobile hardening across dashboard pages */
@media (max-width: 900px) {
  .content-wrap {
    min-width: 0;
  }

  .page-main {
    padding: 0.75rem !important;
    gap: 0.65rem;
  }

  .card {
    border-radius: 14px;
    padding: 0.75rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .section-head .pill {
    align-self: flex-start;
  }

  input,
  select,
  button,
  a.button-link,
  .btn {
    min-height: 42px;
  }

  .dashboard-bulkbar,
  .monitor-list-actions,
  .email-follow-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .dashboard-bulkbar button,
  .dashboard-bulkbar a,
  .email-follow-actions button,
  .email-follow-actions a.button-link {
    min-width: 0;
    flex: 1 1 calc(50% - 0.3rem);
  }

  .monitor-status-filter {
    min-width: 0;
    width: 100%;
  }

  .monitor-status-filter select {
    width: 100%;
  }

  .monitor-hero-actions,
  .monitor-category-actions {
    width: 100%;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .monitor-hero-actions .monitor-sort,
  .monitor-category-actions .monitor-sort {
    width: 100%;
    justify-content: center;
  }

  .followers-feed-table,
  .dashboard-account-table,
  .monitor-table,
  .internal-tracker-table,
  .email-tracker-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .followers-feed-pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .followers-feed-head-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .followers-feed-head-filter {
    min-width: 0;
    width: 100%;
  }

  .reports-overview-grid {
    grid-template-columns: 1fr !important;
    gap: 0.65rem;
  }

  .report-browser {
    min-height: 0;
  }

  .report-pagination {
    justify-content: flex-start;
  }

  .report-detail-card--selected .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-mover-link__body .muted {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .email-project-tools {
    grid-template-columns: 1fr;
  }

  .email-copy-block__body {
    white-space: pre-wrap;
    word-break: break-word;
  }

  .check-lookup-row {
    flex-direction: column;
    align-items: stretch;
  }

  .check-lookup-row button {
    width: 100%;
  }

  .home-dashboard-grid {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .mobile-nav__bar {
    padding: 0.62rem 0.72rem;
  }

  .mobile-nav__status {
    display: none;
  }

  .mobile-nav__links {
    padding: 0.5rem 0.6rem 0.62rem;
    gap: 0.38rem;
  }

  .mobile-nav__link {
    padding: 0.4rem 0.58rem;
    min-height: 34px;
    font-size: 0.76rem;
  }

  .mobile-nav__icon {
    width: 1.12rem;
    height: 1.12rem;
    font-size: 0.5rem;
  }

  .dashboard-bulkbar button,
  .dashboard-bulkbar a,
  .email-follow-actions button,
  .email-follow-actions a.button-link {
    flex: 1 1 100%;
  }

  .monitor-category-grid {
    grid-template-columns: 1fr !important;
  }

  .monitor-unassigned-slot {
    grid-template-columns: 1fr !important;
  }

  .monitor-row,
  .dashboard-account-row,
  .followers-feed-row {
    row-gap: 0.35rem;
  }

  .internal-tracker-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .internal-tracker-tabs {
    width: 100%;
  }

  .internal-tracker-tabs button {
    flex: 1 1 0;
  }

  .report-detail-card--selected .stats {
    grid-template-columns: 1fr;
  }
}

/* Final mobile lock: force top-nav layout on phones/tablets */
@media (max-width: 1024px) {
  .app-shell {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  .sidebar,
  .sidebar.sidebar--system {
    display: none !important;
    visibility: hidden;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .content-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding-left: 0 !important;
  }

  .mobile-nav {
    display: block !important;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .topbar,
  .home-topbar {
    display: none !important;
  }
}


