/* ============================================================
   Control Tower — TEMA ÚNICO (look ReloadedToken).
   Una sola fuente de verdad para colores/tipografía. Incluido en
   TODAS las páginas (<link href="/static/theme.css">). Los templates
   ya NO definen :root de color propio.
   Paleta calcada de reloadedtoken_site/styles.css.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* superficies */
  --bg:        #0b0d12;
  --bg-soft:   #12151d;
  --panel:     #161a24;
  --panel2:    #12151d;
  --card:      #161a24;
  --line:      #232838;
  --border:    #232838;
  /* texto */
  --text:  #e8ebf2;
  --txt:   #e8ebf2;   /* alias usado por templates de Cash Control */
  --muted: #97a0b5;
  --dim:   #6b7280;
  /* acentos ReloadedToken: violeta -> azul */
  --accent:  #9b7bff;   /* violeta (primario) */
  --accent2: #6c8cff;   /* azul */
  /* números (estándar de Gabriel) y extras */
  --green: #34d399;
  --red:   #fb7185;
  --teal:  #5dcaa5;
  --amber: #fbbf24;
  --radius: 16px;
}

body{
  font-family:'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing:antialiased;
}

/* Navegaciones internas legadas (las reemplaza la barra unificada _nav.html). */
.navgroups{ display:none !important; }

/* Barra de sub-pestañas — IDÉNTICA en todos los Controls (estandarización). */
.tabs{ display:flex; gap:7px; margin-bottom:14px; flex-wrap:wrap; }
.tab{ padding:8px 15px; border-radius:9px; cursor:pointer; font-weight:600; font-size:13.5px;
      color:var(--muted); background:var(--panel); border:1px solid var(--line); transition:.15s;
      text-decoration:none; display:inline-block; }
.tab:hover{ color:var(--text); }
.tab.active{ color:#fff; background:linear-gradient(135deg,var(--accent),var(--accent2));
             border-color:transparent; box-shadow:0 4px 18px rgba(108,140,255,.35); }
/* Contenedor de la sub-barra para las páginas que la incluyen como partial. */
.subnav-wrap{ padding:14px 24px 0; }
