/* ── Schulungskatalog + Lernpfad-Player ─────────────────────── */
.catalog-page,
.path-page {
  background: #F8F7FF;
  color: var(--navy);
}
.catalog-page .nav,
.path-page .nav {
  background: #ffffff;
}
.catalog-page .nav-logo,
.catalog-page .nav-link,
.path-page .nav-logo,
.path-page .nav-link { color: #0B0358; }
.catalog-page .nav-toggle span,
.path-page .nav-toggle span { background: var(--navy); }

/* ── Learner bar ──────────────────────────────────────────── */
.learner-bar {
  background: #160B52;
  color: #fff;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  font-size: 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
  position: sticky;
  top: var(--nav-h);
  z-index: 99;
}
.learner-name { font-weight: 600; }
.learner-points-display {
  display: flex;
  align-items: center;
  gap: 6px;
}
.learner-pts-val {
  font-weight: 700;
  color: #e909f6;
}
.learner-bar-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.learner-bar-link:hover { color: #e909f6; }

/* ── Catalog hero ─────────────────────────────────────────── */
.catalog-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 72px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.catalog-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
}
.catalog-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--navy);
  max-width: 820px;
  margin-bottom: 24px;
}
.catalog-intro {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(22,11,82,0.5);
  max-width: 560px;
}

/* ── Catalog filter tabs ──────────────────────────────────── */
.catalog-filters {
  padding: 0 var(--pad-x) 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(22,11,82,0.5);
  background: rgba(22,11,82,0.05);
  border: 1px solid rgba(22,11,82,0.12);
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 5px;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--magenta);
  background: rgba(233,9,246,0.06);
  border-color: rgba(233,9,246,0.3);
}

/* ── Section wrapper ──────────────────────────────────────── */
.catalog-section {
  padding: 0 var(--pad-x) 88px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.catalog-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22,11,82,0.35);
  margin-bottom: 32px;
}

/* ── Course subsections (Aktuelle Entwicklungen / Beginner …) */
.catalog-subsection {
  margin-bottom: 48px;
}
.catalog-subsection:last-child {
  margin-bottom: 0;
}
.catalog-subsection-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}
.catalog-coming-soon {
  font-size: 0.85rem;
  color: rgba(22,11,82,0.35);
  padding: 16px 0;
}

/* ── Path card ─────────────────────────────────────────────── */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 0;
}
.path-card {
  background: #fff;
  border: 1px solid rgba(22,11,82,0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.path-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(22,11,82,0.1);
}
.path-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.path-type-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e909f6;
}
.level-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.level-badge.level-einsteiger  { background: rgba(34,197,94,0.1);  color: #15803d; }
.level-badge.level-fortgeschritten { background: rgba(234,179,8,0.1); color: #a16207; }
.level-badge.level-experte     { background: rgba(239,68,68,0.1);  color: #b91c1c; }

.path-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--navy);
}
.path-card-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(22,11,82,0.5);
}
.path-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.76rem;
  color: rgba(22,11,82,0.4);
  font-family: 'Space Grotesk', sans-serif;
}
.path-card-footer {
  margin-top: auto;
}
.path-progress-bar {
  height: 3px;
  background: rgba(22,11,82,0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.path-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #160B52, #e909f6);
  border-radius: 2px;
  transition: width 0.5s ease;
}
.path-progress-label {
  font-size: 0.7rem;
  color: rgba(22,11,82,0.38);
  font-family: 'Space Grotesk', sans-serif;
}
.path-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
}
.path-card-cta.cta-started { color: #e909f6; }
.path-card-cta.cta-done    { color: #15803d; }

/* ── Mini course cards ─────────────────────────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.mini-course-card {
  background: #fff;
  border: 1px solid rgba(22,11,82,0.08);
  border-radius: 12px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mini-course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,11,82,0.09);
}
.mini-course-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.mini-course-desc {
  font-size: 0.81rem;
  color: rgba(22,11,82,0.5);
  line-height: 1.55;
}
.mini-course-meta {
  font-size: 0.7rem;
  color: rgba(22,11,82,0.35);
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.mini-course-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--magenta, #e909f6);
  letter-spacing: 0.03em;
  margin-top: auto;
  padding-top: 6px;
}
.mini-course-cta--gated {
  color: rgba(22,11,82,0.38);
  font-weight: 600;
}
.mini-course-card--gated {
  border-color: rgba(22,11,82,0.14);
  background: rgba(22,11,82,0.015);
}

/* ── Learner name prompt overlay ───────────────────────────── */
.learner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,11,82,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.learner-overlay.hidden { display: none; }
.learner-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 460px;
  width: 90%;
  box-shadow: 0 24px 80px rgba(22,11,82,0.18);
}
.learner-box-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.learner-box-sub {
  font-size: 0.86rem;
  color: rgba(22,11,82,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}
.learner-name-input {
  width: 100%;
  border: 1.5px solid rgba(22,11,82,0.18);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: #F8F7FF;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.learner-name-input:focus { border-color: #e909f6; }
.learner-confirm-btn {
  width: 100%;
  background: #160B52;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.learner-confirm-btn:hover { background: #1f0e6e; }

/* ══════════════════════════════════════════════════════════
   LERNPFAD LANDING PAGE
   ══════════════════════════════════════════════════════════ */

/* Top bar */
.path-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #160B52;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  gap: 16px;
}
.path-topbar-back {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.path-topbar-back:hover { color: #fff; }
.path-topbar-title {
  flex: 1;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 12px;
}
.path-topbar-right {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.path-topbar-pts-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #e909f6;
}
.path-topbar-pts-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

/* Hero section */
.path-hero-section {
  background: linear-gradient(150deg, #160B52 0%, #1d0f6b 100%);
  padding: 72px clamp(20px, 5vw, 80px) 80px;
  position: relative;
  overflow: hidden;
}
.path-hero-section::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(233,9,246,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.path-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.path-hero-text {
  flex: 0 1 540px;
  min-width: 0;
}
.path-hero-gauge { flex-shrink: 0; }
.gauge-svg {
  width: 267px;
  height: auto;
  display: block;
}
.path-hero-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e909f6;
  margin-bottom: 16px;
}
.path-hero-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.path-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  max-width: 580px;
}
.path-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 24px;
}
.path-hero-progress-wrap { margin-top: 4px; }
.path-hero-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
  max-width: 300px;
}
.path-hero-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #e909f6, #b000c8);
  border-radius: 3px;
  transition: width 0.6s ease;
}
.path-hero-bar-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Space Grotesk', sans-serif;
}

/* Content section */
.path-content-section {
  padding: 64px clamp(20px, 5vw, 80px) 96px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.path-content-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22,11,82,0.35);
  margin-bottom: 32px;
}
.path-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

