/* ==================== PROFESSIONAL PLATFORM STYLES ==================== */
/* Black background, blue (#0066FF) accent, white text, dark gray cards */
/* SE Professional is a career networking platform for ID-verified users */
/* NO InMail paywall - messaging is FREE and unlimited */
/* Employment/education claims are SELF-REPORTED and NOT verified by SE */
/* SE does NOT conduct background checks */
/* Tagline: "Connect. Grow. Lead." */

:root {
    /* Professional Platform Colors - BLUE */
    /* Maps to SE theme variables for dark/light mode support */
    --pro-primary: var(--se-accent, #0066FF);
    --pro-primary-hover: var(--se-accent-hover, #0055DD);
    --pro-primary-light: rgba(0, 102, 255, 0.15);
    --pro-primary-dark: #0044AA;
    --pro-success: #22c55e;
    --pro-warning: #f97316;
    --pro-verified: #3b82f6;

    /* Professional Backgrounds - Maps to SE theme */
    --pro-bg: var(--se-bg, #000000);
    --pro-bg-section: var(--se-bg-elevated, #0a0a0a);
    --pro-bg-card: var(--se-bg-card, #1a1a1a);
    --pro-bg-card-hover: var(--se-bg-elevated, #222222);
    --pro-bg-input: var(--se-bg-input, #141414);

    /* Professional Text - Maps to SE theme */
    --pro-text: var(--se-text, #FFFFFF);
    --pro-text-secondary: var(--se-text-secondary, #AAAAAA);
    --pro-text-muted: var(--se-text-muted, #666666);

    /* Professional Borders - Maps to SE theme */
    --pro-border: var(--se-border, rgba(0, 102, 255, 0.2));
    --pro-border-light: var(--se-border-card, rgba(255, 255, 255, 0.1));
}

/* ==================== BASE LAYOUT ==================== */
.pro-page {
    background: var(--pro-bg);
    min-height: 100vh;
    color: var(--pro-text);
    font-family: 'Raleway', sans-serif;
}

.pro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pro-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pro-content {
    padding-top: 80px;
    padding-bottom: 60px;
}

.pro-grid-2 {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
}

.pro-grid-3 {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 1.5rem;
}

/* ==================== HEADER ==================== */
.pro-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pro-border-light);
    z-index: 1000;
    padding: 0.75rem 1rem;
}

.pro-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.pro-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pro-primary);
}

.pro-logo-icon {
    width: 32px;
    height: 32px;
}

.pro-search-bar {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.pro-search-input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 20px;
    color: var(--pro-text);
    font-size: 0.9rem;
}

.pro-search-input:focus {
    border-color: var(--pro-primary);
    outline: none;
}

.pro-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pro-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pro-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.pro-nav-link:hover,
.pro-nav-link.active {
    color: var(--pro-text);
    background: var(--pro-primary-light);
}

.pro-nav-link svg {
    width: 24px;
    height: 24px;
}

.pro-nav-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--pro-primary);
    color: var(--pro-bg);
    font-size: 0.65rem;
    padding: 0.1rem 0.35rem;
    border-radius: 10px;
    font-weight: 700;
}

.pro-nav-cta {
    padding: 0.5rem 1rem;
    background: var(--pro-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.pro-nav-cta:hover {
    background: var(--pro-primary-dark);
    transform: translateY(-1px);
}

/* ==================== BUTTONS ==================== */
.pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.pro-btn-primary {
    background: var(--pro-primary) !important;
    color: var(--pro-text) !important;
}

.pro-btn-primary:hover {
    background: var(--pro-primary-hover) !important;
    transform: translateY(-1px);
}

.pro-btn-secondary {
    background: transparent;
    color: var(--pro-primary);
    border: 2px solid var(--pro-primary);
}

.pro-btn-secondary:hover {
    background: var(--pro-primary-light);
}

.pro-btn-ghost {
    background: transparent;
    color: var(--pro-text-secondary);
}

.pro-btn-ghost:hover {
    color: var(--pro-text);
    background: var(--pro-bg-card);
}

.pro-btn-connect {
    background: var(--pro-primary);
    color: var(--pro-bg);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
}

.pro-btn-message {
    background: transparent;
    color: var(--pro-primary);
    border: 1px solid var(--pro-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
}

.pro-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.pro-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.pro-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==================== CARDS ==================== */
.pro-card {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.pro-card-hover:hover {
    background: var(--pro-bg-card-hover);
    border-color: var(--pro-border);
}

.pro-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pro-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pro-text);
}

.pro-card-link {
    color: var(--pro-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==================== PROFILE CARD ==================== */
.profile-card {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    overflow: hidden;
}

.profile-banner {
    height: 100px;
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark));
}

.profile-content {
    padding: 0 1.5rem 1.5rem;
    margin-top: -40px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--pro-bg-card);
    background: var(--pro-bg-section);
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-verified {
    color: var(--pro-verified);
}

.profile-headline {
    color: var(--pro-text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.profile-location {
    color: var(--pro-text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pro-border-light);
}

.profile-stat {
    text-align: center;
}

.profile-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pro-primary);
}

.profile-stat-label {
    font-size: 0.75rem;
    color: var(--pro-text-muted);
    text-transform: uppercase;
}

/* ==================== OPEN TO WORK BADGE ==================== */
.open-to-work {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    color: var(--pro-success);
    font-size: 0.85rem;
    font-weight: 500;
}

.hiring-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--pro-primary-light);
    border: 1px solid var(--pro-border);
    border-radius: 20px;
    color: var(--pro-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==================== CONNECTION CARD ==================== */
.connection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.connection-card {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.2s;
}

.connection-card:hover {
    border-color: var(--pro-border);
}

.connection-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    background: var(--pro-bg-section);
    overflow: hidden;
}

.connection-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.connection-title {
    font-size: 0.8rem;
    color: var(--pro-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.connection-mutual {
    font-size: 0.75rem;
    color: var(--pro-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

/* ==================== FORMS ==================== */
.pro-form-group {
    margin-bottom: 1.25rem;
}

.pro-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--pro-text-secondary);
}

.pro-input,
.pro-select,
.pro-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--pro-bg-input);
    border: 1px solid var(--pro-border-light);
    border-radius: 8px;
    color: var(--pro-text);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.pro-input:focus,
.pro-select:focus,
.pro-textarea:focus {
    outline: none;
    border-color: var(--pro-primary);
}

.pro-input::placeholder {
    color: var(--pro-text-muted);
}

.pro-textarea {
    min-height: 100px;
    resize: vertical;
}

/* ==================== PULSE FEED (Insights) ==================== */
.pulse-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-card {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    overflow: hidden;
}

.insight-header {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1rem 0;
}

.insight-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pro-bg-section);
    flex-shrink: 0;
}

.insight-author-info {
    flex: 1;
}

.insight-author-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-author-headline {
    font-size: 0.8rem;
    color: var(--pro-text-muted);
    line-height: 1.3;
}

.insight-timestamp {
    font-size: 0.75rem;
    color: var(--pro-text-muted);
}

.insight-body {
    padding: 1rem;
}

.insight-content {
    line-height: 1.6;
    white-space: pre-wrap;
}

.insight-article-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.insight-media {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.insight-tag {
    padding: 0.25rem 0.75rem;
    background: var(--pro-primary-light);
    color: var(--pro-primary);
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.insight-stats {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--pro-text-muted);
    border-top: 1px solid var(--pro-border-light);
}

.insight-actions {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--pro-border-light);
}

.insight-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: var(--pro-text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.insight-action:hover {
    background: var(--pro-bg-card-hover);
    color: var(--pro-primary);
}

.insight-action.active {
    color: var(--pro-primary);
}

/* ==================== ENDORSE BUTTON (Like) ==================== */
.endorse-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.endorse-btn.endorsed {
    color: var(--pro-primary);
}

/* ==================== SKILLS & VOUCHES ==================== */
.skills-section {
    margin-bottom: 1.5rem;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--pro-bg-input);
    border: 1px solid var(--pro-border-light);
    border-radius: 20px;
    font-size: 0.85rem;
}

.skill-vouch-count {
    background: var(--pro-primary);
    color: var(--pro-bg);
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.skill-top {
    border-color: var(--pro-primary);
    background: var(--pro-primary-light);
}

.vouch-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

/* ==================== EXPERIENCE & EDUCATION ==================== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
}

.timeline-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--pro-bg-section);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pro-primary);
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-weight: 600;
    font-size: 1rem;
}

.timeline-subtitle {
    color: var(--pro-text-secondary);
    font-size: 0.9rem;
}

.timeline-duration {
    color: var(--pro-text-muted);
    font-size: 0.85rem;
}

.timeline-description {
    margin-top: 0.75rem;
    color: var(--pro-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== REFERENCES (Recommendations) ==================== */
.reference-card {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.reference-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reference-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pro-bg-section);
}

.reference-author-name {
    font-weight: 600;
}

.reference-relationship {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
}

.reference-content {
    line-height: 1.6;
    color: var(--pro-text-secondary);
}

.reference-quote-mark {
    font-size: 3rem;
    color: var(--pro-primary);
    line-height: 1;
    margin-right: 0.5rem;
}

/* ==================== JOBS / OPPORTUNITIES ==================== */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.job-card {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.2s;
}

.job-card:hover {
    border-color: var(--pro-border);
}

.job-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.job-company-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--pro-bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--pro-primary);
}

.job-title {
    font-weight: 600;
    color: var(--pro-primary);
    margin-bottom: 0.25rem;
}

.job-company {
    font-size: 0.9rem;
}

.job-location {
    color: var(--pro-text-muted);
    font-size: 0.85rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.job-badge {
    padding: 0.25rem 0.5rem;
    background: var(--pro-bg-input);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--pro-text-secondary);
}

.job-salary {
    color: var(--pro-success);
    font-weight: 600;
    font-size: 0.9rem;
}

.job-applicants {
    font-size: 0.8rem;
    color: var(--pro-text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ==================== MESSAGES ==================== */
.messages-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: calc(100vh - 80px);
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    overflow: hidden;
}

.conversations-list {
    border-right: 1px solid var(--pro-border-light);
    overflow-y: auto;
}

.conversation-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--pro-border-light);
    cursor: pointer;
    transition: background 0.2s;
}

.conversation-item:hover,
.conversation-item.active {
    background: var(--pro-bg-card-hover);
}

.conversation-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pro-bg-section);
    flex-shrink: 0;
}

