/* ==========================================================================
   MindPath — 2026 Frontend Styles
   Glassmorphism · Bento Grid · Soft UI · Micro-delight · Bold Typography
   ========================================================================== */

:root {
    --mp-primary: #6366f1;
    --mp-primary-light: #818cf8;
    --mp-accent: #a855f7;
    --mp-accent-light: #c084fc;
    --mp-gradient: linear-gradient(135deg, var(--mp-primary), var(--mp-accent));
    --mp-gradient-soft: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(168,85,247,0.12));
    --mp-gradient-hover: linear-gradient(135deg, #4f46e5, #9333ea);

    --mp-bg: #f8fafc;
    --mp-surface: #ffffff;
    --mp-surface-elevated: rgba(255,255,255,0.8);
    --mp-border: rgba(0,0,0,0.06);
    --mp-border-hover: rgba(99,102,241,0.25);

    --mp-text: #0f172a;
    --mp-text-secondary: #64748b;
    --mp-text-muted: #94a3b8;

    --mp-success: #10b981;
    --mp-warning: #f59e0b;
    --mp-danger: #ef4444;

    --mp-shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --mp-shadow-md: 0 4px 14px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --mp-shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --mp-shadow-glow: 0 0 30px rgba(99,102,241,0.15);

    --mp-radius-sm: 10px;
    --mp-radius-md: 16px;
    --mp-radius-lg: 24px;
    --mp-radius-xl: 32px;

    --mp-font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --mp-mono: 'JetBrains Mono', monospace;

    --mp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --mp-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   BASE
   ========================================================================== */

.mp-courses-wrap,
.mp-dashboard,
.mp-single-course,
.mp-auth-prompt {
    font-family: var(--mp-font);
    color: var(--mp-text);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    -webkit-font-smoothing: antialiased;
}

/* Gradient text */
.mp-title-gradient {
    background: var(--mp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.mp-subtitle {
    color: var(--mp-text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 6px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.mp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--mp-radius-sm);
    font-family: var(--mp-font);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--mp-ease);
    text-decoration: none;
    white-space: nowrap;
}

.mp-btn-primary {
    background: var(--mp-gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}
.mp-btn-primary:hover {
    background: var(--mp-gradient-hover);
    box-shadow: 0 6px 24px rgba(99,102,241,0.4);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}
.mp-btn-primary:active {
    transform: translateY(0);
}

.mp-btn-outline {
    background: transparent;
    color: var(--mp-primary);
    border: 2px solid var(--mp-primary);
}
.mp-btn-outline:hover {
    background: var(--mp-gradient-soft);
    text-decoration: none;
}

.mp-btn-ghost {
    background: transparent;
    color: var(--mp-text-secondary);
    padding: 8px 16px;
}
.mp-btn-ghost:hover {
    color: var(--mp-primary);
    background: var(--mp-gradient-soft);
}

.mp-btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
    background: var(--mp-gradient-soft);
    color: var(--mp-primary);
    font-weight: 600;
}
.mp-btn-sm:hover {
    background: var(--mp-gradient);
    color: white;
    transform: translateY(-1px);
}

/* ==========================================================================
   GLASS CARD (Glassmorphism)
   ========================================================================== */

.mp-glass-card {
    background: var(--mp-surface-elevated);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--mp-shadow-md);
    transition: box-shadow 0.3s var(--mp-ease);
}
.mp-glass-card:hover {
    box-shadow: var(--mp-shadow-lg);
}
.mp-glass-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   COURSE CATALOG — BENTO GRID
   ========================================================================== */

.mp-courses-header {
    margin-bottom: 40px;
}
.mp-courses-header h2 {
    font-size: 2.5rem;
    margin: 0;
}

.mp-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Course Card */
.mp-course-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--mp-surface);
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-border);
    overflow: hidden;
    box-shadow: var(--mp-shadow-sm);
    transition: all 0.4s var(--mp-ease);
    position: relative;
}
.mp-course-card:hover {
    box-shadow: var(--mp-shadow-lg), var(--mp-shadow-glow);
    transform: translateY(-6px);
    border-color: var(--mp-border-hover);
    text-decoration: none;
    color: inherit;
}

.mp-card-image {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--mp-gradient-soft);
    overflow: hidden;
}
.mp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--mp-ease);
}
.mp-course-card:hover .mp-card-image img {
    transform: scale(1.05);
}

.mp-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--mp-gradient);
}
.mp-card-placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(255,255,255,0.7);
}

