/* =========================================================================
   TEKNONİC SİGORTA PANELİ - TASARIM SİSTEMİ
   Palet: Kurumsal logo renkleri — derin lacivert/mavi (güven) + sıcak
   turuncu-kırmızı geçiş (enerji/aksiyon) + buz beyazı zemin
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --navy-950: #081a3a;
    --navy-900: #0d2b5e;
    --navy-800: #14417f;
    --navy-700: #1b57a3;
    --brand-blue: #1e78d6;
    --ice-50: #f6f8fc;
    --ice-100: #edf1f8;
    --ice-200: #dde4f0;
    --gold-500: #f2790c;
    --gold-400: #ff9a3d;
    --gold-100: #ffead2;
    --flame-600: #e0361e;
    --flame-100: #fce6e1;
    --ink-900: #0f1720;
    --ink-600: #4a5866;
    --ink-400: #8593a1;
    --green-600: #2e7d5b;
    --green-100: #e3f3ec;
    --red-600: #c0392b;
    --red-100: #fbe9e7;
    --amber-600: #b5750f;
    --amber-100: #fbf0dc;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-card: 0 1px 2px rgba(13,43,94,.06), 0 8px 24px rgba(13,43,94,.07);
    --shadow-pop: 0 16px 40px rgba(8,26,58,.22);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--ice-50);
    color: var(--ink-900);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--navy-950); }

/* ---------------- AUTH SAYFALARI (Giriş / Kayıt) ---------------- */
.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy-950);
}
.auth-visual {
    position: relative;
    padding: 52px 58px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(1000px 460px at 105% -8%, rgba(242,121,12,.22), transparent 60%),
        radial-gradient(700px 380px at -10% 100%, rgba(30,120,214,.22), transparent 60%),
        linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    color: var(--ice-50);
    overflow: hidden;
}
.auth-visual::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
        repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 1px, transparent 1px 64px);
    background-size: 28px 28px, auto;
    mask-image: radial-gradient(900px 600px at 15% 10%, #000 0%, transparent 75%);
    pointer-events: none;
}
.auth-visual::before {
    content: '';
    position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; border-radius: 50%;
    background: conic-gradient(from 210deg, var(--navy-900), var(--brand-blue) 35%, var(--gold-500) 65%, var(--flame-600) 85%, var(--navy-900));
    opacity: .16; filter: blur(6px); pointer-events: none;
}

.auth-visual-top, .auth-visual-mid, .auth-visual-bottom { position: relative; z-index: 1; }

.brand-mark {
    width: 42px; height: 42px; border-radius: 11px; background: #fff; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; padding: 6px;
    box-shadow: 0 6px 18px rgba(8,26,58,.35);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-mark.sm { width: 34px; height: 34px; border-radius: 9px; padding: 5px; }

.auth-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: .2px; }
.auth-quote { max-width: 440px; font-family: var(--font-display); font-size: 30px; line-height: 1.32; font-weight: 500; }
.auth-quote em { font-style: normal; background: linear-gradient(90deg, var(--gold-400), var(--flame-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.auth-meta { display: flex; gap: 32px; font-size: 12.5px; color: rgba(246,249,252,.55); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .07em; }
.auth-meta b { display: block; font-family: var(--font-display); font-size: 21px; color: var(--ice-50); font-weight: 600; text-transform: none; letter-spacing: 0; margin-bottom: 1px; }

.auth-footer-links { display: flex; flex-direction: column; gap: 16px; }
.auth-site-links { display: flex; gap: 10px; flex-wrap: wrap; }
.auth-site-links a {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 20px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: rgba(246,249,252,.85);
    font-size: 12px; font-weight: 600; transition: all .15s;
}
.auth-site-links a:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.28); color: #fff; }

.auth-legal-links { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-size: 11.5px; }
.auth-legal-links a { color: rgba(246,249,252,.45); text-decoration: none; transition: color .15s; }
.auth-legal-links a:hover { color: rgba(246,249,252,.9); text-decoration: underline; text-underline-offset: 2px; }
.auth-legal-links .dot-sep { color: rgba(246,249,252,.22); font-size: 10px; }

.auth-panel { display: flex; align-items: center; justify-content: center; padding: 48px 40px; background: var(--ice-50); }
.auth-card { width: 100%; max-width: 400px; }
.auth-card h1 { font-size: 25px; margin-bottom: 6px; }
.auth-card p.sub { color: var(--ink-400); font-size: 13.5px; margin: 0 0 26px; line-height: 1.55; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-600); margin-bottom: 6px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 11px 13px; border: 1.5px solid var(--ice-200); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 14px; background: #fff; color: var(--ink-900);
    transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(31,77,117,.12);
}
.field-hint { font-size: 12px; color: var(--ink-400); margin-top: 5px; }

.input-icon-wrap { position: relative; }
.input-icon-wrap input { padding-right: 42px; }
.input-icon-btn {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; color: var(--ink-400);
    font-size: 15px; line-height: 1; padding: 7px; border-radius: 6px; transition: all .15s;
}
.input-icon-btn:hover { background: var(--ice-100); color: var(--navy-900); }

.form-section-title {
    font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-400);
    font-weight: 700; margin: 22px 0 12px; padding-top: 18px; border-top: 1px solid var(--ice-200);
}
.form-section-title.first { margin-top: 0; padding-top: 0; border-top: none; }

