/* ============================================================
   BlueTeam Defense Console — auth-light.css
   Cohesive LIGHT theme for the authentication screen.
   Unified white + blue: one continuous canvas, a subtle blue
   brand panel that blends into the surface (no hard split).
   Version: v10.0 · Date: 2026-06-18
   Palette: clean white surfaces + soft sky/azure blue + deep ink text
   NOTE: reuses the same class names as auth-dark.css so the login
   markup is unchanged; only the visual layer differs.
   ============================================================ */

:root {
    /* Backgrounds — continuous light canvas */
    --bg:          #eef3fb;
    --bg-deep:     #e4ecf8;
    --surface:     #ffffff;
    --surface-2:   #f5f8fd;
    --surface-3:   #eaf1fb;

    /* Borders */
    --border:      rgba(37, 99, 235, 0.16);
    --border-strong: rgba(37, 99, 235, 0.40);
    --border-soft: rgba(15, 23, 42, 0.07);

    /* Brand — blue */
    --primary:     #2563eb;
    --primary-2:   #1d4ed8;
    --primary-soft: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.25);
    --accent:      #0ea5e9;
    --accent-2:    #0284c7;
    --accent-glow: rgba(14, 165, 233, 0.28);

    /* Semantic */
    --cyan:        #0891b2;
    --green:       #16a34a;
    --amber:       #d97706;
    --danger:      #dc2626;
    --danger-bg:   rgba(220, 38, 38, 0.07);

    /* Text — deep ink on light */
    --text:        #0f1e3d;
    --text-muted:  #51607a;
    --text-dim:    #8694ac;

    /* Type */
    --mono: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    --sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Radii & shadows — soft, light-mode appropriate */
    --radius:      10px;
    --radius-lg:   16px;
    --radius-xl:   22px;
    --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.06), 0 24px 60px -28px rgba(37, 99, 235, 0.30);
    --shadow-deep: 0 18px 50px -22px rgba(30, 58, 138, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    font-family: var(--sans);
    /* One unified white→blue canvas across the whole screen so the two
       panels read as a single design rather than clashing halves. */
    background:
        radial-gradient(1200px 700px at 78% -8%, rgba(14, 165, 233, 0.14), transparent 60%),
        radial-gradient(1000px 760px at -6% 108%, rgba(37, 99, 235, 0.12), transparent 58%),
        linear-gradient(160deg, #ffffff 0%, #eef3fb 46%, #e3ecfa 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: color 0.15s; }
a:hover { text-decoration: underline; }

/* ============================================================
   DEKORIMI I SFONDIT: grid + orbet + scanline (soft, light)
   ============================================================ */
.bt-grid-bg {
    position: fixed; inset: 0; z-index: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
    pointer-events: none;
}
.bt-orb {
    position: fixed; border-radius: 50%;
    filter: blur(130px); pointer-events: none;
    opacity: 0.40; z-index: 0;
    animation: bt-orb-drift 18s ease-in-out infinite alternate;
}
.bt-orb.a {
    top: -200px; left: -160px;
    width: 520px; height: 520px;
    background: rgba(59, 130, 246, 0.55);
}
.bt-orb.b {
    bottom: -220px; right: -180px;
    width: 580px; height: 580px;
    background: rgba(14, 165, 233, 0.45);
    animation-delay: -9s;
}
@keyframes bt-orb-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -20px) scale(1.08); }
}
.bt-scanline {
    /* Removed in light mode — overlay scanlines look like artefacts on white. */
    display: none;
}

/* ============================================================
   STATUS STRIP (krye e faqes)
   ============================================================ */
.bt-status-strip {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.bt-strip-left, .bt-strip-right {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap;
}
.bt-strip-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(22, 163, 74, 0.6);
    animation: bt-blink 2s ease-in-out infinite;
}
.bt-strip-dot.down {
    background: var(--danger);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}
@keyframes bt-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}
.bt-strip-text { color: var(--text); font-weight: 600; }
.bt-strip-sep { color: var(--text-dim); }
.bt-strip-meta { color: var(--text-muted); }

@media (max-width: 640px) {
    .bt-status-strip { font-size: 10px; padding: 8px 14px; }
    .bt-strip-right .bt-strip-meta:nth-child(n+4) { display: none; }
}

/* ============================================================
   LAYOUT: Split screen 60/40 — but visually unified
   The visual panel uses a translucent blue wash that emerges
   from the shared canvas; no opaque half, no hard seam.
   ============================================================ */
