/* ══════════════════════════════════════════════════════════
   THEME: Linear Mono (light)
   ──────────────────────────────────────────────────────────
   Activated by `body[data-theme="linear-mono"]` in base.html.
   Overrides the semantic tokens defined in design-tokens.css.

   Palette source: approved preview-a1-v3.html
   "theme-linear" block, lines 26-60. Linear-inspired
   minimalist surface palette + indigo brand accent.
   ══════════════════════════════════════════════════════════ */

body[data-theme="linear-mono"] {
    /* === SURFACES === */
    --bg-page:               #fafafa;
    --bg-card:               #ffffff;
    --bg-subtle:             #f4f4f5;
    --bg-elevated:           #ffffff;
    --bg-tinted-blue:        #f0f1fe;          /* accent-soft */
    --bg-tinted-warning:     #fef3c7;
    --bg-tinted-success:     #d1fae5;
    --bg-tinted-danger:      #fee2e2;

    /* === BORDERS === */
    --border-strong:         #d4d4d8;
    --border-default:        #e4e4e7;
    --border-subtle:         #f4f4f5;

    /* === TEXT === */
    --text-primary:          #18181b;          /* ink-2 */
    --text-secondary:        #52525b;          /* muted */
    --text-tertiary:         #a1a1aa;          /* faint */
    --text-inverse:          #ffffff;
    --text-link:             #5e6ad2;

    /* === ACCENT (Linear indigo) === */
    --accent-primary:                 #5e6ad2;
    --accent-primary-hover:           #4c52ad;
    --accent-primary-soft:            #f0f1fe;
    --accent-primary-soft-strong:     #e0e3fc;
    --accent-primary-border:          #c7cbf5;
    --accent-primary-text:            #ffffff;

    /* === STATUS === */
    --status-success:        #16a34a;
    --status-success-soft:   #d1fae5;
    --status-success-text:   #166534;
    --status-warning:        #d97706;
    --status-warning-soft:   #fef3c7;
    --status-warning-text:   #b45309;
    --status-danger:         #dc2626;
    --status-danger-soft:    #fee2e2;
    --status-danger-text:    #b91c1c;
    --status-info:           #06b6d4;
    --status-info-soft:      #cffafe;
    --status-info-text:      #0891b2;

    /* === ROLES (badges) === */
    --role-sound:            #5e6ad2;          /* unified to brand accent */
    --role-light:            #d97706;
    --role-video:            #7c3aed;
    --role-stage:            #ea580c;
    --role-rigging:          #52525b;
    --role-logistics:        #06b6d4;
    --role-consumables:      #71717a;
    --role-subrent:          #a16207;
}

/* ----------------------------------------------------------
   Page-level surface override.
   Default layout uses body background from --primary-color
   chain and other places that don't go via tokens. Force the
   theme bg on common surfaces.
   ---------------------------------------------------------- */
body[data-theme="linear-mono"] {
    background-color: var(--bg-page);
    color: var(--text-primary);
}

/* ----------------------------------------------------------
   Typography refinements (subtle — only where needed)
   ---------------------------------------------------------- */
body[data-theme="linear-mono"] {
    font-feature-settings: "cv11", "ss01", "ss03";  /* Inter cleaner numerals */
}