.file-upload-field { position: relative; }
.file-upload-trigger {
    display: flex; align-items: center; gap: 10px; padding: 12px 14px;
    border: 1.5px dashed var(--ice-200); border-radius: var(--radius-sm); background: #fff;
    transition: all .15s; font-size: 13.5px; color: var(--ink-600);
}
.file-upload-field:hover .file-upload-trigger { border-color: var(--navy-700); background: var(--ice-50); }
.file-upload-trigger .ic { font-size: 18px; flex-shrink: 0; }
.file-upload-trigger .fname { font-weight: 600; color: var(--navy-900); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-upload-field input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--ink-400); font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--ice-200); }


.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
    border: 1.5px solid transparent; cursor: pointer; font-family: var(--font-body); transition: all .15s;
}
.btn-primary { background: var(--navy-900); color: #fff; }
.btn-primary:hover { background: var(--navy-800); }
.btn-gold { background: var(--gold-500); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-400); }
.btn-ghost { background: transparent; border-color: var(--ice-200); color: var(--ink-600); }
.btn-ghost:hover { border-color: var(--navy-700); color: var(--navy-900); }
.btn-danger { background: var(--red-600); color: #fff; }
.btn-danger:hover { background: #a5311f; }
.btn-block { width: 100%; }
.btn-sm { padding: 7px 12px; font-size: 12.5px; }

.auth-foot { margin-top: 22px; font-size: 13.5px; color: var(--ink-400); text-align: center; }
.alert { padding: 12px 14px; border-radius: var(--radius-sm); font-size: 13.5px; margin-bottom: 18px; border: 1px solid transparent; }
.alert-error { background: var(--red-100); color: var(--red-600); border-color: rgba(192,57,43,.18); }
.alert-success { background: var(--green-100); color: var(--green-600); border-color: rgba(46,125,91,.18); }
.alert-info { background: var(--amber-100); color: var(--amber-600); border-color: rgba(181,117,15,.18); }

/* ---------------- PANEL LAYOUT ---------------- */
.app-shell { display: grid; grid-template-columns: 258px 1fr; min-height: 100vh; }

.sidebar {
    background: var(--navy-950); color: rgba(246,249,252,.82); padding: 22px 16px;
    display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh;
    overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.2) transparent;
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 6px; }
.sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 6px 10px 22px; font-family: var(--font-display); font-size: 17.5px; color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 14px; }
.sidebar-company { font-size: 12px; color: rgba(246,249,252,.45); padding: 0 10px 16px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono); }

.nav-group { margin-bottom: 6px; }
.nav-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .09em; color: rgba(246,249,252,.35); padding: 14px 10px 6px; font-weight: 600; }
.nav-link {
    display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px;
    font-size: 13.8px; font-weight: 500; color: rgba(246,249,252,.75); margin-bottom: 2px;
}
.nav-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-link.active { background: rgba(242,121,12,.16); color: var(--gold-400); font-weight: 600; }
.nav-link .ic { width: 17px; text-align: center; opacity: .85; }