.mp-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
}
.mp-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}
.mp-badge-free {
    background: rgba(16,185,129,0.9);
    color: white;
}
.mp-badge-price {
    background: rgba(255,255,255,0.9);
    color: var(--mp-text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mp-card-ai-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mp-ai-sparkle {
    color: var(--mp-accent-light);
    font-size: 1em;
}
.mp-ai-sparkle-lg {
    font-size: 1.3em;
}

.mp-card-body {
    padding: 20px 24px 24px;
}
.mp-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.mp-card-excerpt {
    color: var(--mp-text-secondary);
    font-size: 0.9rem;
    margin: 0 0 14px;
    line-height: 1.5;
}

.mp-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.mp-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--mp-text-muted);
    font-weight: 500;
}
.mp-meta-item svg {
    flex-shrink: 0;
}

/* ==========================================================================
   DASHBOARD — BENTO STATS
   ========================================================================== */

.mp-dash-header {
    margin-bottom: 32px;
}
.mp-dash-header h1 {
    font-size: 2.2rem;
    margin: 0;
}

.mp-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.mp-bento-card {
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: var(--mp-shadow-sm);
    transition: all 0.3s var(--mp-ease);
}
.mp-bento-card:hover {
    box-shadow: var(--mp-shadow-md);
    transform: translateY(-2px);
}
.mp-bento-accent {
    background: var(--mp-gradient);
    border: none;
    color: white;
}
.mp-bento-accent .mp-bento-label {
    color: rgba(255,255,255,0.8);
}
.mp-bento-number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}
.mp-bento-label {
    font-size: 0.85rem;
    color: var(--mp-text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   ENROLLED COURSES LIST
   ========================================================================== */

.mp-dash-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.mp-enrolled-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mp-enrolled-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-md);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--mp-ease);
    box-shadow: var(--mp-shadow-sm);
}
.mp-enrolled-card:hover {
    box-shadow: var(--mp-shadow-md);
    border-color: var(--mp-border-hover);
    transform: translateX(4px);
    text-decoration: none;
    color: inherit;
}

.mp-enrolled-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--mp-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--mp-gradient-soft);
}
.mp-enrolled-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mp-enrolled-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.mp-enrolled-info {
    flex: 1;
    min-width: 0;
}
.mp-enrolled-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.mp-enrolled-meta {
    font-size: 0.8rem;
    color: var(--mp-text-muted);
    margin-top: 4px;
    display: block;
}

.mp-enrolled-arrow {
    font-size: 1.4rem;
    color: var(--mp-text-muted);
    transition: all 0.3s var(--mp-ease);
    flex-shrink: 0;
}
.mp-enrolled-card:hover .mp-enrolled-arrow {
    color: var(--mp-primary);
    transform: translateX(4px);
}

/* ==========================================================================
   PROGRESS BAR
   ========================================================================== */

.mp-progress-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mp-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}
.mp-progress-fill {
    height: 100%;
    background: var(--mp-gradient);
    border-radius: 10px;
    transition: width 0.8s var(--mp-ease);
    position: relative;
}
.mp-progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: mp-shimmer 2s ease-in-out infinite;
}
@keyframes mp-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.mp-progress-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mp-primary);
    white-space: nowrap;
}
.mp-progress-large .mp-progress-bar {
    height: 12px;
}

/* ==========================================================================
   SINGLE COURSE
   ========================================================================== */

.mp-course-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
.mp-course-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 12px;
}
.mp-course-tagline {
    font-size: 1.1rem;
    color: var(--mp-text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}
.mp-course-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.mp-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--mp-text-secondary);
    font-weight: 500;
    padding: 6px 14px;
    background: var(--mp-gradient-soft);
    border-radius: 20px;
}
.mp-stat-ai {
    background: rgba(168,85,247,0.12);
    color: var(--mp-accent);
    font-weight: 600;
}

.mp-course-hero-video,
.mp-course-hero-image {
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    box-shadow: var(--mp-shadow-lg);
}
.mp-course-hero-video iframe,
.mp-course-hero-image img {
    width: 100%;
    display: block;
    border-radius: var(--mp-radius-lg);
}

/* Outcomes */
.mp-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}
.mp-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
}
.mp-check {
    color: var(--mp-success);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Curriculum List */
.mp-curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mp-curriculum-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--mp-radius-sm);
    transition: all 0.2s var(--mp-ease);
    border: 1px solid transparent;
}
.mp-curriculum-row:hover {
    background: var(--mp-gradient-soft);
    border-color: var(--mp-border-hover);
}
.mp-status-completed {
    opacity: 0.7;
}
.mp-status-locked {
    opacity: 0.5;
}

.mp-curriculum-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mp-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--mp-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--mp-primary);
}
.mp-check-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--mp-success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.mp-curriculum-info {
    flex: 1;
    min-width: 0;
}
.mp-curriculum-title {
    font-weight: 600;
    display: block;
    font-size: 0.95rem;
}
.mp-curriculum-type {
    font-size: 0.8rem;
    color: var(--mp-text-muted);
}