.conversation-preview {
    flex: 1;
    min-width: 0;
}

.conversation-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.conversation-last-message {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-time {
    font-size: 0.75rem;
    color: var(--pro-text-muted);
}

.conversation-unread {
    width: 8px;
    height: 8px;
    background: var(--pro-primary);
    border-radius: 50%;
}

.chat-area {
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--pro-border-light);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message-bubble {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message-sent {
    align-self: flex-end;
    background: var(--pro-primary);
    color: var(--pro-bg);
}

.message-received {
    align-self: flex-start;
    background: var(--pro-bg-input);
}

.chat-input-area {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-top: 1px solid var(--pro-border-light);
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--pro-bg-input);
    border: 1px solid var(--pro-border-light);
    border-radius: 20px;
    color: var(--pro-text);
}

.free-messaging-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    color: var(--pro-success);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==================== CIRCLES (Groups) ==================== */
.circle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.circle-card {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.circle-card:hover {
    border-color: var(--pro-border);
}

.circle-cover {
    height: 80px;
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark));
}

.circle-content {
    padding: 1rem;
}

.circle-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.circle-industry {
    color: var(--pro-primary);
    font-size: 0.85rem;
}

.circle-description {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
    margin: 0.5rem 0;
    line-height: 1.4;
}

.circle-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--pro-text-muted);
}