.sidebar-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 8px 10px; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-500); color: var(--navy-950); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.sidebar-user .u-name { font-size: 13px; font-weight: 600; color: #fff; }
.sidebar-user .u-role { font-size: 11px; color: rgba(246,249,252,.5); }

.main { padding: 28px 34px 60px; max-width: 1400px; }
.topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; flex-wrap: wrap; gap: 12px; }
.topbar h1 { font-size: 24px; }
.topbar .sub { color: var(--ink-400); font-size: 13.5px; margin-top: 4px; font-family: var(--font-body); }
.topbar-actions { display: flex; gap: 10px; align-items: center; }
.topbar-user { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--ice-200); border-radius: 14px; padding: 7px 8px 7px 8px; box-shadow: var(--shadow-card); }
.topbar-user-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.topbar-user-avatar-fallback { display: flex; align-items: center; justify-content: center; background: var(--navy-900); color: var(--gold-400); font-weight: 700; font-size: 13px; }
.topbar-user-info { line-height: 1.25; padding-right: 4px; }
.topbar-user-name { font-size: 13px; font-weight: 700; color: var(--navy-950); }
.topbar-user-role { font-size: 11px; color: var(--ink-400); }
.topbar-logout-btn {
    display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 10px;
    background: var(--red-100); color: var(--red-600); font-size: 12.5px; font-weight: 700;
    transition: all .15s; white-space: nowrap;
}
.topbar-logout-btn:hover { background: var(--red-600); color: #fff; }
.topbar-logout-btn .ic { font-size: 11px; }

@media (max-width: 720px) {
    .topbar-user-info { display: none; }
    .topbar-logout-btn span:first-child { display: none; }
}

.card { background: #fff; border: 1px solid var(--ice-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.card-pad { padding: 22px 24px; }
.card-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--ice-200); }
.card-header h3 { font-size: 16px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 26px; }
.stat-card { background: #fff; border: 1px solid var(--ice-200); border-radius: var(--radius-lg); padding: 20px 22px; box-shadow: var(--shadow-card); }
.stat-card .stat-label { font-size: 12.5px; color: var(--ink-400); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.stat-card .stat-value { font-family: var(--font-display); font-size: 30px; margin-top: 8px; color: var(--navy-950); }
.stat-card .stat-delta { font-size: 12.5px; margin-top: 6px; font-weight: 600; }
.stat-delta.up { color: var(--green-600); }
.stat-delta.down { color: var(--red-600); }

table.tbl { width: 100%; border-collapse: collapse; font-size: 13.8px; }
table.tbl th { text-align: left; padding: 12px 16px; background: var(--ice-100); color: var(--ink-600); font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; border-bottom: 1px solid var(--ice-200); }
table.tbl td { padding: 13px 16px; border-bottom: 1px solid var(--ice-100); color: var(--ink-900); }
table.tbl tr:last-child td { border-bottom: none; }
table.tbl tr:hover td { background: var(--ice-50); }

.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.badge-green { background: var(--green-100); color: var(--green-600); }
.badge-red { background: var(--red-100); color: var(--red-600); }
.badge-amber { background: var(--amber-100); color: var(--amber-600); }
.badge-navy { background: var(--navy-900); color: #fff; }
.badge-gray { background: var(--ice-200); color: var(--ink-600); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 20px; }
.form-grid .full { grid-column: 1 / -1; }

.toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.toolbar input[type=text], .toolbar select { padding: 9px 12px; border: 1.5px solid var(--ice-200); border-radius: var(--radius-sm); font-size: 13.5px; }
.toolbar .spacer { flex: 1; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-400); }
.empty-state .ic { font-size: 34px; margin-bottom: 10px; }

.pill-actions { display: flex; gap: 6px; }
.icon-btn { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; border: 1px solid var(--ice-200); background: #fff; color: var(--ink-600); cursor: pointer; }
.icon-btn:hover { background: var(--ice-100); color: var(--navy-900); }

@media (max-width: 1100px) {
    .auth-quote { font-size: 25px; max-width: 100%; }
    .auth-meta { gap: 22px; }
}

@media (max-width: 900px) {
    .app-shell { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .auth-shell { grid-template-columns: 1fr; min-height: auto; }
    .auth-visual { padding: 22px 24px; }
    .auth-visual::before { width: 260px; height: 260px; top: -80px; right: -80px; }
    .auth-quote, .auth-meta, .auth-footer-links { display: none; }
    .auth-panel { padding: 32px 22px 48px; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .auth-card h1 { font-size: 22px; }
    .auth-panel { padding: 26px 16px 40px; }
}

/* ---------------- LANDING (TANITIM) SAYFASI ---------------- */
.lp-nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 6%; position: sticky; top: 0; background: rgba(246,248,252,.9); backdrop-filter: blur(8px); z-index: 20; border-bottom: 1px solid var(--ice-200); }
.lp-nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy-950); }
.lp-nav-actions { display: flex; gap: 10px; }

.lp-hero { position: relative; padding: 90px 6% 110px; text-align: center; overflow: hidden;
    background: radial-gradient(900px 420px at 50% -10%, rgba(30,120,214,.10), transparent 60%), var(--ice-50); }
.lp-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--ice-200); padding: 7px 16px; border-radius: 30px; font-size: 12.5px; font-weight: 600; color: var(--navy-800); margin-bottom: 24px; box-shadow: var(--shadow-card); }
.lp-hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }
.lp-hero h1 { font-size: 48px; line-height: 1.18; max-width: 780px; margin: 0 auto 20px; }
.lp-hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--navy-800), var(--brand-blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-hero p.lead { max-width: 560px; margin: 0 auto 34px; color: var(--ink-600); font-size: 16.5px; line-height: 1.6; }
.lp-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.lp-hero-actions .btn { padding: 13px 26px; font-size: 14.5px; }
.lp-hero-stats { display: flex; gap: 44px; justify-content: center; flex-wrap: wrap; }
.lp-hero-stats div { text-align: center; }
.lp-hero-stats b { display: block; font-family: var(--font-display); font-size: 26px; color: var(--navy-950); }
.lp-hero-stats span { font-size: 12.5px; color: var(--ink-400); text-transform: uppercase; letter-spacing: .05em; }

.lp-section { padding: 70px 6%; max-width: 1180px; margin: 0 auto; }
.lp-section-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.lp-section-head .eyebrow { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-500); margin-bottom: 10px; }
.lp-section-head h2 { font-size: 30px; margin-bottom: 12px; }
.lp-section-head p { color: var(--ink-600); font-size: 15px; line-height: 1.6; }

