.leadership-aurora {
    background:
        radial-gradient(circle at 14% 16%, rgba(239, 13, 51, 0.08), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(14, 165, 233, 0.08), transparent 24%),
        linear-gradient(180deg, #050505 0%, #0a0d12 100%);
}

.orb {
    display: none;
}

.command-center,
.executive-stage,
.board-shell,
.signal-card,
.signal-strip,
.navigation-card,
.profile-panel,
.board-panel,
.competency-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.command-center,
.executive-stage,
.board-shell {
    position: relative;
    overflow: hidden;
}

.executive-stage::before,
.board-shell::before,
.leadership-grid {
    display: none;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.spotlight-tile {
    min-height: 5.75rem;
    display: flex;
    align-items: end;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.spotlight-tile span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

.metric-orb {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ef0d33;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.navigation-card,
.profile-panel,
.board-panel,
.competency-card {
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.navigation-card:hover,
.profile-panel:hover,
.board-panel:hover,
.competency-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
    transform: none;
}

.profile-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-panel,
.board-panel {
    position: relative;
    overflow: hidden;
}

.profile-panel::before,
.board-panel::before,
.competency-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.profile-avatar {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-featured,
.profile-wide {
    background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 768px) {
    .command-center {
        min-height: auto;
    }

    .spotlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
