/* =============================================
   DESIGN SYSTEM — Overlens Bootcamp Aula 03
   Green/Emerald palette for Money theme
   ============================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    --accent-primary: #10b981;
    --accent-secondary: #34d399;
    --accent-glow: rgba(16, 185, 129, 0.3);
    --purple: #7c5cfc;
    --purple-light: #a78bfa;
    --gradient-main: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #7c5cfc 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.08) 100%);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(16, 185, 129, 0.2);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.12);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 120px;
    --container-max: 1200px;
    --radius-sm: 8px; --radius-md: 12px; --radius-lg: 20px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* NAV */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition-smooth); background: transparent; }
#navbar.scrolled { background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); padding: 10px 0; }
.nav-container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--text-primary); text-decoration: none; letter-spacing: 2px; display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.4rem; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition-fast); }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: var(--bg-glass); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition-fast); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 120px 24px 80px; overflow: hidden; }
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.35; animation: orbFloat 20s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: #10b981; top: -15%; right: -10%; }
.orb-2 { width: 400px; height: 400px; background: #06b6d4; bottom: -10%; left: -10%; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: #7c5cfc; top: 40%; left: 30%; animation-delay: -14s; opacity: 0.18; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(30px, -40px) scale(1.05); } 50% { transform: translate(-20px, 20px) scale(0.95); } 75% { transform: translate(40px, 30px) scale(1.02); } }
.hero-content { text-align: center; position: relative; z-index: 1; max-width: 800px; }
.hero-badge { display: inline-block; background: var(--bg-glass); border: 1px solid var(--border-subtle); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 32px; backdrop-filter: blur(10px); letter-spacing: 1px; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px; }
.gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; line-height: 1.8; }
.hero-subtitle strong { color: var(--accent-secondary); }
.hero-meta { display: flex; justify-content: center; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--gradient-main); color: white; text-decoration: none; padding: 16px 36px; border-radius: 50px; font-weight: 600; transition: var(--transition-smooth); box-shadow: var(--shadow-glow); }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(16, 185, 129, 0.3); }

/* SECTIONS */
.section { padding: var(--section-padding) 0; position: relative; }
.section-dark { background: var(--bg-secondary); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.section-label { display: inline-block; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; }
.section-desc strong { color: var(--accent-secondary); }
.glass-card { background: var(--bg-glass); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); backdrop-filter: blur(12px); padding: 40px; transition: var(--transition-smooth); }
.glass-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }

/* PREMISES */
.premises-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.premise-card { padding: 32px; position: relative; overflow: hidden; }
.premise-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-main); opacity: 0; transition: var(--transition-smooth); }
.premise-card:hover::before { opacity: 1; }
.premise-card:hover { transform: translateY(-4px); }
.premise-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.25; line-height: 1; margin-bottom: 12px; }
.premise-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; }
.premise-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.premise-tag { font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; background: rgba(16, 185, 129, 0.08); color: var(--accent-secondary); border: 1px solid rgba(16, 185, 129, 0.12); display: inline-block; }

/* MASLOW */
.maslow-section { padding: 48px; }
.maslow-section h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 32px; text-align: center; }
.maslow-pyramid { display: flex; flex-direction: column; gap: 4px; max-width: 700px; margin: 0 auto 24px; }
.maslow-level { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-radius: var(--radius-sm); }
.maslow-content h4 { font-family: var(--font-heading); font-size: 0.95rem; }
.maslow-content p { font-size: 0.8rem; color: var(--text-muted); }
.maslow-money { font-size: 0.78rem; font-weight: 600; white-space: nowrap; }
.maslow-1 { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.12); }
.maslow-2 { background: rgba(6, 182, 212, 0.08); border: 1px solid rgba(6, 182, 212, 0.12); }
.maslow-3 { background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.12); }
.maslow-4 { background: rgba(124, 92, 252, 0.08); border: 1px solid rgba(124, 92, 252, 0.12); }
.maslow-5 { background: rgba(236, 72, 153, 0.08); border: 1px solid rgba(236, 72, 153, 0.12); }
.maslow-note { font-size: 0.88rem; color: var(--text-secondary); text-align: center; }

