﻿/* TalentHub/css/talenthub.css â€” Fuma Technologies Talent Hub v2 */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --bg:       #08080c;
    --bg-card:  #111118;
    --bg-hover: #1a1a24;
    --border:   rgba(255,255,255,0.07);
    --primary:  #FF6F00;
    --primary-dim: rgba(255,111,0,0.12);
    --primary-glow: rgba(255,111,0,0.25);
    --text:     #f0f0f5;
    --muted:    #7a7a96;
    --green:    #22c55e;
    --blue:     #3b82f6;
    --danger:   #ef4444;
    --radius:   14px;
    --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    line-height: 1.5;
}

/* â”€â”€ AMBIENT BG â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body::before {
    content: '';
    position: fixed;
    top: -30%; left: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,111,0,0.05) 0%, transparent 65%);
    z-index: 0; pointer-events: none;
}

/* â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hub-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 60px;
    background: rgba(8,8,12,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 200;
}
.hub-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hub-brand img { border-radius: 50%; border: 1.5px solid var(--primary); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-icon-btn {
    position: relative;
    color: var(--muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
    display: flex; align-items: center;
}
.nav-icon-btn:hover { color: var(--primary); }
.msg-badge {
    position: absolute; top: -6px; right: -10px;
    background: var(--danger); color: white;
    font-size: 0.6rem; padding: 2px 5px;
    border-radius: 10px; font-weight: 700;
    border: 2px solid var(--bg); min-width: 10px; text-align: center;
}
.btn-primary {
    background: var(--primary); color: white;
    padding: 9px 20px; border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 600;
    border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; transition: filter 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn-secondary {
    background: transparent; color: var(--text);
    border: 1px solid var(--border); padding: 9px 20px;
    border-radius: var(--radius-sm); text-decoration: none;
    font-weight: 500; cursor: pointer; font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* â”€â”€ HERO BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hub-hero {
    position: relative; z-index: 1;
    text-align: center;
    padding: 4rem 2rem 3rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(to bottom, rgba(255,111,0,0.04), transparent);
}
.hub-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}
.hub-hero h1 span { color: var(--primary); }
.hub-hero p { color: var(--muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; }
.hero-stats {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
    margin-top: 1.5rem;
}
.hero-stat { text-align: center; }
.hero-stat strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem; font-weight: 700; color: var(--primary);
}
.hero-stat span { font-size: 0.8rem; color: var(--muted); }

/* â”€â”€ MAIN LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hub-container {
    position: relative; z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 960px) { .hub-container { grid-template-columns: 1fr; } }

/* â”€â”€ FILTER PANEL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.filter-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky; top: 76px;
}
.filter-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.25rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.filter-panel-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem; font-weight: 700;
}
.filter-clear-btn {
    background: none; border: none; color: var(--muted);
    font-size: 0.78rem; cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
}
.filter-clear-btn:hover { color: var(--primary); }

.filter-group { margin-bottom: 1.1rem; }
.filter-group label {
    display: block; color: var(--muted);
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 1px; font-weight: 700; margin-bottom: 8px;
}
.filter-group select,
.filter-group input {
    width: 100%; padding: 10px 12px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text);
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.filter-group select option { background: var(--bg-card); color: var(--text); }
.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-dim);
}
.filter-group input::placeholder { color: rgba(255,255,255,0.25); }
.filter-group select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237a7a96' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    padding-right: 32px;
}
.search-box { position: relative; }
.search-box i {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: var(--muted); font-size: 0.85rem; pointer-events: none;
}
.search-box input { padding-left: 36px; font-size: 16px; } /* 16px prevents iOS zoom */

/* Rate range */
.rate-range { display: flex; gap: 8px; }
.rate-range input { flex: 1; }

/* Filter tags */
.active-filters {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 1rem;
}
.filter-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--primary-dim); border: 1px solid var(--primary-glow);
    color: var(--primary); padding: 3px 10px; border-radius: 20px;
    font-size: 0.73rem; font-weight: 600;
}
.filter-tag button { background: none; border: none; color: var(--primary); cursor: pointer; padding: 0; font-size: 0.75rem; line-height: 1; }