.lp-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.lp-feature-card { background: #fff; border: 1px solid var(--ice-200); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card); }
.lp-feature-card .ic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; background: linear-gradient(135deg, var(--navy-900), var(--brand-blue)); color: #fff; }
.lp-feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.lp-feature-card p { font-size: 13.5px; color: var(--ink-600); line-height: 1.6; margin: 0; }

.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.lp-step { position: relative; padding-top: 14px; }
.lp-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--navy-950); color: var(--gold-400); font-family: var(--font-display); font-weight: 700; margin-bottom: 14px; }
.lp-step h4 { font-size: 15px; margin-bottom: 6px; }
.lp-step p { font-size: 13.5px; color: var(--ink-600); margin: 0; line-height: 1.6; }

.lp-cta { margin: 30px 6% 0; border-radius: 24px; padding: 60px 6%; text-align: center;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: #fff; position: relative; overflow: hidden; }
.lp-cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 340px; height: 340px; border-radius: 50%;
    background: conic-gradient(from 210deg, var(--navy-900), var(--brand-blue) 35%, var(--gold-500) 65%, var(--flame-600) 85%, var(--navy-900)); opacity: .18; filter: blur(4px); }
.lp-cta h2 { color: #fff; font-size: 28px; margin-bottom: 12px; position: relative; }
.lp-cta p { color: rgba(246,249,252,.75); max-width: 480px; margin: 0 auto 26px; position: relative; font-size: 14.5px; }
.lp-cta .btn { position: relative; }

.lp-footer { padding: 40px 6%; text-align: center; color: var(--ink-400); font-size: 13px; border-top: 1px solid var(--ice-200); margin-top: 40px; }

@media (max-width: 640px) {
    .lp-hero h1 { font-size: 32px; }
    .lp-section { padding: 50px 6%; }
}

/* ---------------- RAPOR / ANALİZ GRAFİKLERİ ---------------- */
.chart-card { background: #fff; border: 1px solid var(--ice-200); border-radius: var(--radius-lg); padding: 22px 24px; box-shadow: var(--shadow-card); }
.chart-card h3 { font-size: 15px; margin-bottom: 4px; }
.chart-card .chart-sub { font-size: 12.5px; color: var(--ink-400); margin-bottom: 20px; }

.bar-chart { display: flex; align-items: flex-end; gap: 10px; height: 180px; padding-top: 10px; }
.bar-chart .bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; min-width: 0; }
.bar-chart .bar-val { font-size: 11px; color: var(--ink-600); font-weight: 700; margin-bottom: 4px; white-space: nowrap; }
.bar-chart .bar-fill { width: 100%; max-width: 34px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--brand-blue), var(--navy-900)); min-height: 3px; transition: height .3s; }
.bar-chart .bar-fill.gold { background: linear-gradient(180deg, var(--gold-400), var(--gold-500)); }
.bar-chart .bar-label { font-size: 10.5px; color: var(--ink-400); margin-top: 8px; text-align: center; }

.hbar-list { display: flex; flex-direction: column; gap: 12px; }
.hbar-row { display: grid; grid-template-columns: 120px 1fr 60px; gap: 10px; align-items: center; font-size: 12.5px; }
.hbar-row .hbar-label { color: var(--ink-600); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hbar-row .hbar-track { background: var(--ice-100); border-radius: 6px; height: 14px; overflow: hidden; }
.hbar-row .hbar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--navy-800), var(--brand-blue)); }
.hbar-row .hbar-val { text-align: right; font-weight: 700; color: var(--navy-950); }

.donut-legend { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; }
.donut-legend .leg-item { display: flex; align-items: center; gap: 8px; }
.donut-legend .leg-dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.donut-legend .leg-label { flex: 1; color: var(--ink-600); }
.donut-legend .leg-val { font-weight: 700; color: var(--navy-950); }

.report-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-bottom: 20px; }
