/* ================================================================
   LYKOS HUB — Internal Agency Management Styles
   Variáveis: --purple-900..400, --orange-500, --text-*, --r-*, --t
================================================================ */

/* ── Tab Bar ───────────────────────────────────────────────── */
.lykos-tabs {
  display: flex;
  gap: 4px;
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  padding: 5px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lykos-tab {
  flex: 1;
  min-width: 110px;
  padding: 8px 14px;
  border: none;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Sora', system-ui, sans-serif;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lykos-tab:hover {
  background: rgba(255, 102, 32, 0.08);
  color: var(--text-primary);
}

.lykos-tab.active {
  background: var(--orange-500);
  color: #fff;
  font-weight: 600;
}

/* ── Panels ────────────────────────────────────────────────── */
.lykos-panel { display: none; }
.lykos-panel.active { display: block; }

.lykos-panel-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lykos-panel-toolbar .spacer { flex: 1; }

/* ── Shared helpers ────────────────────────────────────────── */
.lhub-empty {
  text-align: center;
  padding: 40px 24px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  background: var(--purple-700);
  border: 1px dashed var(--purple-400);
  border-radius: var(--r-md);
}

.lhub-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(74, 40, 112, 0.5);
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.lhub-icon-btn {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t);
}

.lhub-icon-btn:hover { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); }
.lhub-icon-btn.danger:hover { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

/* ================================================================
   ATIVIDADES INTERNAS — Kanban
================================================================ */
#lykos-act-kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lhub-act-col {
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  padding: 12px;
  min-height: 300px;
}

.lhub-act-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--purple-500);
}

.lhub-act-col-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lhub-act-col-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex: 1;
}

.lhub-act-col-count {
  font-size: 11px;
  font-weight: 700;
  background: var(--purple-600);
  color: var(--text-muted);
  padding: 1px 7px;
  border-radius: 20px;
}

.lhub-act-col-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lhub-act-card {
  background: var(--purple-600);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  transition: border-color var(--t);
}

.lhub-act-card:hover { border-color: var(--purple-300); }
.lhub-act-card.done  { opacity: 0.6; }
.lhub-act-card.done .lhub-act-title { text-decoration: line-through; }

.lhub-act-card-top {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}

.lhub-act-title {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.lhub-act-btns {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--t);
}

.lhub-act-card:hover .lhub-act-btns { opacity: 1; }

.lhub-act-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.lhub-act-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.lhub-prio-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
}

.lhub-prio-badge.prio-alta  { background: rgba(239, 68, 68, 0.15);  color: #ef4444; }
.lhub-prio-badge.prio-media { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.lhub-prio-badge.prio-baixa { background: rgba(34, 197, 94, 0.15);  color: #22c55e; }

.lhub-act-deadline {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 5px;
  background: var(--purple-500);
  color: var(--text-muted);
}

.lhub-act-deadline.overdue { background: rgba(239, 68, 68, 0.15);  color: #ef4444; }
.lhub-act-deadline.today   { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.lhub-act-deadline.soon    { background: rgba(245, 158, 11, 0.10); color: #f59e0b; }

.lhub-done-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.lhub-act-indicator {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}

.lhub-act-empty {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  padding: 20px 0;
  border: 1px dashed var(--purple-400);
  border-radius: var(--r-sm);
}

/* Badge "Interno" na aba Atividades principal */
.act-internal-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(255, 102, 32, 0.12);
  color: var(--orange-500);
}

/* ================================================================
   DOCUMENTAÇÃO
================================================================ */
.lhub-docs-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: start;
}

.lhub-agency-card {
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  padding: 20px;
  position: sticky;
  top: 0;
}

.lhub-agency-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.lhub-copy-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lhub-copy-row .form-input { flex: 1; }

.lhub-copy-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--purple-400);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--t);
}

.lhub-copy-btn:hover { border-color: var(--orange-500); color: var(--orange-500); }

/* Document card */
.lhub-doc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  margin-bottom: 8px;
  transition: border-color var(--t);
}

.lhub-doc-card:hover { border-color: var(--purple-300); }

.lhub-doc-ext {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  min-width: 34px;
  text-align: center;
  background: var(--purple-600);
  border-radius: 6px;
  padding: 5px 4px;
  flex-shrink: 0;
}

.lhub-doc-info { flex: 1; min-width: 0; }