#apply-filters {
    width: 100%; margin-top: 0.5rem;
    padding: 12px; font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* â”€â”€ RESULTS HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.results-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.25rem; flex-wrap: wrap; gap: 10px;
}
.results-count { color: var(--muted); font-size: 0.88rem; }
.results-count strong { color: var(--text); }
.sort-select {
    padding: 8px 30px 8px 12px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text); font-size: 0.83rem; font-family: 'DM Sans', sans-serif;
    cursor: pointer; outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%237a7a96' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center; appearance: none;
}
.sort-select option { background: var(--bg-card); }

/* â”€â”€ TALENT GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.25rem;
}

/* â”€â”€ TALENT CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.talent-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
    cursor: pointer;
}
.talent-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,111,0,0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.card-banner {
    height: 90px;
    background: linear-gradient(135deg, #1a1520 0%, #0f1225 50%, #1a1a25 100%);
    position: relative;
    overflow: visible;
}
.card-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,111,0,0.08), transparent 60%);
}
.card-banner-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 20px 20px;
}
.availability-badge {
    position: absolute; top: 12px; right: 12px; z-index: 1;
    padding: 4px 10px; border-radius: 20px;
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.availability-badge.open { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.availability-badge.collaboration-only { background: rgba(59,130,246,0.12); color: var(--blue); border: 1px solid rgba(59,130,246,0.3); }
.availability-badge.busy { background: rgba(239,68,68,0.12); color: var(--danger); border: 1px solid rgba(239,68,68,0.3); }

.card-avatar-wrap {
    position: absolute;
    bottom: -28px;
    left: 18px;
    z-index: 3;
}
.card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-card);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    display: block; /* prevents inline gap */
}
.card-online-dot {
    position: absolute; bottom: 3px; right: 3px;
    width: 12px; height: 12px;
    background: var(--green); border: 2px solid var(--bg-card);
    border-radius: 50%;
}