.mp-lock-icon {
    font-size: 1rem;
    opacity: 0.4;
}

/* ==========================================================================
   LESSON VIEWER
   ========================================================================== */

.mp-lesson-viewer {
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--mp-shadow-md);
    animation: mp-slideUp 0.4s var(--mp-ease);
}
.mp-lesson-viewer-header {
    margin-bottom: 24px;
}
.mp-lesson-viewer-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 12px 0 0;
}
.mp-lesson-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--mp-text);
}
.mp-lesson-content p {
    margin-bottom: 16px;
}
.mp-lesson-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 12px;
}
.mp-lesson-actions {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--mp-border);
}

@keyframes mp-slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   AI STUDY BUDDY — FLOATING PANEL
   ========================================================================== */

.mp-ai-buddy {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: var(--mp-font);
}

.mp-ai-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--mp-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--mp-font);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(99,102,241,0.35);
    transition: all 0.3s var(--mp-ease);
}
.mp-ai-toggle:hover {
    box-shadow: 0 12px 40px rgba(99,102,241,0.5);
    transform: translateY(-3px) scale(1.02);
}

.mp-ai-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 400px;
    max-height: 560px;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-lg), var(--mp-shadow-glow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: mp-panelIn 0.35s var(--mp-bounce);
}

@keyframes mp-panelIn {
    from { opacity: 0; transform: translateY(16px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.mp-ai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--mp-border);
    background: var(--mp-gradient-soft);
}
.mp-ai-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mp-ai-header-info .mp-ai-sparkle {
    font-size: 1.2rem;
}
.mp-ai-header-info strong {
    font-weight: 700;
}
.mp-ai-subtitle {
    font-size: 0.8rem;
    color: var(--mp-text-muted);
    margin-left: 4px;
}
.mp-ai-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--mp-text-muted);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}
.mp-ai-close:hover {
    background: rgba(0,0,0,0.05);
    color: var(--mp-text);
}

.mp-ai-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 380px;
}

.mp-ai-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: mp-msgIn 0.3s var(--mp-ease);
}
@keyframes mp-msgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.mp-ai-msg-user {
    flex-direction: row-reverse;
}
.mp-ai-msg-user .mp-ai-bubble {
    background: var(--mp-gradient);
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.mp-ai-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mp-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--mp-primary);
}

.mp-ai-bubble {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: 18px 18px 18px 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
    word-wrap: break-word;
}
.mp-ai-bubble strong {
    font-weight: 700;
}
.mp-ai-bubble code {
    background: rgba(0,0,0,0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--mp-mono);
    font-size: 0.85em;
}

.mp-ai-input-wrap {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid var(--mp-border);
    background: var(--mp-surface);
}
.mp-ai-input-wrap input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--mp-border);
    border-radius: 24px;
    font-family: var(--mp-font);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    background: #f8fafc;
}
.mp-ai-input-wrap input:focus {
    border-color: var(--mp-primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.mp-ai-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mp-gradient);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}
.mp-ai-send:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

/* AI Loading dots */
.mp-ai-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}
.mp-ai-typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mp-text-muted);
    animation: mp-typing 1.4s ease-in-out infinite;
}
.mp-ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.mp-ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes mp-typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* ==========================================================================
   AUTH PROMPT
   ========================================================================== */

.mp-auth-prompt {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}
.mp-auth-card {
    text-align: center;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius-xl);
    padding: 60px 48px;
    box-shadow: var(--mp-shadow-lg);
    max-width: 400px;
}
.mp-auth-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.mp-auth-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.mp-auth-card p {
    color: var(--mp-text-secondary);
    margin-bottom: 24px;
}

/* ==========================================================================
   EMPTY STATES
   ========================================================================== */

.mp-empty-state {
    text-align: center;
    padding: 60px 24px;
    grid-column: 1 / -1;
}
.mp-empty-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}
.mp-empty-state h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.mp-empty-state p {
    color: var(--mp-text-secondary);
    margin-bottom: 20px;
}
.mp-empty-small {
    padding: 32px 24px;
}

.mp-muted {
    color: var(--mp-text-muted);
    font-style: italic;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .mp-course-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mp-course-hero h1 {
        font-size: 1.8rem;
    }
    .mp-courses-header h2 {
        font-size: 1.8rem;
    }
    .mp-courses-grid {
        grid-template-columns: 1fr;
    }
    .mp-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mp-ai-panel {
        width: calc(100vw - 32px);
        right: -8px;
    }
    .mp-glass-card {
        padding: 20px;
    }
    .mp-enrolled-card {
        flex-wrap: wrap;
    }
    .mp-outcomes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mp-bento-grid {
        grid-template-columns: 1fr;
    }
    .mp-ai-panel {
        bottom: 60px;
        max-height: 70vh;
    }
}
