:root {
  --bg: #0d1b2e;
  --bg-2: #0f2137;
  --bg-card: #11253a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #f5f0e8;
  --text-2: #c8c2b8;
  --text-muted: #8a857c;
  --green: #10b981;
  --border: rgba(245, 158, 11, 0.15);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 8vw;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.hero-content { max-width: 540px; }

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-family: 'Sora', sans-serif;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.meta-item svg { color: var(--accent); flex-shrink: 0; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.cta-btn-primary {
  background: var(--accent);
  color: #0d1117;
}

.cta-btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
}

.cta-btn-secondary:hover { border-color: var(--accent); }

.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--bg-2);
  padding: 6rem 8vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-family: 'Sora', sans-serif;
}
.manifesto-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: normal;
}
.manifesto-context {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 600px;
}

/* ─── SECTION SHARED ─── */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: 'Sora', sans-serif;
}
.section-sub {
  color: var(--text-2);
  margin-top: 0.75rem;
  max-width: 560px;
}

/* ─── CURRICULUM ─── */
.curriculum {
  padding: 6rem 8vw;
  max-width: 1400px;
  margin: 0 auto;
}
.curriculum-header { margin-bottom: 4rem; }
.curriculum-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.modules { display: grid; gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; }

.module {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  transition: background 0.2s;
}
.module:hover { background: #132941; }

.module-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  min-width: 2.5rem;
  line-height: 1;
  padding-top: 0.2rem;
}

.module-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.module-content p {
  font-size: 0.9375rem;
  color: var(--text-2);
  max-width: 600px;
}

/* ─── OUTCOMES ─── */
.outcomes {
  background: var(--bg-2);
  padding: 6rem 8vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-header { margin-bottom: 4rem; }
.outcomes-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
}
.outcome { padding: 0; }
.outcome-stat {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.outcome-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'Sora', sans-serif;
}
.outcome-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TOOLS ─── */
.tools {
  padding: 6rem 8vw;
  max-width: 1400px;
  margin: 0 auto;
}
.tools-header { margin-bottom: 4rem; }
.tools-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.tool-logo { margin-bottom: 1.25rem; }
.tool-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.tool-card p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}
.tools-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── COMMUNITY ─── */
.community {
  background: var(--bg-2);
  padding: 6rem 8vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.community-content { max-width: 640px; }
.community h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.community > .community-content > p {
  color: var(--text-2);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.community-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.community-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.community-features svg { flex-shrink: 0; margin-top: 2px; }

/* ─── CLOSING ─── */
.closing {
  padding: 7rem 8vw;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.closing p {
  color: var(--text-2);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.closing-tags span {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  font-family: 'Sora', sans-serif;
}
.closing-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.closing-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #0d1b2e;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.closing-cta-primary:hover { opacity: 0.88; }
.closing-cta-secondary {
  display: inline-block;
  color: var(--text-2);
  font-size: 0.9375rem;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: color 0.15s ease;
}
.closing-cta-secondary:hover { color: var(--text); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 8vw;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 300px;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 6rem 8vw;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials-header { margin-bottom: 4rem; }
.testimonials-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
}
.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Sora', sans-serif;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ─── PRICING ─── */
.pricing {
  background: var(--bg-2);
  padding: 6rem 8vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-header { margin-bottom: 4rem; text-align: center; }
.pricing-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.pricing-header .section-sub { margin: 0.75rem auto 0; max-width: 560px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}
.pricing-card-featured {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.06);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d1b2e;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  margin-bottom: 1rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.price-currency {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}
.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.pricing-features svg { flex-shrink: 0; margin-top: 2px; }
.pricing-cta {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: #0d1b2e;
  border: none;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
}
.pricing-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-cta-featured {
  background: var(--accent);
}
.pricing-early-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}
.pricing-guarantee svg { flex-shrink: 0; }


/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 6vw 4rem;
    gap: 3rem;
    min-height: auto;
  }
  .hero-illustration { order: -1; }
  .workflow-svg { max-width: 320px; }
  .manifesto, .curriculum, .tools, .outcomes, .community, .closing,
  .testimonials, .pricing {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .module { gap: 1.25rem; padding: 1.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-note { text-align: left; }
  .outcomes-grid, .tools-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─── COURSE PAGES ─── */
.course-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3vw;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  position: sticky;
  top: 0;
  z-index: 10;
}
.course-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.course-nav { display: flex; gap: 2rem; }
.course-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.course-nav a:hover { color: var(--text); }

/* Layout */
.course-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 65px);
  max-width: 1200px;
  margin: 0 auto;
}

/* Sidebar */
.course-sidebar {
  border-right: 1px solid var(--border);
  padding: 2rem 1.5rem;
  position: sticky;
  top: 65px;
  height: calc(100vh - 65px);
  overflow-y: auto;
  background: var(--bg);
}
.sidebar-back {
  margin-bottom: 1.75rem;
}
.sidebar-back a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.sidebar-back a:hover { color: var(--accent); }
.sidebar-course { margin-bottom: 1.75rem; }
.sidebar-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  margin-bottom: 0.35rem;
}
.sidebar-course-title {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.sidebar-modules { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-module-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.sidebar-module-link:hover { background: var(--bg-card); }
.sidebar-module-link.active { background: var(--accent-dim); }
.sidebar-mod-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
}
.sidebar-mod-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}
.sidebar-lesson-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Lesson links in sidebar (lesson page only) */
.sidebar-lessons { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.5rem 0 0.5rem 0.75rem; }
.sidebar-lesson-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8125rem;
  color: var(--text-2);
  transition: background 0.15s, color 0.15s;
}
.sidebar-lesson-link:hover { background: var(--bg-2); color: var(--text); }
.sidebar-lesson-link.active { background: var(--accent-dim); color: var(--accent); }
.sidebar-lesson-link svg { flex-shrink: 0; opacity: 0.6; }
.sidebar-lesson-link.completed { color: var(--text-muted); }
.sidebar-lesson-link.completed .sidebar-lesson-check { color: var(--accent); opacity: 1; }
.sidebar-lesson-link.completed:hover { color: var(--text); }
.sidebar-lesson-check { flex-shrink: 0; opacity: 0.9; }