.circle-type {
    padding: 0.2rem 0.5rem;
    background: var(--pro-bg-input);
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* ==================== NETWORK STATS ==================== */
.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.network-stat {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.network-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pro-primary);
}

.network-stat-label {
    font-size: 0.85rem;
    color: var(--pro-text-muted);
}

/* ==================== DISCOVER SECTION ==================== */
.discover-section {
    margin-bottom: 2rem;
}

.discover-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.people-you-know {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

/* ==================== DISCLAIMER ==================== */
.disclaimer-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.disclaimer-content {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-primary);
    border-radius: 16px;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.disclaimer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pro-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.disclaimer-text {
    white-space: pre-line;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--pro-text-secondary);
    margin-bottom: 1.5rem;
}

.disclaimer-highlight {
    background: rgba(234, 179, 8, 0.1);
    border-left: 3px solid var(--pro-primary);
    padding: 1rem;
    margin: 1rem 0;
}

.self-reported-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(249, 115, 22, 0.2);
    color: var(--pro-warning);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==================== LOADING & EMPTY STATES ==================== */
.pro-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.pro-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--pro-border-light);
    border-top-color: var(--pro-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* @keyframes spin - defined in global.css */

.pro-empty {
    text-align: center;
    padding: 3rem;
}

.pro-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--pro-text-muted);
}