/* Content card */
.path-content-card {
  background: #fff;
  border: 1px solid rgba(22,11,82,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.path-content-card:hover:not(.card-soon) {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(22,11,82,0.1);
}
.path-content-card.card-done { border-color: rgba(233,9,246,0.15); }
.path-content-card.card-soon { opacity: 0.45; pointer-events: none; }

.card-header-band {
  height: 88px;
  flex-shrink: 0;
}
.card-band-course {
  background: linear-gradient(135deg, #160B52 0%, #2512a0 100%);
}
.card-band-reflection {
  background: linear-gradient(135deg, #1a0640 0%, #3d0080 100%);
}
.card-band-reflection {
  position: relative;
}
.card-band-reflection::after {
  content: '✦';
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 0.85rem;
  color: rgba(233, 9, 246, 0.6);
  pointer-events: none;
}
.card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-type-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22,11,82,0.32);
  margin-bottom: 6px;
}
.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.82rem;
  color: rgba(22,11,82,0.5);
  line-height: 1.55;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-dur {
  font-size: 0.73rem;
  color: rgba(22,11,82,0.38);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 14px;
}
.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.card-action-btn {
  display: inline-flex;
  align-items: center;
  background: #160B52;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.card-action-btn:hover { background: #1f0e6e; transform: translateY(-1px); }
.card-mark-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(22,11,82,0.15);
  color: rgba(22,11,82,0.45);
  border-radius: 7px;
  padding: 8px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.card-mark-btn:hover { border-color: #e909f6; color: #e909f6; }
.card-done-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e909f6;
  font-family: 'Space Grotesk', sans-serif;
}
.card-soon-label {
  font-size: 0.78rem;
  color: rgba(22,11,82,0.38);
  font-family: 'Space Grotesk', sans-serif;
  font-style: italic;
}
.path-card-done-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: #e909f6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  border-radius: 50%;
  z-index: 2;
}

/* Modal */
.path-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,11,82,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 20px;
}
.path-modal-overlay.hidden { display: none; }
.path-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(22,11,82,0.2);
}

/* Scrollable content screen */
.path-content-scroll {
  flex: 1;
  overflow-y: auto;
}
.path-screen-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px var(--pad-x);
}
.path-screen-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e909f6;
  margin-bottom: 14px;
}
.path-screen-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.path-screen-p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(22,11,82,0.58);
  margin-bottom: 32px;
}
.path-screen-meta {
  display: flex;
  gap: 20px;
  font-size: 0.78rem;
  color: rgba(22,11,82,0.42);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 36px;
}