/* Main content */
.course-main {
  padding: 3rem 3.5rem;
  max-width: 760px;
}

/* /my-progress — large overall % + stacked module bar + recent list */
.progress-overall {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: -1rem 0 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.progress-overall-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.progress-overall-cap {
  font-size: 0.9rem;
  color: var(--text-2);
  font-family: 'Figtree', sans-serif;
}

.progress-bar {
  height: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}
.progress-bar-seg {
  background: var(--accent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.35);
  min-width: 8px;
  transition: filter 0.15s;
}
.progress-bar-seg:last-child { border-right: none; }
.progress-bar-seg:hover { filter: brightness(1.15); }

.progress-bar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0.85rem 0 2.5rem;
  font-size: 0.8125rem;
  color: var(--text-2);
  font-family: 'Figtree', sans-serif;
}
.progress-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.progress-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.progress-recent { margin-top: 1rem; }
.progress-recent-heading {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}
.progress-recent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.progress-recent-row:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: var(--bg-2);
}
.progress-recent-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
}
.progress-recent-module {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 100px;
  padding: 0.25rem 0.55rem;
  letter-spacing: 0.04em;
}
.progress-recent-time {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.muted { color: var(--text-2); font-family: 'Figtree', sans-serif; font-size: 0.9375rem; }
.muted a { color: var(--accent); text-decoration: none; }
.muted a:hover { text-decoration: underline; }

/* Module hero */
.module-hero { margin-bottom: 3rem; }
.module-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  margin-bottom: 1rem;
}
.module-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.module-description {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  max-width: 560px;
  line-height: 1.65;
}
.module-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.meta-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-family: 'Sora', sans-serif;
}

