/* =========================================================
   APPLICANT / STARTUP DASHBOARD
========================================================= */

.applicant-dashboard {
    padding-top: 110px;
    padding-bottom: 70px;
}

/* =========================================================
   HEADER
========================================================= */

.applicant-header {
    margin-bottom: 28px;
}

.applicant-header .section-header {
    text-align: left;
}

/* =========================================================
   MAIN GRID
========================================================= */

.applicant-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
    margin-top: 28px;
}

/* =========================================================
   PROFILE DETAILS
========================================================= */

.profile-details {
    padding: 22px;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.profile-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-info-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-info-value {
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
}

.profile-description {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.profile-description-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.profile-description p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   ACTIONS
========================================================= */

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.empty-profile-card {
    text-align: center;
    margin-top: 30px;
    padding: 40px 28px;
}

.empty-profile-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.empty-profile-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.empty-profile-card p {
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.7;
}

/* =========================================================
   PROGRESS
========================================================= */

.profile-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.profile-progress-header span {
    color: var(--text-muted);
}

.profile-progress-header strong {
    color: var(--text);
}

.profile-progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 14px 0 0;
}

/* =========================================================
   INQUIRIES
========================================================= */

.inquiry-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.inquiry-item:last-child {
    border-bottom: none;
}

.inquiry-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.inquiry-email {
    font-size: 0.78rem;
    color: var(--primary-light);
    margin-top: 2px;
}

.inquiry-meta {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 4px;
}

.inquiry-new {
    color: var(--success);
    font-weight: 700;
    margin-left: 6px;
}

/* =========================================================
   STATUS BADGES
========================================================= */

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.04em;
}

.status-pill.pending {
    background: rgba(255, 184, 0, 0.12);
    color: #ffb800;
}

.status-pill.approved {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.status-pill.featured {
    background: rgba(244, 164, 74, 0.14);
    color: var(--gold);
}

.status-pill.rejected {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

/* =========================================================
   STAT CARD LARGE TEXT
========================================================= */

.stat-large-text {
    font-size: 1.5rem !important;
    line-height: 1.3;
}

.stat-status-text {
    font-size: 1.8rem !important;
    line-height: 1.3;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .applicant-grid {
        grid-template-columns: 1fr;
    }

    .profile-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .applicant-dashboard {
        padding-top: 95px;
        padding-bottom: 50px;
    }

    .profile-details {
        padding: 18px;
    }

    .profile-actions {
        flex-direction: column;
    }

    .profile-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .empty-profile-card {
        padding: 28px 18px;
    }

    .stat-large-text,
    .stat-status-text {
        font-size: 1.2rem !important;
    }
}
.profile-full-row {
    grid-column: 1 / -1;
}

.profile-section-divider {
    margin: 24px 0;
    border-top: 1px solid var(--border);
}

.profile-password-title {
    font-size: 1rem;
    margin-bottom: 12px;
}

.applicant-page-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
}

.applicant-page-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.applicant-page-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: #161014;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.applicant-page-name {
    font-weight: 800;
    color: var(--text);
}

.applicant-page-email {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.applicant-page-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.applicant-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.app-cell-title {
    font-weight: 800;
    color: var(--text);
}

.app-cell-subtext {
    margin-top: 4px;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.applicant-action-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.applicant-empty-cell {
    padding: 28px !important;
    color: var(--text-muted);
}

.applicant-help-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.applicant-help-item {
    display: flex;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    line-height: 1.5;
}

.applicant-help-item i {
    color: var(--gold);
    margin-top: 3px;
}

.status-pill.draft {
    background: rgba(148, 163, 184, 0.14);
    color: #94a3b8;
}

@media (max-width: 992px) {
    .applicant-help-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .applicant-page-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .applicant-page-actions {
        width: 100%;
        flex-direction: column;
    }

    .applicant-page-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .applicant-action-group {
        flex-direction: column;
    }

    .applicant-action-group .btn {
        width: 100%;
        justify-content: center;
    }
}

.investor-startup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.investor-startup-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
}

.investor-card-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.investor-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(244, 164, 74, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.investor-card-header h3 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-display);
}

.investor-card-header p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.investor-card-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.investor-card-meta div {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.025);
}

.investor-card-meta span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.investor-card-meta strong {
    color: var(--text);
    font-size: 0.9rem;
    word-break: break-word;
}

.investor-linked-startup {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.investor-linked-startup h4 {
    margin-bottom: 14px;
    font-family: var(--font-display);
}

.investor-note-box {
    margin-top: 18px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(244, 164, 74, 0.08);
    border: 1px solid rgba(244, 164, 74, 0.18);
}

.investor-note-box strong {
    color: var(--gold);
}

.investor-note-box p {
    margin: 8px 0 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.investor-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.investor-card-footer i {
    color: var(--gold);
}

@media (max-width: 992px) {
    .investor-startup-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .investor-card-meta {
        grid-template-columns: 1fr;
    }

    .investor-card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .investor-card-footer .btn {
        width: 100%;
        justify-content: center;
    }
}