.pro-empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pro-empty-text {
    color: var(--pro-text-muted);
    margin-bottom: 1.5rem;
}

/* ==================== MODAL ==================== */
.pro-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.pro-modal-overlay.open {
    display: flex;
}

.pro-modal {
    background: var(--pro-bg-card);
    border: 1px solid var(--pro-border-light);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.pro-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--pro-border-light);
}

.pro-modal-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.pro-modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--pro-text-muted);
}

.pro-modal-body {
    padding: 1.5rem;
}

.pro-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--pro-border-light);
}

/* ==================== FOOTER ==================== */
.pro-footer {
    background: var(--pro-bg-section);
    border-top: 1px solid var(--pro-border-light);
    padding: 2rem 1rem;
}

.pro-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pro-footer-tagline {
    color: var(--pro-primary);
    font-weight: 600;
}

.pro-footer-links {
    display: flex;
    gap: 1.5rem;
}

.pro-footer-link {
    color: var(--pro-text-muted);
    font-size: 0.9rem;
}

.pro-footer-link:hover {
    color: var(--pro-primary);
}

.pro-footer-copyright {
    color: var(--pro-text-muted);
    font-size: 0.85rem;
}

/* ==================== TABS ==================== */
.pro-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--pro-border-light);
    margin-bottom: 1.5rem;
}

.pro-tab {
    padding: 0.75rem 1.5rem;
    color: var(--pro-text-muted);
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.pro-tab:hover {
    color: var(--pro-text);
}

.pro-tab.active {
    color: var(--pro-primary);
    border-bottom-color: var(--pro-primary);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .pro-grid-3 {
        grid-template-columns: 1fr;
    }

    .pro-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hide nav links but keep TTS/mic buttons visible */
    .pro-nav-link,
    .pro-nav-cta {
        display: none;
    }

    .pro-nav #ttsToggle,
    .pro-nav #voiceToggle {
        display: inline-flex !important;
    }

    .pro-search-bar {
        display: none;
    }

    .pro-header-content {
        justify-content: space-between;
        padding: 0 0.75rem;
    }

    .pro-logo span {
        display: none;
    }

    .connection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .messages-layout {
        grid-template-columns: 1fr;
    }

    .network-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #ttsToggle, #voiceToggle {
        width: 32px !important;
        height: 32px !important;
    }

    .pro-container-wide {
        padding: 0 0.75rem;
    }

    .pro-card {
        padding: 1rem;
    }

    .connection-grid {
        grid-template-columns: 1fr;
    }

    .profile-card .profile-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pro-btn {
        min-height: 44px;
        font-size: 0.875rem;
    }

    .insight-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 375px) {
    #ttsToggle, #voiceToggle {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
    }

    #ttsToggle svg, #voiceToggle svg {
        width: 14px !important;
        height: 14px !important;
    }

    .pro-logo {
        font-size: 0.9rem;
    }

    .pro-logo svg {
        width: 32px;
        height: 32px;
    }

    .pro-container-wide {
        padding: 0 0.5rem;
    }

    .pro-card {
        padding: 0.875rem;
    }

    .profile-card .profile-name {
        font-size: 1rem;
    }

    .profile-card .profile-headline {
        font-size: 0.8rem;
    }

    .pro-footer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Voice buttons are now in header - see voice-ui.css */

/* ==================== VERIFIED ID BADGE ==================== */
.verified-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(59, 130, 246, 0.2);
    color: var(--pro-verified);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}