.lhub-doc-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lhub-doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-muted);
}

.lhub-doc-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--t);
}

.lhub-doc-card:hover .lhub-doc-actions { opacity: 1; }

/* ================================================================
   FINANCEIRO
================================================================ */
.fin-summary-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.fin-summary-card {
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  padding: 16px 18px;
  border-left-width: 3px;
}

.fin-summary-card.entrada { border-left-color: #22c55e; }
.fin-summary-card.saida   { border-left-color: #ef4444; }
.fin-summary-card.saldo   { border-left-color: #3b82f6; }
.fin-summary-card.saldo.negative { border-left-color: #ef4444; }
.fin-summary-card.projecao { border-left-color: var(--orange-500); }

.fin-card-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.fin-card-val {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

/* Layout 2-col: lançamentos | DRE */
.fin-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  align-items: start;
}

.fin-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--purple-500);
}

/* Transaction list */
.fin-tx-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-sm);
  margin-bottom: 6px;
  transition: border-color var(--t);
}

.fin-tx-row:hover { border-color: var(--purple-300); }

.fin-tx-indicator {
  width: 4px;
  height: 36px;
  border-radius: 4px;
  flex-shrink: 0;
}

.fin-tx-indicator.entrada { background: #22c55e; }
.fin-tx-indicator.saida   { background: #ef4444; }

.fin-tx-info { flex: 1; min-width: 0; }

.fin-tx-desc {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fin-tx-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.fin-recur-badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.fin-tx-amount { font-size: 14px; font-weight: 700; flex-shrink: 0; }
.fin-tx-amount.entrada { color: #22c55e; }
.fin-tx-amount.saida   { color: #ef4444; }

.fin-tx-btns {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--t);
}

.fin-tx-row:hover .fin-tx-btns { opacity: 1; }

/* DRE */
.fin-dre-wrap {
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  padding: 16px;
}

.dre-group-header {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 10px 0 6px;
}

.dre-group-header:first-child { margin-top: 0; }

.dre-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 6px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--text-primary);
}

.dre-label.indent { padding-left: 14px; font-size: 12px; color: var(--text-secondary); }

.dre-row.subtotal {
  background: var(--purple-600);
  font-weight: 600;
  border-radius: var(--r-sm);
}

.dre-row.result {
  margin-top: 4px;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
}

.dre-row.result.green { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.dre-row.result.red   { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.dre-row.red  { color: #ef4444; }
.dre-val { font-weight: 600; font-variant-numeric: tabular-nums; }
.dre-divider { height: 1px; background: var(--purple-400); margin: 8px 0; }

.dre-margem {
  text-align: right;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* Cashflow */
.fin-cf-wrap {
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  padding: 20px;
  overflow-x: auto;
}

.cf-chart {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  min-height: 140px;
  padding-bottom: 4px;
  justify-content: space-around;
}

.cf-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 62px;
}

.cf-col.current .cf-lbl { color: var(--orange-500); font-weight: 700; }
.cf-col.future  { opacity: 0.65; }

.cf-val {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: center;
}

.cf-bar-wrap {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 90px;
}

.cf-bar {
  width: 65%;
  min-height: 4px;
  border-radius: 4px 4px 0 0;
  border: 2px solid transparent;
  transition: height var(--t);
}

.cf-col.future .cf-bar { border-style: dashed !important; }

.cf-bar.pos { background: rgba(34, 197, 94, 0.35); border-color: #22c55e; }
.cf-bar.neg { background: rgba(239, 68, 68, 0.35); border-color: #ef4444; }

.cf-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.cf-current-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}

.cf-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--purple-500);
  font-size: 11.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.cf-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}

.cf-dot.pos { background: rgba(34, 197, 94, 0.35); border: 1px solid #22c55e; }
.cf-dot.neg { background: rgba(239, 68, 68, 0.35); border: 1px solid #ef4444; }
.cf-legend-note { margin-left: auto; font-style: italic; }

/* ================================================================
   PLAYBOOKS
================================================================ */
.lhub-playbooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.lhub-pb-card {
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  padding: 16px;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.lhub-pb-card:hover {
  border-color: var(--purple-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.lhub-pb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.lhub-pb-acts {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--t);
}

.lhub-pb-card:hover .lhub-pb-acts { opacity: 1; }

.lhub-pb-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.lhub-pb-preview {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.lhub-pb-progress-wrap {
  height: 4px;
  background: var(--purple-500);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}

.lhub-pb-progress-bar {
  height: 100%;
  background: var(--orange-500);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.lhub-pb-progress-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.lhub-pb-footer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--purple-500);
}

/* Playbook card — attached files preview */
.lhub-pb-files-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 8px;
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--text-muted);
}

.lhub-pb-file-link {
  color: var(--purple-200);
  text-decoration: none;
  font-size: 11px;
  padding: 1px 6px;
  background: var(--purple-600);
  border-radius: 4px;
  border: 1px solid var(--purple-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  display: inline-block;
  transition: color var(--t), border-color var(--t);
}

.lhub-pb-file-link:hover {
  color: var(--orange-400);
  border-color: var(--orange-500);
}

/* Playbook modal steps */
.pb-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pb-step-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--orange-500);
  cursor: pointer;
}

.pb-step-txt { flex: 1; }

/* ================================================================
   FERRAMENTAS & ASSINATURAS
================================================================ */
.lhub-tools-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
}

.lhub-tools-table th {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0 12px 8px;
  text-align: left;
}

.lhub-tools-table td {
  padding: 11px 12px;
  font-size: 13px;
  color: var(--text-primary);
  background: var(--purple-700);
  border-top: 1px solid var(--purple-500);
  border-bottom: 1px solid var(--purple-500);
  transition: border-color var(--t);
}

.lhub-tools-table td:first-child {
  border-left: 1px solid var(--purple-500);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}

.lhub-tools-table td:last-child {
  border-right: 1px solid var(--purple-500);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.lhub-tools-table tr:hover td {
  border-color: var(--purple-300);
  background: var(--purple-600);
}

.tool-name-cell { display: flex; flex-direction: column; gap: 2px; }

.tool-link-name {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t);
}
.tool-link-name:hover { color: var(--orange-400); }

.tool-note { font-size: 11.5px; color: var(--text-muted); }
.tool-cost-cell { white-space: nowrap; font-weight: 600; }
.tool-cycle { font-size: 11px; color: var(--text-muted); margin-left: 2px; font-weight: 400; }

.tool-renew { font-size: 12.5px; color: var(--text-secondary); }
.tool-renew.overdue { color: #ef4444; font-weight: 600; }
.tool-renew.soon    { color: #f59e0b; font-weight: 600; }

.tool-acts {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--t);
}

.lhub-tools-table tr:hover .tool-acts { opacity: 1; }

.lhub-tools-total {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-500);
  background: rgba(255, 102, 32, 0.08);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 102, 32, 0.2);
}

/* ================================================================
   LINKS
================================================================ */
.lhub-links-group { margin-bottom: 24px; }

.lhub-links-group-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--purple-500);
}

.lhub-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lhub-link-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--purple-700);
  border: 1px solid var(--purple-500);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  min-width: 170px;
  max-width: 280px;
}