/* Anchor section */
.anchor-card {
  background: #fff;
  border: 1px solid rgba(22,11,82,0.1);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}
.anchor-card-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22,11,82,0.38);
  margin-bottom: 14px;
}
.anchor-field-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.anchor-textarea {
  width: 100%;
  border: 1.5px solid rgba(22,11,82,0.14);
  border-radius: 8px;
  padding: 11px 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: #F8F7FF;
  resize: vertical;
  min-height: 70px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 14px;
}
.anchor-textarea:focus { border-color: #e909f6; }
.anchor-hint-text {
  font-size: 0.76rem;
  color: rgba(22,11,82,0.38);
  line-height: 1.55;
  font-style: italic;
}

.path-btn {
  background: #160B52;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.path-btn:hover { background: #1f0e6e; transform: translateY(-1px); }
.path-btn.path-btn-gradient {
  background: var(--magenta);
}
.path-btn.path-btn-gradient:hover {
  background: #c907d4;
  transform: translateY(-1px);
}
.path-btn.path-btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(22,11,82,0.18);
  color: var(--navy);
}
.path-btn.path-btn-ghost:hover { background: rgba(22,11,82,0.04); transform: none; }

/* Assessment screen */
.assess-stars {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.star-opt {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(22,11,82,0.14);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(22,11,82,0.18);
}
.star-opt.filled,
.star-opt.hover-fill,
.star-opt:hover {
  border-color: rgba(233,9,246,0.3);
  background: rgba(233,9,246,0.06);
  color: #e909f6;
}
.assess-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: rgba(22,11,82,0.38);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 24px;
}
.adaptive-hint-box {
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.28);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.adaptive-hint-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.adaptive-hint-msg  { font-size: 0.84rem; color: #92400e; line-height: 1.55; }

.points-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,11,82,0.07);
  border-radius: 99px;
  padding: 5px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}

