    /* ============================================
       FOUNDERS PAGE STYLES — Redesigned
       ============================================ */

    .page-header {
        background: linear-gradient(135deg, var(--accent-subtle) 0%, var(--secondary-subtle) 100%);
        padding: 2.5rem 0 1.75rem 0;
        margin-bottom: 1.5rem;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

    .page-header::before {
        display: none;
    }

    .page-title {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.8rem;
        margin-bottom: 0.35rem;
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        z-index: 2;
    }

    .page-subtitle {
        color: var(--text-secondary);
        font-size: 0.95rem;
        position: relative;
        z-index: 2;
    }

    /* Stats Bar */
    .stats-bar {
        background: var(--bg-card);
        border-radius: 14px;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid var(--border-color);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        flex-wrap: wrap;
    }

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

    .stat-number {
        font-family: var(--font-heading);
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--accent);
        line-height: 1.2;
    }
    .stat-number.secondary { color: var(--secondary); }

    .stat-label {
        color: var(--text-secondary);
        font-size: 0.78rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Export button */
    .btn-export {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        color: var(--text-secondary);
        padding: 0.4rem 0.85rem;
        border-radius: 8px;
        font-size: 0.78rem;
        font-family: var(--font-heading);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    .btn-export:hover {
        background: var(--accent-subtle);
        color: var(--accent);
        border-color: var(--accent);
    }

    /* Main Layout */
    .main-content-wrapper {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .main-content-grid {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 1.5rem;
        align-items: start;
    }

    /* ========== FILTERS SIDEBAR ========== */
    .filters-container {
        background: var(--bg-card);
        border-radius: 16px;
        padding: 1.25rem;
        border: 1px solid var(--border-color);
        position: sticky;
        top: calc(var(--navbar-height) + 1.5rem);
        height: fit-content;
        max-height: calc(100vh - var(--navbar-height) - 3rem);
        overflow-y: auto;
    }

    .filters-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.25rem;
        padding-bottom: 0.85rem;
        border-bottom: 1px solid var(--border-color);
    }

    .filters-title {
        color: var(--text-primary);
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .filters-title i { color: var(--accent); }

    .clear-filters {
        background: var(--gradient-danger);
        color: white;
        border: none;
        padding: 0.3rem 0.65rem;
        border-radius: 8px;
        font-size: 0.72rem;
        font-weight: 500;
        cursor: pointer;
        transition: all var(--transition-base);
        text-decoration: none;
    }
    .clear-filters:hover { color: white; }
    @media (hover: hover) {
        .clear-filters:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
        }
    }

    /* Accordion Filters */
    .accordion-filter {
        margin-bottom: 0.6rem;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        overflow: hidden;
        background: var(--bg-card-hover);
    }

    .accordion-header {
        padding: 0.7rem 0.85rem;
        background: transparent;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all var(--transition-base);
        border: none;
        width: 100%;
        text-align: left;
        color: var(--text-primary);
    }
    .accordion-header:hover { background: var(--accent-subtle); }
    .accordion-header.active { background: var(--accent-subtle); }

    .accordion-title {
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 0.82rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary);
    }

    .accordion-icon {
        color: var(--accent);
        transition: transform var(--transition-base);
        font-size: 0.7rem;
    }
    .accordion-header.active .accordion-icon { transform: rotate(90deg); }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .accordion-content.active { max-height: 300px; }

    .accordion-body {
        padding: 0.6rem 0.85rem;
        max-height: 250px;
        overflow-y: auto;
    }

    .filter-option {
        display: flex;
        align-items: center;
        padding: 0.35rem 0;
        transition: all 0.15s ease;
        border-radius: 6px;
        margin-bottom: 0.15rem;
    }
    .filter-option:hover {
        background: var(--accent-subtle);
        padding-left: 0.4rem;
    }

    .filter-checkbox {
        width: 15px;
        height: 15px;
        margin-right: 0.5rem;
        accent-color: var(--accent);
        cursor: pointer;
        flex-shrink: 0;
    }

    .filter-label {
        color: var(--text-primary);
        font-size: 0.8rem;
        cursor: pointer;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .apply-filters {
        width: 100%;
        background: var(--gradient-accent);
        color: white;
        border: none;
        padding: 0.65rem 1.25rem;
        border-radius: 10px;
        font-family: var(--font-heading);
        font-size: 0.88rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition-base);
        margin-top: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    /* ========== FOUNDERS GRID — REDESIGNED ========== */
    .founders-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .founder-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 0;
        cursor: pointer;
        transition: all 0.25s ease;
        position: relative;
        overflow: hidden;
    }

    .founder-card:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }

    /* Gradient top accent */
    .founder-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(67, 97, 238, 0.08));
        pointer-events: none;
    }

    .founder-card:hover {
        border-color: rgba(0, 212, 170, 0.25);
        background: var(--bg-card-hover);
    }
    @media (hover: hover) {
        .founder-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
    }

    /* Favorite button */
    .btn-favorite {
        position: absolute;
        top: 0.65rem;
        right: 0.65rem;
        z-index: 3;
        background: rgba(0,0,0,0.2);
        border: none;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: rgba(255,255,255,0.7);
        font-size: 0.7rem;
        transition: all 0.2s;
        backdrop-filter: blur(4px);
    }
    .btn-favorite:hover { background: rgba(239, 68, 68, 0.3); color: #ff6b6b; }

    .founder-card-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1.25rem 0.75rem;
        position: relative;
        z-index: 1;
    }

    .founder-avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--bg-card);
        box-shadow: 0 2px 12px rgba(0,0,0,0.2);
        margin-bottom: 0.65rem;
    }

    .founder-initials {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--gradient-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 0.65rem;
        box-shadow: 0 2px 12px rgba(0,0,0,0.2);
        border: 3px solid var(--bg-card);
    }

    .founder-name-block {
        width: 100%;
        min-width: 0;
    }

    .founder-name {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.92rem;
        color: var(--text-primary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
        line-height: 1.3;
    }

    .founder-title {
        font-size: 0.75rem;
        color: var(--text-secondary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
        margin-top: 0.15rem;
    }

    /* Meta info */
    .founder-meta {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.65rem 1.25rem;
        border-top: 1px solid var(--border-color);
        margin: 0 0;
    }

    .founder-meta-item {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        font-size: 0.75rem;
        color: var(--text-secondary);
    }

    .founder-meta-item i {
        color: var(--accent);
        width: 13px;
        text-align: center;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .founder-meta-item span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .founder-company-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        background: var(--accent-subtle);
        color: var(--accent);
        padding: 0.2rem 0.55rem;
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 600;
    }

    .founder-prev-company {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        background: var(--secondary-subtle);
        color: var(--secondary);
        padding: 0.2rem 0.55rem;
        border-radius: 6px;
        font-size: 0.7rem;
        font-weight: 600;
    }

    /* Footer */
    .founder-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.6rem 1.25rem;
        border-top: 1px solid var(--border-color);
        background: rgba(0,0,0,0.02);
    }
    [data-theme="dark"] .founder-card-footer {
        background: rgba(255,255,255,0.02);
    }

    .founder-social-links {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: var(--accent-subtle);
        color: var(--accent);
        font-size: 0.75rem;
        transition: all var(--transition-fast);
        text-decoration: none;
    }
    .social-link:hover {
        background: var(--accent);
        color: white;
    }
    @media (hover: hover) {
        .social-link:hover { transform: translateY(-1px); }
    }

    .social-link.twitter {
        background: var(--secondary-subtle);
        color: var(--secondary);
    }
    .social-link.twitter:hover {
        background: var(--secondary);
        color: white;
    }

    .founder-arrow {
        color: var(--text-muted);
        font-size: 0.8rem;
        transition: all var(--transition-base);
    }
    .founder-card:hover .founder-arrow {
        color: var(--accent);
        transform: translateX(3px);
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 4rem 2rem;
        grid-column: 1 / -1;
    }
    .empty-state i {
        font-size: 3rem;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }
    .empty-state h3 {
        font-family: var(--font-heading);
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }
    .empty-state p { color: var(--text-secondary); }

    /* Section Heading */
    .section-heading {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    /* Explore All button */
    .btn-explore-all {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--gradient-accent);
        color: white;
        padding: 0.65rem 1.5rem;
        border-radius: 10px;
        font-family: var(--font-heading);
        font-size: 0.88rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
    }
    .btn-explore-all:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--accent-glow);
    }

    /* Pagination */
    .pagination-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        margin-top: 2rem;
    }
    .page-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 34px;
        height: 34px;
        border-radius: 8px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        color: var(--text-secondary);
        font-family: var(--font-heading);
        font-size: 0.82rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
    }
    .page-btn:hover {
        background: var(--accent-subtle);
        color: var(--accent);
        border-color: var(--accent);
    }
    .page-btn.active {
        background: var(--gradient-accent);
        color: white;
        border-color: transparent;
    }
    .page-dots {
        color: var(--text-muted);
        font-size: 0.8rem;
        padding: 0 0.25rem;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1200px) {
        .founders-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .main-content-grid {
            grid-template-columns: 1fr;
        }
        .filters-container {
            position: static;
            max-height: none;
        }
        .founders-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .page-title { font-size: 1.5rem; }
        .stats-bar { gap: 1.5rem; flex-wrap: wrap; }
        .founders-grid { grid-template-columns: 1fr; }
        .main-content-grid { gap: 1rem; }
        .main-content-wrapper { padding: 0 0.5rem; overflow-x: hidden; }
        .founder-card { max-width: 100%; overflow: hidden; }
        .founder-card-header { text-align: center; }
    }