.lhub-link-card:hover {
  border-color: var(--purple-300);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.lhub-link-favicon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lhub-link-favicon img { width: 16px; height: 16px; object-fit: contain; }

.lhub-link-body { flex: 1; min-width: 0; }

.lhub-link-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}

.lhub-link-desc {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.lhub-link-acts {
  display: flex;
  gap: 3px;
  opacity: 0;
  transition: opacity var(--t);
}

.lhub-link-card:hover .lhub-link-acts { opacity: 1; }

/* ================================================================
   MODALS
================================================================ */
.modal-lhub-playbook { width: min(680px, 95vw); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1200px) {
  .fin-summary-cards { grid-template-columns: repeat(2, 1fr); }
  .fin-layout        { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  #lykos-act-kanban  { grid-template-columns: repeat(2, 1fr); }
  .lhub-docs-layout  { grid-template-columns: 1fr; }
  .lhub-agency-card  { position: static; }
}

@media (max-width: 720px) {
  .lykos-tabs        { flex-direction: column; }
  #lykos-act-kanban  { grid-template-columns: 1fr; }
  .fin-summary-cards { grid-template-columns: 1fr 1fr; }
  .lhub-playbooks-grid { grid-template-columns: 1fr; }
  .lhub-links-row    { flex-direction: column; }
  .lhub-link-card    { max-width: 100%; }
}