/* Lesson list */
.lesson-list { margin-bottom: 3rem; }
.lesson-list-heading {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.lesson-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s, background 0.15s;
  margin-bottom: 0.75rem;
}
.lesson-row:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateX(4px);
  background: #132941;
}
.lesson-row-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  min-width: 1.5rem;
  text-align: center;
}
.lesson-row-content { flex: 1; }
.lesson-row-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-family: 'Sora', sans-serif;
}
.lesson-row-meta { display: flex; align-items: center; gap: 0.75rem; }
.lesson-type {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: 'Sora', sans-serif;
}
.lesson-type.video { background: rgba(16, 185, 129, 0.12); color: var(--green); }
.lesson-type.exercise { background: var(--accent-dim); color: var(--accent); }
.lesson-duration { font-size: 0.8rem; color: var(--text-muted); }
.lesson-row-arrow { color: var(--text-muted); font-size: 1rem; transition: color 0.15s; }
.lesson-row:hover .lesson-row-arrow { color: var(--accent); }
.lesson-row-check { color: var(--accent); flex-shrink: 0; }
.lesson-row.completed { color: var(--text-muted); }
.lesson-row.completed .lesson-row-check { color: var(--accent); }

/* Lesson header */
.lesson-header { margin-bottom: 2.5rem; }
.lesson-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.lesson-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.lesson-breadcrumb a:hover { color: var(--accent); }
.lesson-header h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.lesson-meta { display: flex; align-items: center; gap: 0.75rem; }
.lesson-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
}
.lesson-type-badge.video { background: rgba(16, 185, 129, 0.12); color: var(--green); }
.lesson-type-badge.exercise { background: var(--accent-dim); color: var(--accent); }
.lesson-duration-badge {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Lesson content */
.lesson-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  color: var(--text-2);
  font-size: 0.9375rem;
}
.lesson-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.75rem 0 0.75rem;
}
.lesson-content h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
}
.lesson-content p { margin-bottom: 1rem; }
.lesson-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.lesson-content li { margin-bottom: 0.4rem; }
.lesson-placeholder {
  text-align: center;
  padding: 2rem;
}
.placeholder-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: 'Sora', sans-serif;
}

/* Nav between modules / lessons */
.module-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.lesson-complete-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.complete-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #0d1b2e;
  border: none;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}
.complete-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-1px); }
.complete-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.complete-check {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  font-family: 'Sora', sans-serif;
}
.completion-banner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--text);
}
.completion-banner strong { font-family: 'Sora', sans-serif; font-size: 1.1rem; }
.completion-cert-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
}
.completion-cert-link:hover { text-decoration: underline; }
.lesson-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.15s;
  max-width: 48%;
}
.nav-btn:hover { border-color: rgba(245, 158, 11, 0.4); color: var(--accent); background: var(--accent-dim); }
.nav-btn.next { margin-left: auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .course-layout { grid-template-columns: 1fr; }
  .course-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
  }
  .sidebar-modules { display: none; }
  .course-main { padding: 2rem 6vw; }
  .module-nav, .lesson-nav { flex-direction: column; }
  .nav-btn { max-width: 100%; }
  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 6vw 4rem;
    gap: 3rem;
    min-height: auto;
  }
  .hero-illustration { order: -1; }
  .workflow-svg { max-width: 320px; }
  .manifesto, .curriculum, .tools, .outcomes, .community, .closing,
  .testimonials, .pricing {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .module { gap: 1.25rem; padding: 1.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-note { text-align: left; }
  .outcomes-grid, .tools-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .progress-bar-legend { gap: 0.5rem 1rem; }
  .progress-recent-row { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .progress-recent-time { white-space: normal; }
  .progress-overall { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}

@media (max-width: 480px) {
  .hero-meta { flex-direction: column; gap: 0.75rem; }
  .closing-tags { gap: 0.5rem; }
  .course-nav { gap: 1rem; }
}

.hero-preview-link { margin-top: 1rem; font-family: 'Figtree', sans-serif; font-size: .9375rem; }
.hero-preview-link a { color: var(--accent); text-decoration: none; font-weight: 500; }
.hero-preview-link a:hover { text-decoration: underline; }

.preview-banner {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 1rem;
}