.card-body {
    padding: 44px 18px 16px;
    flex: 1; display: flex; flex-direction: column;
    z-index: 3;
}
.card-name-row {
    display: flex; align-items: center; gap: 6px; margin-bottom: 3px;
}
.talent-name {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.verified-icon img { width: 16px; height: 16px; flex-shrink: 0; }
.talent-role {
    color: var(--primary); font-size: 0.8rem;
    font-weight: 600; text-transform: capitalize;
    margin-bottom: 10px; letter-spacing: 0.3px;
}
.talent-bio {
    color: var(--muted); font-size: 0.82rem; line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.talent-skills { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.skill-pill {
    background: var(--bg); border: 1px solid var(--border);
    font-size: 0.72rem; padding: 3px 9px; border-radius: 5px; color: var(--muted);
    transition: border-color 0.2s, color 0.2s;
}
.talent-card:hover .skill-pill { border-color: rgba(255,111,0,0.2); }

.card-meta {
    display: flex; align-items: center; gap: 14px;
    font-size: 0.78rem; color: var(--muted); margin-bottom: 14px;
}
.card-meta i { color: var(--primary); margin-right: 3px; }

.card-footer {
    padding: 12px 18px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.02);
}
.rate-info { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.rate-info small { font-size: 0.72rem; color: var(--muted); font-weight: 400; }

.card-actions { display: flex; gap: 8px; }
.card-btn {
    padding: 7px 14px; border-radius: 7px;
    font-size: 0.8rem; font-weight: 600; cursor: pointer;
    text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
    transition: all 0.2s; font-family: 'DM Sans', sans-serif; border: none;
}
.card-btn.primary { background: var(--primary); color: white; }
.card-btn.primary:hover { filter: brightness(1.15); }
.card-btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.card-btn.ghost:hover { border-color: var(--primary); color: var(--primary); }

/* â”€â”€ FEATURED / VERIFIED CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.talent-card.featured {
    border-color: rgba(255,111,0,0.3);
    box-shadow: 0 0 0 1px rgba(255,111,0,0.15), inset 0 1px 0 rgba(255,111,0,0.08);
}
.talent-card.featured .card-banner {
    background: linear-gradient(135deg, #1f1510 0%, #180e05 50%, #1f1a10 100%);
}
.featured-badge {
    position: absolute; top: 12px; left: 12px; z-index: 1;
    background: var(--primary); color: white;
    font-size: 0.65rem; font-weight: 700; padding: 3px 8px;
    border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* â”€â”€ SKELETON LOADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.skeleton { background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.skeleton-banner { height: 90px; } 
.skeleton-body { padding: 40px 18px 18px; }
.skeleton-circle { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 40px; }
.skeleton-line { height: 12px; margin-bottom: 8px; }
.skeleton-line.w80 { width: 80%; }
.skeleton-line.w60 { width: 60%; }
.skeleton-line.w40 { width: 40%; }

/* â”€â”€ EMPTY / ERROR STATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hub-state {
    text-align: center; padding: 4rem 2rem;
    color: var(--muted); grid-column: 1 / -1;
}
.hub-state i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; display: block; }
.hub-state h3 { font-family: 'Syne', sans-serif; margin-bottom: 0.5rem; color: var(--text); }
.hub-state p { font-size: 0.88rem; }

/* â”€â”€ TALENT PROFILE PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-hero {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.profile-hero-banner {
    height: 220px;
    background: linear-gradient(135deg, #0f0c1a 0%, #120b06 50%, #0a0a14 100%);
    position: relative;
}
.profile-hero-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(255,111,0,0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 30%, rgba(100,50,220,0.07) 0%, transparent 45%);
}
.profile-hero-banner-pattern {
    position: absolute; inset: 0; opacity: 0.035;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 24px 24px;
}
.profile-hero-content {
    position: relative; z-index: 1;
    padding: 0 2rem 2rem;
    display: flex; align-items: flex-end; gap: 1.5rem;
    margin-top: -60px; flex-wrap: wrap;
}
.ph-avatar-wrap { position: relative; flex-shrink: 0; }
.ph-avatar {
    width: 120px; height: 120px;
    border-radius: 50%; object-fit: cover;
    border: 4px solid #931f1f80;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.ph-online-dot {
    position: absolute; bottom: 6px; right: 6px;
    width: 18px; height: 18px;
    background: var(--green); border: 3px solid var(--bg-card);
    border-radius: 50%;
}
.ph-info { flex: 1; min-width: 0; padding-top: 70px; }
.ph-name-row {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap; margin-bottom: 4px;
}
.ph-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
    letter-spacing: -0.5px;
}
.profile-combine{
    display: flex;
    width: 100dvw;
    align-items: center;
    gap: 10px;
     
}
.combine-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.ph-verified img { width: 24px; }
.ph-role { color: var(--primary); font-size: 0.95rem; font-weight: 600; text-transform: capitalize; margin-bottom: 0.5rem; }
.ph-location { color: var(--muted); font-size: 0.85rem; display: flex; align-items: center; gap: 5px; }
.ph-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; flex-shrink: 0; }

/* Availability strip */
.avail-strip {
    display: flex; align-items: center; gap: 14px;
    padding: 0.75rem 2rem; border-top: 1px solid var(--border);
    flex-wrap: wrap; gap: 10px;
}
.avail-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 700;
}
.avail-pill.open { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.avail-pill.collaboration-only { background: rgba(59,130,246,0.1); color: var(--blue); border: 1px solid rgba(59,130,246,0.25); }
.avail-pill.busy { background: rgba(239,68,68,0.1); color: var(--danger); border: 1px solid rgba(239,68,68,0.25); }
.avail-meta { color: var(--muted); font-size: 0.82rem; display: flex; align-items: center; gap: 5px; }

/* Profile layout */
.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    align-items: start;
}
@media (max-width: 860px) { .profile-layout { display: flex; flex-direction: column-reverse; } .profile-combine{ display: flex; flex-direction: column; align-items: flex-start; gap: 10px; } .ph-info { padding-top: 5px; } .ph-actions { padding-top: 0; margin-left: 0; } }

.profile-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: sticky; top: 76px;
}
.sidebar-section {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.sidebar-section:last-child { border-bottom: none; }
.sidebar-section h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--muted); margin-bottom: 0.9rem;
}

/* Info rows */
.info-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--muted); }
.info-row .value { font-weight: 600; text-align: right; }

/* Social links */
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 50%; color: var(--muted);
    text-decoration: none; font-size: 0.95rem;
    transition: all 0.2s;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* Skills */
.skills-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tag {
    background: var(--bg); border: 1px solid var(--border);
    padding: 4px 10px; border-radius: 6px;
    font-size: 0.78rem; color: var(--muted);
    transition: all 0.2s;
}
.skill-tag:hover { border-color: var(--primary); color: var(--primary); }

