/* LTTRBX HireFlow — Brand Theme
   Primary Green:  #5DE300
   Hover Green:    #4BC400
   Primary Black:  #0D0D0D
   Secondary Black:#0F0F0F
*/

:root {
    --hf-green: #5DE300;
    --hf-green-hover: #4BC400;
    --hf-green-dark: #3da800;
    --hf-green-glow: rgba(93, 227, 0, 0.35);
    --hf-green-soft: rgba(93, 227, 0, 0.12);
    --hf-green-border: rgba(93, 227, 0, 0.35);
    --hf-black: #0D0D0D;
    --hf-black-secondary: #0F0F0F;

    --hf-bg: #f4f4f5;
    --hf-surface: #ffffff;
    --hf-surface-muted: rgba(13, 13, 13, 0.04);
    --hf-border: rgba(13, 13, 13, 0.08);
    --hf-text: #0D0D0D;
    --hf-muted: #6b7280;
    --hf-primary: #5DE300;
    --hf-primary-hover: #4BC400;
    --hf-primary-glow: rgba(93, 227, 0, 0.35);
    --hf-danger: #dc2626;
    --hf-danger-soft: #fef2f2;
    --hf-warning: #d97706;
    --hf-warning-soft: #fffbeb;
    --hf-gradient: linear-gradient(135deg, #5DE300 0%, #4BC400 100%);
    --hf-gradient-dark: linear-gradient(135deg, #0D0D0D 0%, #0F0F0F 100%);
    --hf-shadow-sm: 0 1px 2px rgba(13, 13, 13, 0.04);
    --hf-shadow: 0 4px 24px -4px rgba(13, 13, 13, 0.08), 0 2px 8px -2px rgba(13, 13, 13, 0.04);
    --hf-shadow-lg: 0 20px 48px -12px rgba(13, 13, 13, 0.15), 0 8px 16px -8px rgba(93, 227, 0, 0.12);
    --hf-radius: 1rem;
    --hf-radius-lg: 1.25rem;
}

.dark {
    --hf-bg: #0D0D0D;
    --hf-surface: #0F0F0F;
    --hf-surface-muted: rgba(255, 255, 255, 0.05);
    --hf-border: rgba(255, 255, 255, 0.08);
    --hf-text: #f5f5f5;
    --hf-muted: #9ca3af;
    --hf-danger-soft: rgba(239, 68, 68, 0.1);
    --hf-warning-soft: rgba(245, 158, 11, 0.12);
    --hf-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.5);
    --hf-shadow-lg: 0 20px 48px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(93, 227, 0, 0.06);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { color-scheme: light; }
html.dark { color-scheme: dark; }

body {
    background-color: var(--hf-bg);
    color: var(--hf-text);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--hf-black);
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
    color: #f5f5f5;
}

a.text-brand-500, .text-brand-500 { color: #5DE300 !important; }
a.text-brand-500:hover, .hover\:text-brand-600:hover { color: #4BC400 !important; }
.bg-brand-500 { background-color: #5DE300 !important; }
.bg-brand-600, .hover\:bg-brand-600:hover { background-color: #4BC400 !important; }
.text-hf-black { color: #0D0D0D !important; }
.bg-hf-black { background-color: #0D0D0D !important; }
.bg-hf-black-secondary { background-color: #0F0F0F !important; }

/* Mesh background */
.hf-mesh {
    background-color: var(--hf-bg);
    background-image:
        radial-gradient(at 0% 0%, rgba(93, 227, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(93, 227, 0, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(13, 13, 13, 0.03) 0px, transparent 50%);
}

.dark .hf-mesh {
    background-image:
        radial-gradient(at 0% 0%, rgba(93, 227, 0, 0.08) 0px, transparent 45%),
        radial-gradient(at 100% 100%, rgba(93, 227, 0, 0.05) 0px, transparent 45%);
}

.hf-dot-grid {
    background-image: radial-gradient(circle, rgba(13, 13, 13, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}

.dark .hf-dot-grid {
    background-image: radial-gradient(circle, rgba(93, 227, 0, 0.04) 1px, transparent 1px);
}

/* Glass */
.hf-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--hf-border);
}

.dark .hf-glass {
    background: rgba(15, 15, 15, 0.9);
}

/* Cards */
.hf-card {
    background: var(--hf-surface);
    border: 1px solid var(--hf-border);
    border-radius: var(--hf-radius-lg);
    box-shadow: var(--hf-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hf-card:hover { box-shadow: var(--hf-shadow-lg); }

.hf-card-interactive:hover {
    transform: translateY(-2px);
    border-color: rgba(93, 227, 0, 0.35);
}

.hf-card-flat {
    background: var(--hf-surface);
    border: 1px solid var(--hf-border);
    border-radius: var(--hf-radius-lg);
}

/* Buttons */
.hf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    line-height: 1.25;
}

.hf-btn-primary {
    background: #5DE300;
    color: #0D0D0D;
    box-shadow: 0 4px 14px var(--hf-primary-glow);
}

.hf-btn-primary:hover {
    background: #4BC400;
    color: #0D0D0D;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--hf-primary-glow);
}

.hf-btn-secondary {
    background: var(--hf-surface);
    color: var(--hf-text);
    border: 1px solid var(--hf-border);
    box-shadow: var(--hf-shadow-sm);
}

.hf-btn-secondary:hover {
    background: var(--hf-green-soft);
    border-color: rgba(93, 227, 0, 0.4);
}

.hf-btn-ghost {
    background: transparent;
    color: var(--hf-muted);
}

.hf-btn-ghost:hover {
    background: var(--hf-green-soft);
    color: var(--hf-text);
}

.dark .hf-btn-ghost:hover {
    background: rgba(93, 227, 0, 0.08);
}

/* Inputs */
.hf-input, .hf-select {
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    background: var(--hf-surface);
    border: 1px solid var(--hf-border);
    border-radius: 0.75rem;
    color: var(--hf-text);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.hf-input:focus, .hf-select:focus {
    border-color: #5DE300;
    box-shadow: 0 0 0 3px rgba(93, 227, 0, 0.2);
}

.hf-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hf-text);
    margin-bottom: 0.375rem;
}

/* Radio options */
.hf-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.hf-radio-option {
    position: relative;
    cursor: pointer;
}

.hf-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
}

.hf-radio-option .hf-radio-ui {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.6875rem 1.125rem;
    border-radius: 0.75rem;
    border: 1px solid var(--hf-border);
    background: var(--hf-surface-muted);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hf-text);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
}

.hf-radio-circle {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    border: 2px solid var(--hf-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s ease;
}

.hf-radio-circle::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #5DE300;
    transform: scale(0);
    transition: transform 0.15s ease;
}

.hf-radio-option:hover .hf-radio-ui {
    border-color: rgba(93, 227, 0, 0.35);
    background: rgba(93, 227, 0, 0.06);
}

.hf-radio-option input:checked + .hf-radio-ui {
    border-color: rgba(93, 227, 0, 0.55);
    background: rgba(93, 227, 0, 0.12);
    box-shadow: 0 0 0 1px rgba(93, 227, 0, 0.15);
}

.hf-radio-option input:checked + .hf-radio-ui .hf-radio-circle {
    border-color: #5DE300;
}

.hf-radio-option input:checked + .hf-radio-ui .hf-radio-circle::after {
    transform: scale(1);
}

.hf-radio-option input:focus-visible + .hf-radio-ui {
    box-shadow: 0 0 0 3px rgba(93, 227, 0, 0.25);
}

/* Checkbox options */
.hf-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.hf-checkbox-option {
    position: relative;
    cursor: pointer;
}

.hf-checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
}

.hf-checkbox-option .hf-checkbox-ui {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--hf-border);
    background: var(--hf-surface-muted);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hf-text);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    user-select: none;
}

.hf-checkbox-box {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.3125rem;
    border: 2px solid var(--hf-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.hf-checkbox-box svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #0D0D0D;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.hf-checkbox-option:hover .hf-checkbox-ui {
    border-color: rgba(93, 227, 0, 0.35);
    background: rgba(93, 227, 0, 0.06);
}

.hf-checkbox-option input:checked + .hf-checkbox-ui {
    border-color: rgba(93, 227, 0, 0.55);
    background: rgba(93, 227, 0, 0.12);
}

.hf-checkbox-option input:checked + .hf-checkbox-ui .hf-checkbox-box {
    border-color: #5DE300;
    background: #5DE300;
}

.hf-checkbox-option input:checked + .hf-checkbox-ui .hf-checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

.hf-checkbox-option input:focus-visible + .hf-checkbox-ui {
    box-shadow: 0 0 0 3px rgba(93, 227, 0, 0.25);
}

/* Badges */
.hf-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 9999px;
}

.hf-badge-success { background: var(--hf-green-soft); color: var(--hf-green-dark); }
.hf-badge-warning { background: var(--hf-warning-soft); color: var(--hf-warning); }
.hf-badge-danger  { background: var(--hf-danger-soft); color: var(--hf-danger); }
.hf-badge-info    { background: var(--hf-green-soft); color: var(--hf-black); border: 1px solid var(--hf-green-border); }
.hf-badge-neutral { background: var(--hf-surface-muted); color: var(--hf-muted); }

.dark .hf-badge-success { background: var(--hf-green-soft); color: var(--hf-green); }
.dark .hf-badge-warning { background: var(--hf-warning-soft); color: #fbbf24; }
.dark .hf-badge-danger  { background: var(--hf-danger-soft); color: #f87171; }
.dark .hf-badge-info    { background: var(--hf-green-soft); color: var(--hf-green); border-color: rgba(93, 227, 0, 0.25); }
.dark .hf-badge-neutral { background: var(--hf-surface-muted); color: var(--hf-muted); }

/* Stat cards */
.hf-stat {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 1.5rem;
    border-radius: var(--hf-radius-lg);
    border: 1px solid var(--hf-border);
    background: var(--hf-surface);
    box-shadow: var(--hf-shadow);
}

.hf-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--hf-gradient);
    opacity: 0;
    transition: opacity 0.2s;
}

.hf-stat:hover::before { opacity: 1; }

.hf-stat-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #5DE300;
}

.hf-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hf-muted);
    margin-top: 0.25rem;
}

/* AI Score ring */
.hf-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.hf-score-high   { background: var(--hf-green-soft); color: var(--hf-green-dark); border: 1px solid var(--hf-green-border); }
.hf-score-mid    { background: var(--hf-surface-muted); color: var(--hf-text); border: 1px solid var(--hf-border); }
.hf-score-low    { background: var(--hf-warning-soft); color: var(--hf-warning); }

.dark .hf-score-high { background: var(--hf-green-soft); color: var(--hf-green); border-color: rgba(93, 227, 0, 0.3); }
.dark .hf-score-mid  { background: var(--hf-surface-muted); color: #e5e5e5; border-color: var(--hf-border); }
.dark .hf-score-low  { background: var(--hf-warning-soft); color: #fbbf24; }

.hf-score-xl {
    width: 5rem;
    height: 5rem;
    font-size: 1.75rem;
    border-radius: 1.25rem;
}

/* Sidebar */
.hf-sidebar {
    background: var(--hf-surface);
    border-right: 1px solid var(--hf-border);
}

.dark .hf-sidebar {
    background: #0F0F0F;
}

.hf-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.75rem;
    color: var(--hf-muted);
    text-decoration: none;
    transition: all 0.15s ease;
}

.hf-nav-link:hover {
    background: var(--hf-green-soft);
    color: var(--hf-text);
}

.hf-nav-link.active {
    background: rgba(93, 227, 0, 0.12);
    color: #5DE300;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(93, 227, 0, 0.25);
}

.dark .hf-nav-link.active {
    color: #5DE300;
    background: rgba(93, 227, 0, 0.1);
}

.hf-nav-link.active svg { color: #5DE300; }

/* Logo */
.hf-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.hf-logo-img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.hf-logo-img--xs { height: 1.25rem; }
.hf-logo-img--sm { height: 1.75rem; }
.hf-logo-img--md { height: 2rem; }
.hf-logo-img--lg { height: 2.75rem; }
.hf-logo-img--xl { height: 3.5rem; }

/* Dark gray mark — readable on light UI */
.hf-logo-img--dark {
    filter: brightness(0.2);
}

/* White mark — readable on dark / brand panels */
.hf-logo-img--light {
    filter: brightness(0) invert(1);
}

/* Sidebar & public nav: adapt to theme */
.hf-logo-img--auto {
    filter: brightness(0.2);
}

.dark .hf-logo-img--auto {
    filter: brightness(0) invert(1);
}

/* Table */
.hf-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.hf-table thead th {
    padding: 0.875rem 1.5rem;
    text-align: left;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hf-muted);
    border-bottom: 1px solid var(--hf-border);
    background: rgba(13, 13, 13, 0.02);
}
.dark .hf-table thead th { background: rgba(255, 255, 255, 0.02); }
.hf-table tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--hf-border);
    vertical-align: middle;
}
.hf-table tbody tr { transition: background 0.15s; }
.hf-table tbody tr:hover { background: rgba(93, 227, 0, 0.04); }
.hf-table tbody tr:last-child td { border-bottom: none; }

/* Alerts */
.hf-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hf-alert-success { background: var(--hf-green-soft); border: 1px solid var(--hf-green-border); color: var(--hf-green-dark); }
.hf-alert-error   { background: var(--hf-danger-soft); border: 1px solid rgba(220, 38, 38, 0.25); color: var(--hf-danger); }
.dark .hf-alert-success { background: var(--hf-green-soft); border-color: rgba(93, 227, 0, 0.25); color: var(--hf-green); }
.dark .hf-alert-error   { background: var(--hf-danger-soft); border-color: rgba(239,68,68,0.2); color: #f87171; }

/* Animations */
@keyframes hf-fade-up {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hf-animate-in { animation: hf-fade-up 0.4s ease forwards; }
.hf-animate-in-delay-1 { animation-delay: 0.05s; opacity: 0; }
.hf-animate-in-delay-2 { animation-delay: 0.1s; opacity: 0; }
.hf-animate-in-delay-3 { animation-delay: 0.15s; opacity: 0; }
.hf-animate-in-delay-4 { animation-delay: 0.2s; opacity: 0; }
.hf-animate-in-delay-5 { animation-delay: 0.25s; opacity: 0; }

/* Hero — black base with green accent */
.hf-hero {
    position: relative;
    overflow: hidden;
    background: #0D0D0D;
    color: #f5f5f5;
}

.hf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(93, 227, 0, 0.15) 0%, transparent 55%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235DE300' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hf-hero-content { position: relative; z-index: 1; }

.hf-hero .hf-badge {
    background: rgba(93, 227, 0, 0.15);
    color: #5DE300;
    border: 1px solid rgba(93, 227, 0, 0.3);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8125rem;
    padding: 0.375rem 1rem;
}

/* User chip */
.hf-user-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.875rem;
    background: rgba(93, 227, 0, 0.05);
    border: 1px solid var(--hf-border);
}

.hf-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: #5DE300;
    color: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Page header */
.hf-page-title {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.hf-page-subtitle {
    font-size: 0.875rem;
    color: var(--hf-muted);
    margin-top: 0.125rem;
}

/* Rank badge */
.hf-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;
    border-radius: 0.5rem;
    font-weight: 800;
    font-size: 0.875rem;
    line-height: 1;
    background: rgba(93, 227, 0, 0.12);
    color: var(--hf-green-dark);
    border: 1px solid var(--hf-green-border);
}

.dark .hf-rank {
    color: var(--hf-green);
}

.hf-rank-1,
.dark .hf-rank.hf-rank-1 {
    background: #5DE300;
    color: #0D0D0D;
    border-color: #5DE300;
}

/* Empty state */
.hf-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--hf-muted);
}