.auth-shell {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: calc(100vh - 42px);
}
.auth-visual {
    padding: 56px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Soft blue brand wash that fades toward the form side, so the
       transition between panels is a gradient, not an edge. */
    background:
        radial-gradient(ellipse at 18% 8%, rgba(37, 99, 235, 0.10), transparent 55%),
        radial-gradient(ellipse at 70% 95%, rgba(14, 165, 233, 0.10), transparent 55%),
        linear-gradient(105deg, rgba(37, 99, 235, 0.085) 0%, rgba(37, 99, 235, 0.03) 60%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    overflow: hidden;
}
.auth-form-side {
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Lighter, almost-white wash so the card sits on a clean surface
       that still belongs to the same blue family. */
    background: linear-gradient(255deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    position: relative;
}

/* ============================================================
   BRAND (në panelin vizual)
   ============================================================ */
.bt-brand {
    display: flex; align-items: center; gap: 14px;
    position: relative; z-index: 2;
}
.bt-brand-icon {
    width: 54px; height: 54px;
    background:
        conic-gradient(from 140deg, var(--primary), var(--accent), var(--primary));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    position: relative;
}
.bt-brand-icon::after {
    content: ''; position: absolute; inset: 2px;
    background: var(--surface);
    border-radius: 12px;
    z-index: 0;
}
.bt-brand-icon svg {
    width: 28px; height: 28px; color: var(--primary);
    position: relative; z-index: 1;
}
.bt-brand-text h1 {
    font-size: 18px; font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}
.bt-brand-text .codename {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ============================================================
   HERO
   ============================================================ */
.bt-hero {
    margin: 60px 0 36px;
    max-width: 620px;
    position: relative; z-index: 2;
}
.bt-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid rgba(22, 163, 74, 0.30);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    color: #15803d;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.bt-pill .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(22, 163, 74, 0.6);
    animation: bt-pulse 2s infinite;
}
@keyframes bt-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.35; }
}

.bt-hero h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1d4ed8 10%, #0ea5e9 95%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.bt-hero p {
    font-size: 15.5px;
    line-height: 1.72;
    color: var(--text-muted);
    max-width: 580px;
}

/* Feature grid */
.bt-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
    max-width: 620px;
}
.bt-feat {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px -12px rgba(30, 58, 138, 0.30);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.bt-feat:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -14px rgba(37, 99, 235, 0.35);
}
.bt-feat-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(14, 165, 233, 0.16));
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    margin-bottom: 11px;
}
.bt-feat-icon svg { width: 17px; height: 17px; }
.bt-feat h4 {
    font-size: 13px; font-weight: 600; color: var(--text);
    margin-bottom: 4px;
}
.bt-feat p {
    font-size: 12px; color: var(--text-muted); line-height: 1.55;
}

/* META badges */
.bt-meta {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 36px;
    font-family: var(--mono);
    font-size: 11px;
    position: relative; z-index: 2;
}
.bt-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}
.bt-badge svg { width: 11px; height: 11px; color: var(--primary); }
.bt-badge.accent svg { color: var(--accent); }
.bt-badge.green svg { color: var(--green); }

/* ============================================================
   ANIMATED NETWORK GRAPH (SVG në panelin vizual)
   ============================================================ */
.bt-net {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.45;
    z-index: 0;
    mask-image: radial-gradient(ellipse at 70% 50%, black 5%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 5%, transparent 72%);
}
.bt-net .bt-edges line {
    stroke: url(#edgeGrad);
    stroke-width: 0.8;
    opacity: 0.5;
    animation: bt-edge-flow 5s ease-in-out infinite;
}
.bt-net .bt-edges line:nth-child(2n)   { animation-delay: -1s; }
.bt-net .bt-edges line:nth-child(3n)   { animation-delay: -2s; }
.bt-net .bt-edges line:nth-child(4n+1) { animation-delay: -3s; }
@keyframes bt-edge-flow {
    0%, 100% { opacity: 0.20; stroke-width: 0.6; }
    50%      { opacity: 0.6; stroke-width: 1.1; }
}

.bt-net .bt-node {
    fill: var(--primary);
    animation: bt-node 3.5s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}
.bt-net .n1 { animation-delay: 0s; }
.bt-net .n2 { animation-delay: -1.2s; fill: var(--accent); }
.bt-net .n3 { animation-delay: -2.4s; fill: var(--cyan); }
@keyframes bt-node {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50%      { opacity: 0.85; transform: scale(1.35); }
}

.bt-threat-pulse {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.2;
    opacity: 0;
    transform-origin: 230px 200px;
    transform-box: view-box;
    animation: bt-threat 3s ease-out infinite;
}
.bt-threat-pulse.delay {
    stroke: var(--accent);
    transform-origin: 400px 130px;
    animation-delay: -1.5s;
}
@keyframes bt-threat {
    0%   { opacity: 0.7; transform: scale(0.3); }
    100% { opacity: 0;   transform: scale(4); }
}

/* ============================================================
   LOGIN CARD (djathtas) — clean white card
   ============================================================ */
.bt-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px 38px 34px;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: var(--shadow-glow), var(--shadow-deep);
    position: relative;
}
/* Subtle blue gradient hairline border via mask */
.bt-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(37, 99, 235, 0.45) 0%,
        rgba(14, 165, 233, 0.22) 45%,
        transparent 78%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
/* Card brand keyhole në krye */
.bt-card-brand {
    display: flex; justify-content: center;
    margin-bottom: 14px;
    margin-top: -6px;
}
.bt-keyhole {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: conic-gradient(from 200deg, var(--primary), var(--accent), var(--primary));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.30);
    position: relative;
}
.bt-keyhole::before {
    content: ''; position: absolute; inset: 2px;
    background: var(--surface);
    border-radius: 14px;
}
.bt-keyhole svg {
    width: 26px; height: 26px;
    color: var(--primary);
    position: relative; z-index: 1;
}

