/* ══════════════════════════════════════════════════
   Business Legacy Scorecard — Shared Styles
   ══════════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── Design Tokens ─── */
:root {
    --navy:      #1e3a5f;
    --navy-mid:  #2c5282;
    --amber:     #d97706;
    --amber-lt:  #f59e0b;
    --slate-900: #2c3e50;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-50:  #f8fafc;
    --green:     #10b981;
    --white:     #ffffff;
}

/* ─── Base ─── */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--slate-900);
}

/* ─── Header ─── */
.header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    top: 0;
    z-index: 100;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-logo { height: auto; width: 50%; display: block; }

/* ─── Mobile ─── */
@media (max-width: 768px) {
    .header-logo { width: 75%; }
}