/* Check-in screen */
.checkin-prompt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 20px;
}
.checkin-hint {
  background: rgba(22,11,82,0.04);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  cursor: pointer;
}
.checkin-hint-toggle {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(22,11,82,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.checkin-hint-text {
  font-size: 0.83rem;
  color: rgba(22,11,82,0.55);
  line-height: 1.55;
  margin-top: 10px;
}

/* Path complete screen */
.complete-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e909f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.reflections-list { margin-top: 32px; }
.reflection-entry {
  border-left: 3px solid rgba(22,11,82,0.1);
  padding: 10px 16px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 0 8px 8px 0;
}
.reflection-step-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(22,11,82,0.32);
  margin-bottom: 3px;
}
.reflection-text {
  font-size: 0.86rem;
  color: var(--navy);
  line-height: 1.55;
}

/* Field label + textarea shared */
.path-field-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.path-textarea {
  width: 100%;
  border: 1.5px solid rgba(22,11,82,0.13);
  border-radius: 8px;
  padding: 11px 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: #fff;
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.path-textarea:focus { border-color: #e909f6; }

/* Goal screen */
.path-goal-inner,
.path-complete-inner {
  max-width: 580px;
}
.path-goal-recap {
  background: rgba(22,11,82,0.04);
  border-left: 3px solid rgba(22,11,82,0.12);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin-bottom: 28px;
}

/* Mobile */
@media (max-width: 700px) {
  .catalog-hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 48px; }
  .paths-grid, .courses-grid { grid-template-columns: 1fr; }
  .path-topbar-title { display: none; }
  .path-hero-section { padding: 48px 20px 56px; }
  .path-hero-inner { flex-direction: column-reverse; gap: 28px; align-items: flex-start; }
  .gauge-svg { width: 222px; }
  .path-cards-grid { grid-template-columns: 1fr; }
  .path-content-section { padding: 40px 20px 64px; }
  .path-modal { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   Hero's Journey Theme
   ═══════════════════════════════════════════════════════════ */

/* Page backdrop */
.path-page.theme-hj {
  background: #07041A;
  color: #E8E0FF;
}

/* Nav */
.path-page.theme-hj .nav {
  background: rgba(7,4,26,0.92);
  border-bottom: 1px solid rgba(233,9,246,0.15);
  backdrop-filter: blur(10px);
}
.path-page.theme-hj .nav-logo,
.path-page.theme-hj .nav-link { color: #C8BAFF; }
.path-page.theme-hj .nav-link:hover { color: #e909f6; }
.path-page.theme-hj .nav-toggle span { background: #C8BAFF; }

/* Learner bar */
.path-page.theme-hj .learner-bar {
  background: rgba(13,8,40,0.97);
  border-bottom: 1px solid rgba(233,9,246,0.12);
}

/* Landing page elements */
.path-page.theme-hj .path-topbar {
  background: rgba(7,4,26,0.97);
  border-bottom: 1px solid rgba(233,9,246,0.15);
}
.path-page.theme-hj .path-hero-section {
  background: linear-gradient(150deg, #07041A 0%, #0D0828 100%);
}
.path-page.theme-hj .path-content-section {
  background: #07041A;
}
.path-page.theme-hj .path-content-label { color: rgba(200,186,255,0.3); }
.path-page.theme-hj .path-content-card {
  background: #0D0828;
  border-color: rgba(233,9,246,0.12);
}
.path-page.theme-hj .card-title { color: #C8BAFF; }
.path-page.theme-hj .card-type-label { color: rgba(200,186,255,0.4); }
.path-page.theme-hj .card-desc { color: rgba(200,186,255,0.5); }
.path-page.theme-hj .card-dur { color: rgba(200,186,255,0.35); }
.path-page.theme-hj .card-action-btn {
  background: rgba(233,9,246,0.15);
  color: #e909f6;
  border: 1px solid rgba(233,9,246,0.3);
}
.path-page.theme-hj .card-action-btn:hover { background: rgba(233,9,246,0.25); transform: translateY(-1px); }
.path-page.theme-hj .card-mark-btn {
  border-color: rgba(200,186,255,0.2);
  color: rgba(200,186,255,0.5);
}
.path-page.theme-hj .card-mark-btn:hover { border-color: #e909f6; color: #e909f6; }
.path-page.theme-hj .path-modal {
  background: #0D0828;
  border: 1px solid rgba(233,9,246,0.2);
}
.path-page.theme-hj .path-screen-tag { color: #e909f6; }
.path-page.theme-hj .path-screen-h { color: #fff; }
.path-page.theme-hj .path-screen-p { color: rgba(200,186,255,0.65); }
.path-page.theme-hj .checkin-prompt { color: #C8BAFF; }
.path-page.theme-hj .path-field-label { color: #C8BAFF; }
.path-page.theme-hj .path-textarea {
  background: rgba(7,4,26,0.8);
  border-color: rgba(233,9,246,0.2);
  color: #E8E0FF;
}
.path-page.theme-hj .checkin-hint { background: rgba(233,9,246,0.06); }
.path-page.theme-hj .checkin-hint-toggle { color: rgba(200,186,255,0.5); }
.path-page.theme-hj .checkin-hint-text { color: rgba(200,186,255,0.65); }
.path-page.theme-hj .assess-legend { color: rgba(200,186,255,0.4); }
.path-page.theme-hj .star-opt {
  background: rgba(7,4,26,0.8);
  border-color: rgba(200,186,255,0.15);
  color: rgba(200,186,255,0.2);
}
.path-page.theme-hj .path-btn {
  background: linear-gradient(135deg, #e909f6 0%, #7B2FFF 100%);
  box-shadow: 0 4px 20px rgba(233,9,246,0.35);
}
.path-page.theme-hj .path-btn:hover {
  background: linear-gradient(135deg, #e909f6 0%, #7B2FFF 100%);
  box-shadow: 0 6px 28px rgba(233,9,246,0.55);
  transform: translateY(-1px);
}
.path-page.theme-hj .path-btn.path-btn-ghost {
  background: transparent;
  border-color: rgba(200,186,255,0.2);
  color: #C8BAFF;
  box-shadow: none;
}
.path-page.theme-hj .path-btn.path-btn-ghost:hover {
  background: rgba(200,186,255,0.06);
  transform: none;
}
.path-page.theme-hj #gaugeFill { stroke: url(#gaugeGrad); filter: drop-shadow(0 0 6px rgba(233,9,246,0.6)); }
.path-page.theme-hj .complete-badge { filter: drop-shadow(0 0 12px rgba(233,9,246,0.7)); }
.path-page.theme-hj .reflection-entry { background: rgba(13,8,40,0.8); border-color: rgba(233,9,246,0.12); }
.path-page.theme-hj .reflection-step-label { color: rgba(200,186,255,0.4); }
.path-page.theme-hj .reflection-text { color: rgba(200,186,255,0.7); }
.path-page.theme-hj .path-goal-screen,
.path-page.theme-hj .path-complete-screen { background: #07041A; }
.path-page.theme-hj .path-goal-recap {
  background: rgba(233,9,246,0.06);
  border-color: rgba(233,9,246,0.2);
}

/* Mobile adjustments */
@media (max-width: 700px) {
  .path-page.theme-hj .path-content-section { background: #07041A; }
}