.bt-card-head { margin-bottom: 22px; text-align: center; }
.bt-card-head h2 {
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: var(--text);
}
.bt-card-head .sub {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
}

/* 2FA required strip */
.bt-mfa-strip {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(14, 165, 233, 0.38);
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-size: 12.5px;
    color: var(--text);
}
.bt-mfa-strip svg {
    width: 18px; height: 18px; color: var(--accent-2);
    flex-shrink: 0;
}
.bt-mfa-strip strong {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 2px;
}
.bt-mfa-strip span { color: var(--text-muted); font-size: 12px; }

/* Alert */
.bt-alert {
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    margin-bottom: 18px;
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--danger-bg);
    border: 1px solid rgba(220, 38, 38, 0.32);
    color: #b91c1c;
}
.bt-alert svg {
    width: 16px; height: 16px;
    flex-shrink: 0; margin-top: 1px;
    color: var(--danger);
}

/* Fields */
.bt-field { margin-bottom: 16px; }
.bt-field label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.bt-input-wrap { position: relative; }
.bt-input-wrap svg.icon {
    position: absolute; left: 14px; top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    color: var(--text-dim);
    pointer-events: none;
    transition: color 0.2s;
}
.bt-input {
    width: 100%;
    padding: 13px 44px 13px 42px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.bt-input::placeholder { color: var(--text-dim); }
.bt-input:hover { border-color: rgba(37, 99, 235, 0.30); }
.bt-input:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}
.bt-input:focus + svg.icon,
.bt-input-wrap:focus-within svg.icon { color: var(--primary); }

/* Reveal button për password */
.bt-reveal {
    position: absolute; right: 10px; top: 50%;
    transform: translateY(-50%);
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: none; cursor: pointer;
    color: var(--text-dim);
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    padding: 0;
}
.bt-reveal:hover { color: var(--primary); background: rgba(37, 99, 235, 0.08); }
.bt-reveal.on { color: var(--primary); }
.bt-reveal svg { width: 16px; height: 16px; }

/* Submit button */
.bt-btn {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.50);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.bt-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28), transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.6s;
}
.bt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -8px rgba(37, 99, 235, 0.55);
    filter: brightness(1.05);
}
.bt-btn:hover::before { transform: translateX(120%); }
.bt-btn:active { transform: translateY(0); }
.bt-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.bt-btn svg { width: 16px; height: 16px; }

/* Card foot */
.bt-card-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
    display: flex; flex-direction: column; gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}
.bt-sec-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.bt-sec-badges span {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
}
.bt-sec-badges span::before {
    content: '';
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 4px rgba(22, 163, 74, 0.6);
}
.bt-sec-badges span.accent { color: var(--accent-2); border-color: rgba(14, 165, 233, 0.35); background: rgba(14, 165, 233, 0.08); }
.bt-sec-badges span.accent::before { background: var(--accent-2); box-shadow: 0 0 4px var(--accent-glow); }
.bt-legal-links { color: var(--text-dim); text-align: center; font-family: var(--sans); font-size: 11.5px; }
.bt-legal-links a { color: var(--text-muted); }
.bt-legal-links a:hover { color: var(--primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .auth-visual { padding: 44px 40px; }
    .auth-form-side { padding: 40px 32px; }
}
@media (max-width: 980px) {
    .auth-shell { grid-template-columns: 1fr; }
    .auth-visual {
        padding: 36px 24px;
        /* On stacked layout the wash flows top→bottom into the form. */
        background:
            radial-gradient(ellipse at 20% 0%, rgba(37, 99, 235, 0.10), transparent 60%),
            linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
        border-bottom: 1px solid var(--border);
    }
    .auth-form-side { padding: 36px 24px; background: none; }
    .bt-features { grid-template-columns: 1fr; }
    .bt-hero { margin: 32px 0 24px; }
    .bt-hero h2 { font-size: 28px; }
}
@media (max-width: 520px) {
    .bt-card { padding: 32px 22px 24px; max-width: 100%; }
    .bt-keyhole { width: 48px; height: 48px; }
    .bt-card-head h2 { font-size: 20px; }
    .auth-visual { padding: 28px 20px; }
    .bt-brand-icon { width: 46px; height: 46px; }
}

/* Reduce motion — parim aksesibiliteti */
@media (prefers-reduced-motion: reduce) {
    .bt-orb,
    .bt-net .bt-edges line,
    .bt-net .bt-node,
    .bt-threat-pulse,
    .bt-strip-dot,
    .bt-pill .dot {
        animation: none !important;
    }
    .bt-btn::before { display: none; }
}

/* Focus visible për accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Scrollbar light */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
    background: #c3d2ea;
    border-radius: 6px;
    border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover { background: #a9bde0; }

/* Selection */
::selection { background: rgba(37, 99, 235, 0.22); color: #0f1e3d; }
