/* Extracted from app.css */
/* ─── PROFILE ─── */
.profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.avatar-lg { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.avatar-placeholder-lg {
    width: 72px; height: 72px; border-radius: 50%;
    background: #FAE3D8; color: var(--brand-500);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.8rem;
}

.profile-info h2 { margin-bottom: 0.15rem; }

.profile-readonly-grid {
    display: grid;
    gap: 0.65rem;
}

.profile-readonly-row {
    display: grid;
    grid-template-columns: minmax(110px, 0.32fr) 1fr;
    gap: 0.8rem;
    align-items: baseline;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.profile-readonly-row:last-child {
    border-bottom: 0;
}

.profile-readonly-label {
    color: var(--text-tertiary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.profile-readonly-value {
    color: var(--text-primary);
    font-weight: 650;
}

.profile-managed-note {
    margin: 0.85rem 0 0;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.45;
}

.profile-managed-note a {
    color: var(--brand-500);
    font-weight: 800;
    text-decoration: none;
}

.profile-managed-note a:hover {
    text-decoration: underline;
}

.profile-timezone-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.45rem;
}

.person-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.9rem;
}

.nav-profile-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.nav-profile-link:hover { color: var(--text-primary); }

/* ─── PLAN DISPLAY ─── */
.plan-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.plan-name {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
}

.plan-detail { color: var(--text-secondary); font-size: 0.9rem; }

.badge-trialing { background: var(--info-50); color: var(--info-500); }
.badge-past_due { background: var(--warning-50); color: var(--warning-500); }
.badge-paused { background: var(--gray-100); color: var(--text-tertiary); }