.hf-empty-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background: rgba(93, 227, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hf-green);
}

/* Brand utilities */
.hf-surface-muted { background: var(--hf-surface-muted); }
.hf-overlay { background: rgba(13, 13, 13, 0.65); }
.hf-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--hf-muted);
    background: var(--hf-surface-muted);
    padding: 0.25rem 0.625rem;
    border-radius: 0.5rem;
}
.hf-interactive-hover:hover { background: var(--hf-green-soft); }
.hf-nav-section {
    padding: 0 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hf-muted);
}
.hf-icon-success {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: var(--hf-green-soft);
    color: var(--hf-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dark .hf-icon-success { color: var(--hf-green); }
.hf-panel-match {
    border-radius: 0.75rem;
    border: 1px solid rgba(93, 227, 0, 0.35);
    background: var(--hf-green-soft);
}
.hf-panel-partial {
    border-radius: 0.75rem;
    border: 1px solid rgba(217, 119, 6, 0.25);
    background: var(--hf-warning-soft);
}
.hf-panel-miss {
    border-radius: 0.75rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
    background: var(--hf-danger-soft);
}
.hf-text-success { color: var(--hf-green-dark); }
.dark .hf-text-success { color: var(--hf-green); }
.hf-text-danger { color: var(--hf-danger); }
.hf-strengths-panel {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(93, 227, 0, 0.3);
    background: var(--hf-green-soft);
}
.hf-weaknesses-panel {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(217, 119, 6, 0.25);
    background: var(--hf-warning-soft);
}
.hf-strengths-panel h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--hf-green-dark); margin-bottom: 0.5rem; }
.dark .hf-strengths-panel h4 { color: var(--hf-green); }
.hf-weaknesses-panel h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--hf-warning); margin-bottom: 0.5rem; }

/* Brand text utility */
.text-hf-green { color: var(--hf-green); }
.text-hf-green-hover:hover { color: var(--hf-green-hover); }
.bg-hf-black { background-color: var(--hf-black); }
.bg-hf-black-secondary { background-color: var(--hf-black-secondary); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(13, 13, 13, 0.15); border-radius: 99px; }
.dark ::-webkit-scrollbar-thumb { background: rgba(93, 227, 0, 0.2); }

[x-cloak] { display: none !important; }
