/* /Pages/CompVision.razor.rz.scp.css */
.cv-page[b-y6v4dfx2r1] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 64px);
    overflow: hidden;
    padding: 0.5rem 0.75rem 0.75rem;
    gap: 0.5rem;
    box-sizing: border-box;
}

.cv-title[b-y6v4dfx2r1] {
    text-align: center;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.cv-layout[b-y6v4dfx2r1] {
    display: flex;
    flex: 1;
    gap: 0.5rem;
    min-height: 0;
}

/* ── Panels ──────────────────────────────────────────────────────────────── */

.cv-panel[b-y6v4dfx2r1] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.panel-label[b-y6v4dfx2r1] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding-bottom: 0.375rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.25rem;
}

/* ── Tools panel ─────────────────────────────────────────────────────────── */

.cv-tools[b-y6v4dfx2r1] {
    width: 195px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cv-tools-scroll[b-y6v4dfx2r1] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.cv-tools-scroll[b-y6v4dfx2r1]::-webkit-scrollbar {
    width: 3px;
}

.cv-tools-scroll[b-y6v4dfx2r1]::-webkit-scrollbar-track {
    background: transparent;
    margin-block: var(--radius);
}

.cv-tools-scroll[b-y6v4dfx2r1]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 0;
}

.cv-tools-scroll[b-y6v4dfx2r1]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.tool-category[b-y6v4dfx2r1] {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0.6rem 0.65rem 0.2rem;
    margin-top: 0.1rem;
}

.tool-category:first-of-type[b-y6v4dfx2r1] {
    padding-top: 0.1rem;
}