/* IDENTITY */
.identity-visual { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.identity-wrong, .identity-right { padding: 36px; }
.identity-wrong h3, .identity-right h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 4px; }
.identity-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.identity-flow { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.id-circle { padding: 16px; border-radius: var(--radius-md); text-align: center; min-width: 100px; }
.id-circle span { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }
.id-circle small { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }
.id-arrow { font-size: 1.3rem; color: var(--text-muted); font-weight: 700; }
.id-result-outer { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.15); color: #f87171; }
.id-process-mid { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.15); color: #fbbf24; }
.id-identity-inner { background: rgba(100, 100, 120, 0.1); border: 1px solid rgba(100, 100, 120, 0.15); color: var(--text-muted); }
.id-identity-core { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.15); color: #34d399; }
.id-process-nat { background: rgba(6, 182, 212, 0.1); border: 1px solid rgba(6, 182, 212, 0.15); color: #22d3ee; }
.id-result-comes { background: rgba(124, 92, 252, 0.1); border: 1px solid rgba(124, 92, 252, 0.15); color: var(--purple-light); }
.identity-problems p, .identity-benefits p { font-size: 0.88rem; color: var(--text-secondary); padding: 4px 0; }
.identity-problems p::before { content: ''; }
.identity-benefits p::before { content: ''; }

.identity-money { padding: 48px; margin-bottom: 0; }
.identity-money h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 24px; }
.identity-money-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.id-money-bad, .id-money-good { padding: 24px; border-radius: var(--radius-md); }
.id-money-bad { background: rgba(239, 68, 68, 0.04); border: 1px solid rgba(239, 68, 68, 0.08); }
.id-money-good { background: rgba(16, 185, 129, 0.04); border: 1px solid rgba(16, 185, 129, 0.08); }
.id-money-bad h4, .id-money-good h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 8px; }
.id-money-bad p, .id-money-good p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.id-money-bad blockquote, .id-money-good blockquote { font-size: 0.85rem; color: var(--text-muted); font-style: italic; border-left: 3px solid var(--border-subtle); padding: 10px 16px; margin: 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.id-money-bad blockquote { border-left-color: #ef4444; background: rgba(239, 68, 68, 0.03); }
.id-money-good blockquote { border-left-color: #10b981; background: rgba(16, 185, 129, 0.03); }
.identity-key { padding: 16px 20px; background: rgba(245, 158, 11, 0.06); border: 1px solid rgba(245, 158, 11, 0.1); border-radius: var(--radius-md); }
.identity-key p { font-size: 0.9rem; color: var(--text-secondary); }

/* MONEY SYSTEM */
.money-system { padding: 48px; margin-bottom: 48px; }
.msd-capacity { text-align: center; margin-bottom: 24px; }
.msd-capacity h4 { font-family: var(--font-heading); font-size: 1.2rem; }
.msd-capacity p { font-size: 0.85rem; color: var(--text-muted); }
.msd-flows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.msd-flows > div { padding: 24px; border-radius: var(--radius-md); text-align: center; }
.msd-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.msd-flows h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 6px; }
.msd-flows p { font-size: 0.85rem; color: var(--text-secondary); }
.msd-flows small { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 6px; }
.msd-input { background: rgba(16, 185, 129, 0.06); border: 1px solid rgba(16, 185, 129, 0.12); }
.msd-storage { background: rgba(124, 92, 252, 0.06); border: 1px solid rgba(124, 92, 252, 0.12); }
.msd-output { background: rgba(239, 68, 68, 0.06); border: 1px solid rgba(239, 68, 68, 0.12); }

.subsection-title { font-family: var(--font-heading); font-size: 1.3rem; text-align: center; margin-bottom: 28px; }
.money-buckets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.money-bucket { padding: 28px; }
.mb-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mb-icon { font-size: 1.5rem; }
.mb-header h4 { font-family: var(--font-heading); font-size: 1.1rem; }
.money-bucket > p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.money-bucket ul { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.money-bucket ul li { font-size: 0.85rem; color: var(--text-secondary); padding-left: 16px; position: relative; }
.money-bucket ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-primary); font-size: 0.8rem; }
.mb-result { text-align: center; padding: 8px; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 600; }
.mb-result-good { background: rgba(16, 185, 129, 0.08); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.12); }
.mb-result-neutral { background: rgba(124, 92, 252, 0.08); color: var(--purple-light); border: 1px solid rgba(124, 92, 252, 0.12); }
.mb-result-bad { background: rgba(239, 68, 68, 0.08); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.12); }
.mb-invest { border-left: 3px solid #10b981; }
.mb-cost { border-left: 3px solid var(--purple); }
.mb-expense { border-left: 3px solid #ef4444; }

/* DEBT */
.debt-comparison { padding: 48px; }
.debt-comparison h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 28px; text-align: center; }
.debt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.debt-card { padding: 28px; border-radius: var(--radius-md); }
.debt-card h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; }
.debt-card > p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; }
.debt-good { background: rgba(16, 185, 129, 0.04); border: 1px solid rgba(16, 185, 129, 0.1); }
.debt-bad { background: rgba(239, 68, 68, 0.04); border: 1px solid rgba(239, 68, 68, 0.1); }
.debt-example { padding: 16px; background: rgba(255,255,255,0.02); border-radius: var(--radius-sm); }
.debt-example strong { font-size: 0.85rem; display: block; margin-bottom: 8px; }
.debt-example ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.debt-example ul li { font-size: 0.82rem; color: var(--text-secondary); padding-left: 14px; position: relative; }
.debt-example ul li::before { content: '·'; position: absolute; left: 0; font-weight: 700; }
.debt-good .debt-example ul li::before { color: #34d399; }
.debt-bad .debt-example ul li::before { color: #f87171; }
.debt-formula { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* ERRORS & WINS */
.ea-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.ea-title { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 20px; text-align: center; }
.ea-title-bad { color: #f87171; }
.ea-title-good { color: #34d399; }
.ea-card { padding: 24px; margin-bottom: 12px; }
.ea-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 8px; }
.ea-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.ea-bad { border-left: 3px solid rgba(239, 68, 68, 0.3); }
.ea-good { border-left: 3px solid rgba(16, 185, 129, 0.3); }

/* EXIT PLAN */
.exit-plan { padding: 0; overflow: hidden; margin-bottom: 48px; }
.exit-header { background: var(--gradient-main); padding: 32px 40px; }
.exit-header h3 { font-family: var(--font-heading); font-size: 1.5rem; }
.exit-steps { padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.exit-step { display: flex; gap: 20px; align-items: flex-start; }
.exit-num { width: 44px; height: 44px; border-radius: 50%; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; color: var(--accent-secondary); flex-shrink: 0; }
.exit-content h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 6px; }
.exit-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* IDEAS */
.ideas-title { font-family: var(--font-heading); font-size: 1.3rem; text-align: center; margin-bottom: 8px; }
.ideas-subtitle { text-align: center; font-size: 0.92rem; color: var(--text-muted); margin-bottom: 32px; }
.ideas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.idea-card { background: var(--bg-glass); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px; text-align: center; transition: var(--transition-smooth); }
.idea-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.idea-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.idea-card h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 6px; }
.idea-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* GOLDEN RULE */
.golden-rule { display: flex; gap: 24px; align-items: center; padding: 36px; }
.golden-icon { font-size: 2.5rem; flex-shrink: 0; }
.golden-content h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; }
.golden-content blockquote { border-left: 3px solid var(--accent-primary); padding: 12px 18px; margin: 0 0 12px; background: rgba(16, 185, 129, 0.04); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; font-size: 0.95rem; color: var(--text-secondary); }
.golden-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* EXERCISE */
.section-exercise { background: linear-gradient(180deg, var(--bg-primary) 0%, #080d0a 100%); }
.exercise-main { padding: 0; overflow: hidden; margin-bottom: 48px; }
.exercise-header { background: var(--gradient-main); padding: 32px 40px; }
.exercise-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(255, 255, 255, 0.2); padding: 6px 14px; border-radius: 50px; margin-bottom: 12px; }
.exercise-header h3 { font-family: var(--font-heading); font-size: 1.6rem; }
.exercise-body { padding: 40px; }
.exercise-parts { display: flex; flex-direction: column; gap: 36px; }
.ex-part { border-left: 3px solid var(--accent-primary); padding-left: 24px; }
.ex-part-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ex-part-num { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: rgba(16, 185, 129, 0.1); color: var(--accent-secondary); padding: 4px 12px; border-radius: 50px; }
.ex-part-header h4 { font-family: var(--font-heading); font-size: 1.1rem; }
.ex-part ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ex-part ul li { font-size: 0.92rem; color: var(--text-secondary); padding-left: 20px; position: relative; line-height: 1.6; }
.ex-part ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-primary); }

/* RECOMMENDATIONS */
.recommendations { margin-bottom: 48px; padding: 36px; }
.recommendations h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 20px; }
.rec-grid { display: flex; flex-direction: column; gap: 16px; }
.rec-item { display: flex; gap: 14px; align-items: flex-start; }
.rec-icon { font-size: 1.5rem; flex-shrink: 0; }
.rec-item div strong { font-family: var(--font-heading); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.rec-item div p { font-size: 0.85rem; color: var(--text-secondary); }

/* NEXT CLASS */
.next-class { display: flex; gap: 24px; align-items: flex-start; padding: 36px; }
.next-icon { font-size: 2.5rem; flex-shrink: 0; }
.next-content h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px; }
.next-content > p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.bootcamp-schedule { display: flex; gap: 12px; flex-wrap: wrap; }
.schedule-item { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-subtle); font-size: 0.85rem; color: var(--text-muted); }
.schedule-item.done { background: rgba(16, 185, 129, 0.06); border-color: rgba(16, 185, 129, 0.12); color: #6ee7b7; }
.schedule-item.active { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.25); color: var(--accent-secondary); }
.schedule-item.next { background: rgba(124, 92, 252, 0.1); border-color: rgba(124, 92, 252, 0.2); color: var(--purple-light); }
.schedule-num { font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; opacity: 0.6; }

/* FOOTER */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border-subtle); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; letter-spacing: 2px; }
.footer-brand p { font-family: var(--font-body); font-weight: 400; font-size: 0.9rem; color: var(--text-muted); letter-spacing: 0; margin-top: 4px; }
.footer-nav a { color: var(--accent-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: var(--transition-fast); }
.footer-nav a:hover { color: var(--text-primary); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }
    .premises-grid, .money-buckets, .ideas-grid, .msd-flows { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --section-padding: 64px; }
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 10, 15, 0.97); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: 8px; opacity: 0; pointer-events: none; transition: var(--transition-smooth); z-index: 999; }
    .nav-links.active { opacity: 1; pointer-events: all; }
    .nav-links a { font-size: 1.2rem; padding: 12px 24px; }
    .premises-grid, .money-buckets, .identity-visual, .identity-money-grid, .debt-grid, .ea-grid, .ideas-grid, .msd-flows { grid-template-columns: 1fr; }
    .glass-card { padding: 28px; }
    .exercise-header, .exit-header { padding: 24px 28px; }
    .exercise-body, .exit-steps { padding: 28px; }
    .next-class, .golden-rule { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .bootcamp-schedule { flex-direction: column; }
}