/* Profile main content */
.profile-main {}
.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}
.content-card h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    padding-bottom: 1rem; margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.content-card h2 i { color: var(--primary); }
.bio-text { color: var(--muted); line-height: 1.8; font-size: 0.92rem; }
.bio-text p { margin-bottom: 1rem; }
.bio-text h1, .bio-text h2, .bio-text h3 { color: var(--text); font-family: 'Syne', sans-serif; margin: 1.2rem 0 0.5rem; }
.bio-text code { background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; font-size: 0.85em; }
.bio-text a { color: var(--primary); }

/* Portfolio grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.portfolio-item {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.portfolio-item:hover { border-color: rgba(255,111,0,0.3); transform: translateY(-2px); }
.portfolio-item-img {
    width: 100%; height: 140px;
    object-fit: cover; display: block;
    background: var(--bg-hover);
}
.portfolio-item-img-ph {
    height: 140px; background: var(--bg-hover);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 2rem;
}
.portfolio-item-body { padding: 1rem; }
.portfolio-item h5 { font-weight: 700; margin-bottom: 5px; font-size: 0.9rem; }
.portfolio-item p { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; line-height: 1.4; }
.portfolio-link {
    font-size: 0.78rem; color: var(--primary);
    text-decoration: none; font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}
.portfolio-link:hover { text-decoration: underline; }
.portfolio-tech { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.portfolio-tech span { font-size: 0.68rem; background: rgba(255,111,0,0.08); color: var(--primary); padding: 2px 7px; border-radius: 4px; }

/* Timeline (experience) */
.timeline { display: flex; flex-direction: column; position: relative; padding-left: 24px; }
.timeline::before {
    content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
    width: 2px; background: linear-gradient(to bottom, var(--primary), transparent); opacity: 0.3; border-radius: 2px;
}
.tl-item { display: flex; gap: 16px; padding-bottom: 1.5rem; position: relative; }
.tl-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--bg); border: 2px solid var(--primary);
    flex-shrink: 0; margin-top: 2px; position: relative; z-index: 1;
    box-shadow: 0 0 8px rgba(255,111,0,0.3); margin-left: -24px; margin-right: 8px;
}
.tl-body h4 { font-weight: 600; margin-bottom: 3px; font-size: 0.95rem; }
.tl-meta { font-size: 0.78rem; color: var(--primary); font-weight: 500; display: block; margin-bottom: 5px; }
.tl-body p { color: var(--muted); font-size: 0.85rem; line-height: 1.55; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.stat-item { text-align: center; padding: 1rem; background: var(--bg); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.stat-item strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.5rem; color: var(--primary); }
.stat-item span { font-size: 0.78rem; color: var(--muted); }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 1rem; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem; transition: border-color 0.2s; }
.testimonial-card:hover { border-color: rgba(255,111,0,0.25); }
.t-quote { color: var(--primary); opacity: 0.3; font-size: 1.5rem; margin-bottom: 0.5rem; }
.t-stars { color: var(--primary); font-size: 0.82rem; letter-spacing: 1px; margin-bottom: 0.5rem; }
.t-text { color: var(--muted); font-size: 0.85rem; line-height: 1.6; font-style: italic; margin-bottom: 1rem; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.t-avatar img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.t-info strong { display: block; font-size: 0.88rem; }
.t-info span { font-size: 0.75rem; color: var(--muted); }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 960px) {
    .filter-panel { position: static; }
    .hub-hero { padding: 2.5rem 1.5rem 2rem; }
    .hero-stats { gap: 1.5rem; }
    .ph-info { padding-top: 0; }
}
@media (max-width: 640px) {
    .hub-container { padding: 1rem; gap: 1rem; }
    .hub-nav { padding: 0 1rem; }
    .talent-grid { grid-template-columns: 1fr; }
    .profile-hero-content { flex-direction: column; padding: 0 1rem 1.5rem; margin-top: -40px; }
    .ph-actions { margin-left: 0; padding-top: 0; }
    .ph-avatar { width: 90px; height: 90px; }
    .profile-layout { padding: 0 1rem; }
    .stats-row { grid-template-columns: repeat(3,1fr); }
    .portfolio-grid { grid-template-columns: 1fr; }
    .avail-strip { padding: 0.75rem 1rem; }
}