.tool-item[b-y6v4dfx2r1] {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.tool-item:hover[b-y6v4dfx2r1] {
    background: var(--surface2);
}

.tool-item:hover .tool-btn[b-y6v4dfx2r1] {
    color: var(--text);
}

.tool-item.active[b-y6v4dfx2r1] {
    background: var(--accent-dim);
    border-color: var(--accent);
}

.tool-item.active .tool-btn[b-y6v4dfx2r1] {
    color: var(--accent);
}

.tool-btn[b-y6v4dfx2r1] {
    background: transparent;
    border: none;
    padding: 0.45rem 0.65rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

/* ── Tag chips ───────────────────────────────────────────────────────────── */

.tool-tags[b-y6v4dfx2r1] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    padding: 0 0.65rem 0.35rem;
    margin-top: -0.15rem;
}

.tag-chip[b-y6v4dfx2r1] {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.08em 0.4em;
    border-radius: 3px;
    border: 1px solid;
    line-height: 1.4;
    text-transform: lowercase;
    user-select: none;
}

.tag-chip[data-tag="opencv"][b-y6v4dfx2r1]     { color: #4096ff; border-color: rgba(64,150,255,0.4); background: rgba(64,150,255,0.08); }
.tag-chip[data-tag="tensorflow"][b-y6v4dfx2r1] { color: #ff8a3d; border-color: rgba(255,138,61,0.4); background: rgba(255,138,61,0.08); }
.tag-chip[data-tag="mediapipe"][b-y6v4dfx2r1]  { color: #a78bfa; border-color: rgba(167,139,250,0.4); background: rgba(167,139,250,0.08); }

/* ── Tag filter strip ────────────────────────────────────────────────────── */

.tag-filter-strip[b-y6v4dfx2r1] {
    display: flex;
    padding: 0.5rem 0.65rem 0.4rem;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border);
}

.filter-btn[b-y6v4dfx2r1] {
    flex: 1;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.3em 0;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    margin-left: -1px;
    cursor: pointer;
    line-height: 1.4;
    font-family: inherit;
    background: rgba(255,255,255,0.03);
    color: var(--text-dim);
    position: relative;
    z-index: 0;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.filter-btn:first-child[b-y6v4dfx2r1] { border-radius: 4px 0 0 4px; margin-left: 0; }
.filter-btn:last-child[b-y6v4dfx2r1]  { border-radius: 0 4px 4px 0; }

.filter-btn--opencv.active[b-y6v4dfx2r1]     { color: #4096ff; background: rgba(64,150,255,0.12);  border-color: #4096ff;  z-index: 1; }
.filter-btn--tensorflow.active[b-y6v4dfx2r1] { color: #ff8a3d; background: rgba(255,138,61,0.12);  border-color: #ff8a3d;  z-index: 1; }
.filter-btn--mediapipe.active[b-y6v4dfx2r1]  { color: #a78bfa; background: rgba(167,139,250,0.12); border-color: #a78bfa;  z-index: 1; }

.filter-btn--opencv[b-y6v4dfx2r1]     { color: #4096ff; }
.filter-btn--tensorflow[b-y6v4dfx2r1] { color: #ff8a3d; }
.filter-btn--mediapipe[b-y6v4dfx2r1]  { color: #a78bfa; }

.filter-btn.inactive[b-y6v4dfx2r1] {
    color: #4e5666;
    border-color: rgba(78,86,102,0.25);
    background: rgba(78,86,102,0.04);
}

/* ── Main screen ─────────────────────────────────────────────────────────── */

.cv-main[b-y6v4dfx2r1] {
    flex: 1;
    position: relative;
    background: #000;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

.cv-status[b-y6v4dfx2r1] {
    position: absolute;
    color: var(--text-muted);
    font-size: 0.875rem;
    z-index: 1;
}

.cv-canvas[b-y6v4dfx2r1] {
    display: none;
}

.cv-canvas.visible[b-y6v4dfx2r1] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cv-canvas.eyedropper[b-y6v4dfx2r1] {
    cursor: crosshair;
}

/* ── Controls panel ──────────────────────────────────────────────────────── */

.cv-controls[b-y6v4dfx2r1] {
    width: 200px;
    flex-shrink: 0;
    justify-content: space-between;
}

.sliders[b-y6v4dfx2r1] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex: 1;
}

.no-params[b-y6v4dfx2r1] {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-style: italic;
}

.slider-group[b-y6v4dfx2r1] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.slider-header[b-y6v4dfx2r1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-label[b-y6v4dfx2r1] {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.slider-header-right[b-y6v4dfx2r1] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.slider-value[b-y6v4dfx2r1] {
    font-size: 0.75rem;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.info-btn[b-y6v4dfx2r1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--text-dim);
    background: transparent;
    color: var(--text-dim);
    font-size: 0.6rem;
    font-style: italic;
    font-family: Georgia, serif;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: border-color 0.15s, color 0.15s;
    flex-shrink: 0;
}

.info-btn:hover[b-y6v4dfx2r1],
.info-open .info-btn[b-y6v4dfx2r1] {
    border-color: var(--accent);
    color: var(--accent);
}

.slider-desc[b-y6v4dfx2r1] {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.4;
    padding: 0.35rem 0.5rem;
    background: var(--surface2);
    border-left: 2px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: none;
}

.slider-group:hover .slider-desc[b-y6v4dfx2r1],
.info-open .slider-desc[b-y6v4dfx2r1] {
    display: block;
}

input[type="range"][b-y6v4dfx2r1] {
    width: 100%;
    accent-color: var(--accent);
    cursor: pointer;
}

/* ── Color picker ────────────────────────────────────────────────────────── */

.color-picker-section[b-y6v4dfx2r1] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--border);
    padding-top: 0.65rem;
}

.color-picker-row[b-y6v4dfx2r1] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.color-swatch[b-y6v4dfx2r1] {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

input[type="color"][b-y6v4dfx2r1] {
    flex: 1;
    height: 28px;
    padding: 1px 2px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface2);
    cursor: pointer;
    min-width: 0;
}

.eyedropper-btn[b-y6v4dfx2r1] {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface2);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.eyedropper-btn:hover[b-y6v4dfx2r1],
.eyedropper-btn.active[b-y6v4dfx2r1] {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.eyedropper-hint[b-y6v4dfx2r1] {
    font-size: 0.72rem;
    color: var(--accent);
    line-height: 1.4;
}

/* ── Options / checkboxes ────────────────────────────────────────────────── */

.cv-options[b-y6v4dfx2r1] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.option-check[b-y6v4dfx2r1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.option-check input[type="checkbox"][b-y6v4dfx2r1] {
    accent-color: var(--accent);
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* ── Info toggle button (inside tools panel) ─────────────────────────────── */

.info-toggle-btn[b-y6v4dfx2r1] {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.65rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-dim);
    font-size: 0.78rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.info-toggle-btn:hover[b-y6v4dfx2r1],
.info-toggle-btn.active[b-y6v4dfx2r1] {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent);
}

/* ── Algorithm info panel ────────────────────────────────────────────────── */

.cv-info[b-y6v4dfx2r1] {
    width: 0;
    min-width: 0;
    overflow: hidden;
    flex-shrink: 0;
    transition: width 0.28s ease;
}

.cv-info.open[b-y6v4dfx2r1] {
    width: clamp(260px, 28vw, 420px);
}

.cv-info-scroll[b-y6v4dfx2r1] {
    width: clamp(260px, 28vw, 420px);
    height: 100%;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.algo-info-name[b-y6v4dfx2r1] {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

.algo-doc p[b-y6v4dfx2r1] {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
}

.algo-doc p:last-child[b-y6v4dfx2r1] {
    margin-bottom: 0;
}

.algo-doc code[b-y6v4dfx2r1] {
    font-size: 0.78rem;
    font-family: 'Consolas', 'Fira Code', monospace;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.05em 0.35em;
    color: var(--accent);
}

.algo-doc strong[b-y6v4dfx2r1] {
    color: var(--text);
    font-weight: 600;
}

/* ── Object capture ──────────────────────────────────────────────────────── */

.capture-section[b-y6v4dfx2r1] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--border);
    padding-top: 0.65rem;
}

.capture-controls[b-y6v4dfx2r1] {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.capture-btn[b-y6v4dfx2r1] {
    flex: 1;
    padding: 0.4rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface2);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.82rem;
    font-family: inherit;
    text-align: center;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.capture-btn:hover[b-y6v4dfx2r1],
.capture-btn.active[b-y6v4dfx2r1] {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.capture-clear-btn[b-y6v4dfx2r1] {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface2);
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s, color 0.15s;
}

.capture-clear-btn:hover[b-y6v4dfx2r1] {
    border-color: #ef4444;
    color: #ef4444;
}

.capture-hint[b-y6v4dfx2r1] {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.capture-overlay[b-y6v4dfx2r1] {
    position: absolute;
    inset: 0;
    cursor: crosshair;
    z-index: 10;
}

.capture-selection[b-y6v4dfx2r1] {
    position: absolute;
    border: 2px dashed #39ff14;
    background: rgba(57, 255, 20, 0.08);
    pointer-events: none;
    box-sizing: border-box;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
    .cv-layout[b-y6v4dfx2r1] {
        flex-direction: column;
    }

    .cv-tools[b-y6v4dfx2r1] {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cv-controls[b-y6v4dfx2r1] {
        width: 100%;
    }
}
/* /Pages/Index.razor.rz.scp.css */
.hero[b-ryfazwm2z3] {
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding: 3rem 0 2rem;
}

.hero-content[b-ryfazwm2z3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-eyebrow[b-ryfazwm2z3] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

#name[b-ryfazwm2z3] {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, #e2e8f0 0%, #93c5fd 55%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub[b-ryfazwm2z3] {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--text-muted);
    margin: 0.15rem 0 0;
}

.hero-location[b-ryfazwm2z3] {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin: 0.5rem 0 0;
}

.hero-location i[b-ryfazwm2z3] {
    color: var(--accent);
    margin-right: 0.35rem;
}

.hero-cta[b-ryfazwm2z3] {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary[b-ryfazwm2z3] {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 0 24px var(--accent-glow);
}

.btn-primary:hover[b-ryfazwm2z3] {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 32px var(--accent-glow);
}

.btn-secondary[b-ryfazwm2z3] {
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover[b-ryfazwm2z3] {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--text);
    transform: translateY(-2px);
}

.bio-card[b-ryfazwm2z3] {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.bio-photo[b-ryfazwm2z3] {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 24px var(--accent-glow);
}

.headshot[b-ryfazwm2z3] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bio-text[b-ryfazwm2z3] {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.75;
}

.bio-text p[b-ryfazwm2z3] {
    margin: 0 0 0.75rem;
}

.bio-text p:last-child[b-ryfazwm2z3] {
    margin: 0;
}

@media (max-width: 860px) {
    .hero[b-ryfazwm2z3] {
        min-height: unset;
        padding: 2rem 0 1.5rem;
        align-items: flex-start;
    }

    .bio-card[b-ryfazwm2z3] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-cta[b-ryfazwm2z3] {
        justify-content: center;
    }
}
/* /Pages/MarkdownPreviewer.razor.rz.scp.css */
#markdown-previewer[b-je4pif92yt] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
}

/* ── Toolbar ──────────────────────────────────────────────────────────────── */

.mp-toolbar[b-je4pif92yt] {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.75rem;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius) var(--radius) 0 0;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.mp-tool-btn[b-je4pif92yt] {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    min-width: 28px;
    text-align: center;
    line-height: 1;
}

.mp-tool-btn:hover[b-je4pif92yt] {
    background: var(--accent-dim);
    border-color: var(--border);
    color: var(--text);
}

.mp-tool-sep[b-je4pif92yt] {
    width: 1px;
    height: 18px;
    background: var(--border);
    margin: 0 0.2rem;
}

.mp-toolbar-right[b-je4pif92yt] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mp-count[b-je4pif92yt] {
    font-size: 0.7rem;
    color: var(--text-dim);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.mp-copy-btn[b-je4pif92yt] {
    background: var(--accent-dim);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.mp-copy-btn:hover[b-je4pif92yt] {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.mp-copy-btn i[b-je4pif92yt] {
    margin-right: 0.3rem;
}

/* ── Body ─────────────────────────────────────────────────────────────────── */

.mp-body[b-je4pif92yt] {
    display: flex;
    flex: 1;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--surface);
}

.mp-pane[b-je4pif92yt] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.mp-pane-label[b-je4pif92yt] {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface2);
    flex-shrink: 0;
}

.mp-pane-label i[b-je4pif92yt] {
    margin-right: 0.4rem;
    opacity: 0.7;
}

.mp-gutter[b-je4pif92yt] {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Editor ───────────────────────────────────────────────────────────────── */

.mp-editor[b-je4pif92yt] {
    flex: 1;
    resize: none;
    border: none;
    outline: none;
    background: var(--surface);
    color: var(--text);
    font-family: 'Cascadia Code', 'Fira Code', 'Consolas', 'Courier New', monospace;
    font-size: 0.88rem;
    line-height: 1.7;
    padding: 1.25rem 1.25rem;
    overflow-y: auto;
    tab-size: 2;
}

.mp-editor[b-je4pif92yt]::placeholder {
    color: var(--text-dim);
}

/* ── Preview ──────────────────────────────────────────────────────────────── */

.mp-preview[b-je4pif92yt] {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    line-height: 1.75;
    font-size: 0.92rem;
    color: var(--text);
}

/* Rendered markdown styles via ::deep */

.mp-preview[b-je4pif92yt]  h1,
.mp-preview[b-je4pif92yt]  h2,
.mp-preview[b-je4pif92yt]  h3,
.mp-preview[b-je4pif92yt]  h4,
.mp-preview[b-je4pif92yt]  h5,
.mp-preview[b-je4pif92yt]  h6 {
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.mp-preview[b-je4pif92yt]  h1 { font-size: 1.6rem; border-bottom: 1px solid var(--border); padding-bottom: 0.4rem; }
.mp-preview[b-je4pif92yt]  h2 { font-size: 1.25rem; border-bottom: 1px solid var(--border); padding-bottom: 0.3rem; }
.mp-preview[b-je4pif92yt]  h3 { font-size: 1.05rem; }

.mp-preview[b-je4pif92yt]  p {
    margin: 0 0 0.9rem;
    color: var(--text);
}

.mp-preview[b-je4pif92yt]  a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mp-preview[b-je4pif92yt]  strong { color: var(--text); }
.mp-preview[b-je4pif92yt]  em     { color: var(--text); }

.mp-preview[b-je4pif92yt]  code {
    font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
    font-size: 0.83em;
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
    padding: 0.1em 0.4em;
    border-radius: 4px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.mp-preview[b-je4pif92yt]  pre {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.15rem;
    overflow-x: auto;
    margin: 0 0 1rem;
}

.mp-preview[b-je4pif92yt]  pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--text);
    font-size: 0.85em;
}

.mp-preview[b-je4pif92yt]  ul,
.mp-preview[b-je4pif92yt]  ol {
    margin: 0 0 0.9rem;
    padding-left: 1.5rem;
}

.mp-preview[b-je4pif92yt]  li {
    margin-bottom: 0.25rem;
    color: var(--text);
}

.mp-preview[b-je4pif92yt]  blockquote {
    border-left: 3px solid var(--accent);
    margin: 0 0 1rem;
    padding: 0.5rem 0 0.5rem 1rem;
    color: var(--text-muted);
    font-style: italic;
    background: var(--accent-dim);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.mp-preview[b-je4pif92yt]  blockquote p { margin: 0; }

.mp-preview[b-je4pif92yt]  hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}

.mp-preview[b-je4pif92yt]  table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1rem;
    font-size: 0.88rem;
}

.mp-preview[b-je4pif92yt]  th,
.mp-preview[b-je4pif92yt]  td {
    border: 1px solid var(--border);
    padding: 0.45rem 0.75rem;
    text-align: left;
}

.mp-preview[b-je4pif92yt]  th {
    background: var(--surface2);
    color: var(--text);
    font-weight: 600;
}

.mp-preview[b-je4pif92yt]  td { color: var(--text-muted); }

.mp-preview[b-je4pif92yt]  tr:hover td { background: rgba(255,255,255,0.02); }

.mp-preview[b-je4pif92yt]  img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
    .mp-body[b-je4pif92yt]        { flex-direction: column; }
    .mp-gutter[b-je4pif92yt]      { width: 100%; height: 1px; }
    #markdown-previewer[b-je4pif92yt] { height: auto; }
    .mp-pane[b-je4pif92yt]        { height: 40vh; }
}
/* /Pages/Pomodoro.razor.rz.scp.css */
#pomodoro[b-1w55c0c1lb] {
    max-width: 420px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-radius: 20px !important;
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

/* Mode themes */
#pomodoro.mode-pomodoro[b-1w55c0c1lb] {
    background: linear-gradient(145deg, #9e2820, #c0392b) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 12px 48px rgba(180, 40, 30, 0.45) !important;
}

#pomodoro.mode-short-break[b-1w55c0c1lb] {
    background: linear-gradient(145deg, #116649, #1a8a61) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 12px 48px rgba(26, 138, 97, 0.45) !important;
}

#pomodoro.mode-long-break[b-1w55c0c1lb] {
    background: linear-gradient(145deg, #1a3f7a, #1e52a3) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 12px 48px rgba(30, 82, 163, 0.45) !important;
}

/* Mode tabs */
.mode-tabs[b-1w55c0c1lb] {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
    width: 100%;
}

.tab[b-1w55c0c1lb] {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4rem 0.4rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.tab:hover[b-1w55c0c1lb] {
    color: rgba(255, 255, 255, 0.8);
}

.tab.active[b-1w55c0c1lb] {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 600;
}

.tab-dot[b-1w55c0c1lb] {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    margin-left: 5px;
    vertical-align: middle;
    animation: pulse-dot-b-1w55c0c1lb 1.2s ease-in-out infinite;
}

@keyframes pulse-dot-b-1w55c0c1lb {
    0%, 100% { opacity: 0.4; transform: scale(0.85); }
    50%       { opacity: 1;   transform: scale(1.15); }
}

/* Progress ring */
.ring-wrapper[b-1w55c0c1lb] {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.progress-ring[b-1w55c0c1lb] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ring-bg[b-1w55c0c1lb] {
    fill: none;
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 8;
}

.ring-fill[b-1w55c0c1lb] {
    fill: none;
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 8;
    stroke-linecap: round;
}

.ring-content[b-1w55c0c1lb] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.time-display[b-1w55c0c1lb] {
    font-size: 3.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1;
    cursor: default;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.ring-label[b-1w55c0c1lb] {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

/* Session tracker */
.session-track[b-1w55c0c1lb] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.session-dot[b-1w55c0c1lb] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s, border-color 0.3s;
}

.session-dot.filled[b-1w55c0c1lb] {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
}

.session-label[b-1w55c0c1lb] {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 0.25rem;
    letter-spacing: 0.04em;
}

/* Action row */
.action-row[b-1w55c0c1lb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
}

.btn-main[b-1w55c0c1lb] {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 2.25rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-main:hover[b-1w55c0c1lb] {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

.btn-main:active[b-1w55c0c1lb] {
    transform: translateY(0);
}

.btn-minor[b-1w55c0c1lb] {
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.65rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.btn-minor:hover:not(:disabled)[b-1w55c0c1lb] {
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.9);
}

.btn-minor:disabled[b-1w55c0c1lb] {
    opacity: 0.25;
    cursor: not-allowed;
}

/* Notification hint */
.notification-hint[b-1w55c0c1lb] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin: 0;
    padding: 0 0.5rem;
    line-height: 1.5;
}

.notification-hint i[b-1w55c0c1lb] {
    margin-right: 0.3rem;
}

/* Debug button */
.debug-btn[b-1w55c0c1lb] {
    background: rgba(0, 0, 0, 0.15);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.68rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}

.debug-btn:hover[b-1w55c0c1lb] {
    color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.25);
}

.debug-btn i[b-1w55c0c1lb] {
    margin-right: 0.3rem;
    font-size: 0.62rem;
}
/* /Pages/Portfolio.razor.rz.scp.css */
.headers[b-69uiik60rj] {
    margin-bottom: 0.25rem;
}

.headers h1[b-69uiik60rj] {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-container[b-69uiik60rj] {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    gap: 1.25rem;
    transition: border-color 0.2s;
}

.project-container:hover[b-69uiik60rj] {
    border-color: #243554;
}

.project-title[b-69uiik60rj] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.project-title > div[b-69uiik60rj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.project-link[b-69uiik60rj] {
    text-decoration: none;
}

.project-link h4[b-69uiik60rj] {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    transition: color 0.2s;
}

.project-link:hover h4[b-69uiik60rj] {
    color: var(--accent);
}

.project-image[b-69uiik60rj] {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: block;
}

.project-description[b-69uiik60rj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-description p[b-69uiik60rj] {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.project-tags[b-69uiik60rj] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tags-label[b-69uiik60rj] {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tags-label p[b-69uiik60rj] {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin: 0;
    white-space: nowrap;
}

.tag-group[b-69uiik60rj] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.4rem;
}

.tag[b-69uiik60rj] {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}

.tag:hover[b-69uiik60rj] {
    border-color: var(--accent);
    color: var(--accent);
}

.git-link[b-69uiik60rj] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.git-link:hover[b-69uiik60rj] {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
    text-decoration: none;
}

.git-link i[b-69uiik60rj] {
    font-size: 0.9rem;
}
/* /Pages/Resume.razor.rz.scp.css */
#resume-title[b-bmbj1epp2w] {
    margin-bottom: 0.25rem;
}

#resume-title h1[b-bmbj1epp2w] {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#resume-title h2[b-bmbj1epp2w] {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
}

.resume-body[b-bmbj1epp2w] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.resume-section[b-bmbj1epp2w] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 100%;
    overflow: hidden;
    transition: border-color 0.2s;
}

.resume-section:hover[b-bmbj1epp2w] {
    border-color: #243554;
}

.resume-subsection[b-bmbj1epp2w] {
    padding: 1.5rem;
    width: 100%;
}

.resume-subsection h2[b-bmbj1epp2w],
.resume-subsection h3[b-bmbj1epp2w] {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1.1rem;
}

.divider[b-bmbj1epp2w] {
    display: none;
}

/* Quote */
.resume-quotes[b-bmbj1epp2w] {
    border-left: 3px solid var(--accent);
}

#quote-text[b-bmbj1epp2w] {
    font-size: 0.925rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: normal;
    opacity: 1;
}

#quote-attribution[b-bmbj1epp2w] {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.85rem;
    letter-spacing: normal;
}

#gs-link[b-bmbj1epp2w] {
    color: var(--accent);
    text-decoration: none;
    text-shadow: none;
    letter-spacing: normal;
}

#gs-link:hover[b-bmbj1epp2w] {
    color: #60a5fa;
}

/* Summary pills */
#resume-summary ul[b-bmbj1epp2w] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

#resume-summary li[b-bmbj1epp2w] {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}

#resume-summary li[b-bmbj1epp2w]::first-letter { all: unset; }
#resume-summary li:hover[b-bmbj1epp2w] { color: var(--text); border-color: var(--accent); cursor: default; font-weight: 500; }

/* Skills */
#all-skills[b-bmbj1epp2w] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.skills-columns[b-bmbj1epp2w] {
    min-width: 140px;
    flex: 1;
}

.skill-section-title[b-bmbj1epp2w] {
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.skill-section-title h5[b-bmbj1epp2w] {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin: 0;
    text-align: left;
}

.skills-columns ul[b-bmbj1epp2w] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.skills-columns li[b-bmbj1epp2w] {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.15rem 0;
    transition: color 0.15s;
}

.skills-columns li[b-bmbj1epp2w]::first-letter { all: unset; }
.skills-columns li[b-bmbj1epp2w]::marker { display: none; content: none; }
.skills-columns li:hover[b-bmbj1epp2w] { color: var(--text); cursor: default; font-weight: 400; }

/* Experience timeline */
.experience-row[b-bmbj1epp2w] {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border);
    border-left: 2px solid transparent;
    transition: border-left-color 0.2s, background 0.2s;
}

.experience-row:last-child[b-bmbj1epp2w] {
    border-bottom: none;
}

.experience-row:hover[b-bmbj1epp2w] {
    border-left-color: var(--accent);
    background: rgba(59, 130, 246, 0.03);
}

.title[b-bmbj1epp2w] {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.icon-and-dates[b-bmbj1epp2w] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.company-icon[b-bmbj1epp2w] {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--border);
    object-fit: cover;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.company-icon:hover[b-bmbj1epp2w] {
    width: 36px;
    height: 36px;
    margin: 0;
    border-color: var(--accent);
}

.company-text[b-bmbj1epp2w] {
    display: flex;
    flex-direction: column;
}

.company-name[b-bmbj1epp2w] {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    text-shadow: none;
}

.dates[b-bmbj1epp2w] {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin: 0.1rem 0 0;
}

/* All company links unified */
#infinity a[b-bmbj1epp2w], #greenshades a[b-bmbj1epp2w], #jnj a[b-bmbj1epp2w], #andromeda-systems a[b-bmbj1epp2w], #unf a[b-bmbj1epp2w] {
    color: var(--text);
    font-size: inherit;
    font-weight: 600;
    text-decoration: none;
    text-shadow: none;
}

#infinity a:hover[b-bmbj1epp2w], #greenshades a:hover[b-bmbj1epp2w], #jnj a:hover[b-bmbj1epp2w],
#andromeda-systems a:hover[b-bmbj1epp2w], #unf a:hover[b-bmbj1epp2w] {
    color: var(--accent);
}

.job-description ul[b-bmbj1epp2w],
.education-description ul[b-bmbj1epp2w] {
    padding-left: 1.1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.job-description li[b-bmbj1epp2w],
.education-description li[b-bmbj1epp2w] {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    transition: color 0.15s;
}

.job-description li[b-bmbj1epp2w]::first-letter { all: unset; }
.education-description li[b-bmbj1epp2w]::first-letter { all: unset; }
.job-description li:hover[b-bmbj1epp2w] { color: var(--text); cursor: default; font-weight: 400; }
.education-description li:hover[b-bmbj1epp2w] { color: var(--text); cursor: default; font-weight: 400; }
.job-description li[b-bmbj1epp2w]::marker { color: var(--accent); }
.education-description li[b-bmbj1epp2w]::marker { color: var(--accent); }

/* Awards */
.awards-list[b-bmbj1epp2w] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}

.award-item[b-bmbj1epp2w] {
    padding: 0.85rem 1rem;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    transition: border-color 0.2s;
}

.award-item:hover[b-bmbj1epp2w] {
    border-color: var(--accent);
}

.award-item h5[b-bmbj1epp2w] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.3rem;
}

.award-item p[b-bmbj1epp2w] {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

#resume-education[b-bmbj1epp2w] {
    margin-bottom: 0;
}

#resume-patents[b-bmbj1epp2w] {
    margin-bottom: 0;
}
/* /Pages/TypingTest.razor.rz.scp.css */
#typing-test[b-wwioor0w22] {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* ── Top bar ──────────────────────────────────────────────────────────────── */

.tt-top-bar[b-wwioor0w22] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.25rem;
}

.tt-live-stat[b-wwioor0w22] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
}

.tt-live-val[b-wwioor0w22] {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.tt-live-val.tt-muted[b-wwioor0w22] {
    color: var(--text-dim);
}

.tt-live-lbl[b-wwioor0w22] {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.2rem;
}

.tt-pct-sm[b-wwioor0w22] {
    font-size: 1.1rem;
}

.tt-countdown[b-wwioor0w22] {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    min-width: 2.5ch;
    text-align: center;
    transition: color 0.3s;
    letter-spacing: -0.02em;
}

.tt-countdown.tt-urgent[b-wwioor0w22] {
    color: #ef4444;
    animation: pulse-urgent-b-wwioor0w22 0.8s ease-in-out infinite;
}

@keyframes pulse-urgent-b-wwioor0w22 {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── Word display ─────────────────────────────────────────────────────────── */

.tt-words-clip[b-wwioor0w22] {
    height: 6.25rem;   /* ~3 lines at 2rem line-height */
    overflow: hidden;
    position: relative;
    cursor: text;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 8px;
}

/* Fade edges */
.tt-words-clip[b-wwioor0w22]::before,
.tt-words-clip[b-wwioor0w22]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1.4rem;
    z-index: 2;
    pointer-events: none;
}

.tt-words-clip[b-wwioor0w22]::before {
    top: 0;
    background: linear-gradient(to bottom, var(--surface), transparent);
}

.tt-words-clip[b-wwioor0w22]::after {
    bottom: 0;
    background: linear-gradient(to top, var(--surface), transparent);
}

.tt-words[b-wwioor0w22] {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.5em;
    line-height: 2rem;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dim);
    padding: 0.15rem 0.1rem;
}

.tt-word[b-wwioor0w22] {
    display: inline-flex;
    white-space: nowrap;
    position: relative;
}

.tt-space[b-wwioor0w22] {
    display: none; /* spacing handled by gap */
}

/* ── Character states ─────────────────────────────────────────────────────── */

.tt-ch[b-wwioor0w22] {
    color: var(--text-dim);
}

.tt-ch.correct[b-wwioor0w22] {
    color: var(--text);
}

.tt-ch.wrong[b-wwioor0w22] {
    color: #ef4444;
}

.tt-ch.tt-overflow[b-wwioor0w22] {
    color: #ef4444;
    opacity: 0.65;
}

/* Cursor caret before the next untyped character */
.tt-ch.cursor[b-wwioor0w22] {
    position: relative;
}

.tt-ch.cursor[b-wwioor0w22]::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 15%;
    height: 72%;
    width: 2px;
    background: var(--accent);
    border-radius: 1px;
    animation: blink-caret-b-wwioor0w22 0.75s ease-in-out infinite;
}

/* Cursor caret when word is fully typed (appended after last char) */
.tt-cursor-end[b-wwioor0w22] {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--accent);
    border-radius: 1px;
    vertical-align: middle;
    margin-left: 1px;
    animation: blink-caret-b-wwioor0w22 0.75s ease-in-out infinite;
}

@keyframes blink-caret-b-wwioor0w22 {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Attribution ─────────────────────────────────────────────────────────── */

.tt-attribution[b-wwioor0w22] {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-align: right;
    margin: -0.5rem 0 0;
    font-style: italic;
    letter-spacing: 0.01em;
}

.tt-results-source[b-wwioor0w22] {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-style: italic;
    margin: -1rem 0 0;
    text-align: center;
}

/* ── Hidden input ─────────────────────────────────────────────────────────── */

.tt-ghost-input[b-wwioor0w22] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    left: -9999px;
    top: -9999px;
}

/* ── Hint ─────────────────────────────────────────────────────────────────── */

.tt-cue[b-wwioor0w22] {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ── Results screen ───────────────────────────────────────────────────────── */

.tt-results[b-wwioor0w22] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 0;
}

.tt-results-wpm[b-wwioor0w22] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.tt-big-num[b-wwioor0w22] {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.tt-big-lbl[b-wwioor0w22] {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.tt-results-row[b-wwioor0w22] {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tt-results-stat[b-wwioor0w22] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.tt-results-val[b-wwioor0w22] {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.01em;
}

.tt-results-val.correct-color[b-wwioor0w22] { color: #22c55e; }
.tt-results-val.wrong-color[b-wwioor0w22]   { color: #ef4444; }

.tt-pct[b-wwioor0w22] {
    font-size: 1.15rem;
}

.tt-results-lbl[b-wwioor0w22] {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.tt-restart-btn[b-wwioor0w22] {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.02em;
}

.tt-restart-btn:hover[b-wwioor0w22] {
    background: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(59, 130, 246, 0.45);
}

.tt-restart-btn:active[b-wwioor0w22] {
    transform: translateY(0);
}
/* /Shared/ContextBar.razor.rz.scp.css */
.page[b-u64lrpaal4] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-u64lrpaal4] {
    flex: 1;
}

.sidebar[b-u64lrpaal4] {
    background-image: linear-gradient(180deg, #033e49 0%, #21272e 70%);
}

.top-row[b-u64lrpaal4] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-u64lrpaal4]  a, .top-row[b-u64lrpaal4]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-u64lrpaal4]  a:hover, .top-row[b-u64lrpaal4]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-u64lrpaal4]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-u64lrpaal4] {
        display: none;
    }

    .top-row.auth[b-u64lrpaal4] {
        justify-content: space-between;
    }

    .top-row[b-u64lrpaal4]  a, .top-row[b-u64lrpaal4]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-u64lrpaal4] {
        flex-direction: row;
    }

    .sidebar[b-u64lrpaal4] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-u64lrpaal4] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-u64lrpaal4]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-u64lrpaal4], article[b-u64lrpaal4] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/FullWidthLayout.razor.rz.scp.css */
.layout[b-h7fhtpkzn9] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.fullwidth-main[b-h7fhtpkzn9] {
    flex: 1;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.layout[b-7t9wrg6lq6] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-7t9wrg6lq6] {
    flex: 1;
    padding-top: 64px;
}

.content[b-7t9wrg6lq6] {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

@media (max-width: 860px) {
    .content[b-7t9wrg6lq6] {
        padding: 1.5rem 1rem 3rem;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.topnav[b-6cwfisgxzv] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
    z-index: 100;
}

.brand[b-6cwfisgxzv] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text) !important;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.2s;
}

.brand:hover[b-6cwfisgxzv] {
    color: var(--accent) !important;
}

.nav-body[b-6cwfisgxzv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 1.5rem;
}

.nav-links[b-6cwfisgxzv] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links[b-6cwfisgxzv]  a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
}

.nav-links[b-6cwfisgxzv]  a:hover {
    color: var(--text);
    background: var(--surface2);
}

.nav-links[b-6cwfisgxzv]  a.active {
    color: var(--accent);
    background: var(--accent-dim);
}

.nav-actions[b-6cwfisgxzv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.nav-actions > a[b-6cwfisgxzv] {
    color: var(--text-dim);
    font-size: 1.05rem;
    transition: color 0.2s;
    line-height: 1;
}

.nav-actions > a:hover[b-6cwfisgxzv] {
    color: var(--accent);
}

.btn-resume[b-6cwfisgxzv] {
    background: var(--accent) !important;
    color: #fff !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-resume:hover[b-6cwfisgxzv] {
    background: #2563eb !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.btn-resume i[b-6cwfisgxzv] {
    font-size: 0.75rem;
    margin-right: 0.3rem;
}

.nav-toggle[b-6cwfisgxzv] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    margin-left: auto;
}

.nav-toggle span[b-6cwfisgxzv] {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: background 0.2s;
}

.nav-toggle:hover span[b-6cwfisgxzv] {
    background: var(--text);
}

@media (max-width: 860px) {
    .topnav[b-6cwfisgxzv] {
        padding: 0 1.25rem;
    }

    .nav-toggle[b-6cwfisgxzv] {
        display: flex;
    }

    .nav-body[b-6cwfisgxzv] {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem 1.5rem;
        gap: 1.25rem;
    }

    .nav-body.open[b-6cwfisgxzv] {
        display: flex;
    }

    .nav-links[b-6cwfisgxzv] {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.1rem;
    }

    .nav-links[b-6cwfisgxzv]  a {
        width: 100%;
        padding: 0.6rem 0.85rem;
    }

    .nav-actions[b-6cwfisgxzv] {
        margin-left: 0;
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border);
        gap: 1rem;
    }
}
