/* ============================================================
   BThinkX – Shared page styles (non-dashboard pages)
   Uses same design tokens as super_dashboard.css
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --p-violet: #6440FB;
  --p-violet-dark: #5835d4;
  --p-violet-light: #8b6ffb;
  --p-violet-bg: #f3f0ff;
  --p-violet-border: rgba(100, 64, 251, 0.15);
  --p-white: #ffffff;
  --p-grey-50: #f8fafc;
  --p-grey-100: #f1f5f9;
  --p-grey-200: #e2e8f0;
  --p-grey-300: #cbd5e1;
  --p-grey-400: #94a3b8;
  --p-grey-500: #64748b;
  --p-grey-600: #475569;
  --p-grey-700: #334155;
  --p-grey-800: #1e293b;
  --p-grey-900: #0f172a;
  --p-green: #059669;
  --p-green-bg: #d1fae5;
  --p-green-light: #10b981;
  --p-amber: #d97706;
  --p-amber-bg: #fef3c7;
  --p-red: #dc2626;
  --p-red-bg: #fee2e2;
  --p-radius-sm: 8px;
  --p-radius: 14px;
  --p-radius-lg: 20px;
  --p-radius-xl: 28px;
  --p-shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --p-shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
  --p-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 6px 24px rgba(0,0,0,0.06);
  --p-shadow-violet: 0 4px 24px rgba(100,64,251,0.14);
}

/* ── Page wrapper ──────────────────────────────────────────── */
.pg-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.pg-wrap--narrow { max-width: 760px; }
.pg-wrap--mid { max-width: 960px; }

/* ── Section spacer ────────────────────────────────────────── */
.pg-section {
  padding: 64px 0;
}
.pg-section--sm {
  padding: 40px 0;
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.pg-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #312e81 100%);
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}
.pg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(100,64,251,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.pg-hero__inner {
  position: relative;
  z-index: 1;
}
.pg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pg-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.pg-breadcrumb a:hover { color: #fff; }
.pg-breadcrumb__sep { color: rgba(255,255,255,0.3); }
.pg-hero__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.pg-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
.pg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

/* ── Cards ─────────────────────────────────────────────────── */
.pg-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  box-shadow: var(--p-shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}
.pg-card:hover { box-shadow: var(--p-shadow-violet); transform: translateY(-2px); }
.pg-card__body { padding: 24px; }
.pg-card__body--sm { padding: 18px; }
.pg-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.pg-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--p-grey-800);
  margin: 0;
}
.pg-card__subtitle {
  font-size: 0.85rem;
  color: var(--p-grey-500);
  margin: 4px 0 0;
}

/* ── Stat cards ─────────────────────────────────────────────── */
.pg-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.pg-stat {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 20px 22px;
  box-shadow: var(--p-shadow-sm);
}
.pg-stat__val {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--p-grey-900);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pg-stat__val--violet { color: var(--p-violet); }
.pg-stat__val--green { color: var(--p-green); }
.pg-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--p-grey-500);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Buttons ────────────────────────────────────────────────── */
.pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--p-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  line-height: 1;
  white-space: nowrap;
}
.pg-btn:active { transform: scale(0.97); }
.pg-btn--primary {
  background: var(--p-violet);
  color: #fff;
  box-shadow: 0 2px 8px rgba(100,64,251,0.3);
}
.pg-btn--primary:hover { background: var(--p-violet-dark); box-shadow: 0 4px 16px rgba(100,64,251,0.35); }
.pg-btn--outline {
  background: transparent;
  color: var(--p-violet);
  border: 1.5px solid var(--p-violet-border);
}
.pg-btn--outline:hover { background: var(--p-violet-bg); border-color: var(--p-violet); }
.pg-btn--ghost {
  background: var(--p-grey-100);
  color: var(--p-grey-700);
}
.pg-btn--ghost:hover { background: var(--p-grey-200); }
.pg-btn--green {
  background: var(--p-green);
  color: #fff;
}
.pg-btn--green:hover { background: #047857; }
.pg-btn--sm { font-size: 0.8rem; padding: 7px 14px; }
.pg-btn--lg { font-size: 1rem; padding: 14px 28px; }

/* ── Progress bar ───────────────────────────────────────────── */
.pg-progress-wrap {
  background: var(--p-grey-100);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
  width: 100%;
}
.pg-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--p-violet) 0%, var(--p-violet-light) 100%);
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  min-width: 4px;
}
.pg-progress-fill--green {
  background: linear-gradient(90deg, var(--p-green) 0%, var(--p-green-light) 100%);
}

/* ── Status badges ──────────────────────────────────────────── */
.pg-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pg-badge--green { background: var(--p-green-bg); color: var(--p-green); }
.pg-badge--violet { background: var(--p-violet-bg); color: var(--p-violet); }
.pg-badge--amber { background: var(--p-amber-bg); color: var(--p-amber); }
.pg-badge--red { background: var(--p-red-bg); color: var(--p-red); }
.pg-badge--grey { background: var(--p-grey-100); color: var(--p-grey-500); }

/* ── Forms ──────────────────────────────────────────────────── */
.pg-form-group { margin-bottom: 20px; }
.pg-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--p-grey-700);
  margin-bottom: 7px;
}
.pg-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--p-grey-200);
  border-radius: var(--p-radius-sm);
  font-size: 0.95rem;
  color: var(--p-grey-800);
  background: var(--p-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}
.pg-input:focus {
  border-color: var(--p-violet);
  box-shadow: 0 0 0 3px rgba(100,64,251,0.12);
}
.pg-input::placeholder { color: var(--p-grey-400); }

/* ── Empty states ───────────────────────────────────────────── */
.pg-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--p-grey-400);
}
.pg-empty i { font-size: 2.5rem; display: block; margin-bottom: 12px; opacity: 0.4; }
.pg-empty p { font-size: 0.9rem; margin: 0; }

/* ── Section header ─────────────────────────────────────────── */
.pg-sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.pg-sec-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--p-grey-900);
  letter-spacing: -0.02em;
}
.pg-sec-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--p-violet);
  text-decoration: none;
}
.pg-sec-link:hover { text-decoration: underline; }

/* ── Divider ─────────────────────────────────────────────────── */
.pg-divider {
  border: none;
  border-top: 1px solid var(--p-grey-200);
  margin: 20px 0;
}

/* ── Alert / info box ────────────────────────────────────────── */
.pg-info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--p-violet-bg);
  border: 1px solid var(--p-violet-border);
  border-radius: var(--p-radius-sm);
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--p-grey-700);
}
.pg-info-box i { color: var(--p-violet); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

/* ============================================================
   COURSE DASHBOARD PAGE  (/dashboard/course/<slug>/)
   ============================================================ */
.cd-page { background: #f6f9fc; min-height: 100vh; }

.cd-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 65%, #312e81 100%);
  padding: 44px 0 40px;
  position: relative;
  overflow: hidden;
}
.cd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(100,64,251,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.cd-hero__inner { position: relative; z-index: 1; }
.cd-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cd-hero__breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.cd-hero__breadcrumb a:hover { color: #fff; }
.cd-hero__breadcrumb span { color: rgba(255,255,255,0.25); }
.cd-hero__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 16px;
}
.cd-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cd-hero__stat {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.cd-hero__stat i { font-size: 0.9rem; }
.cd-hero__stat--fire { color: #fb923c; }

/* Content layout */
.cd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}
@media (max-width: 900px) { .cd-layout { grid-template-columns: 1fr; } }

/* CTA bar */
.cd-cta-bar {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--p-shadow-sm);
  margin-bottom: 20px;
}
.cd-cta-bar__text { font-size: 0.95rem; font-weight: 600; color: var(--p-grey-700); }
.cd-cta-bar__text span { color: var(--p-violet); }

/* Overall progress card */
.cd-progress-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 24px;
  box-shadow: var(--p-shadow-sm);
  margin-bottom: 20px;
}
.cd-progress-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cd-progress-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--p-grey-800);
}
.cd-progress-card__pct {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--p-violet);
}

/* Day modules */
.cd-modules { display: flex; flex-direction: column; gap: 14px; }

.cd-module {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  overflow: hidden;
  box-shadow: var(--p-shadow-xs);
  transition: box-shadow 0.2s;
}
.cd-module:hover { box-shadow: var(--p-shadow-sm); }

.cd-module__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}
.cd-module__day-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--p-violet-bg);
  color: var(--p-violet);
}
.cd-module__day-badge--done {
  background: var(--p-green-bg);
  color: var(--p-green);
}
.cd-module__info { flex: 1; min-width: 0; }
.cd-module__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--p-grey-800);
  line-height: 1.3;
  margin: 0;
}
.cd-module__desc {
  font-size: 0.78rem;
  color: var(--p-grey-500);
  margin: 3px 0 0;
}
.cd-module__check {
  color: var(--p-green);
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-module__chevron {
  color: var(--p-grey-400);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.cd-module[open] .cd-module__chevron { transform: rotate(90deg); }

.cd-lessons { padding: 0 20px 16px; border-top: 1px solid var(--p-grey-100); }

.cd-lesson {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--p-grey-100);
}
.cd-lesson:last-child { border-bottom: none; }

.cd-lesson__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.cd-lesson__icon--unlocked { background: var(--p-green-bg); color: var(--p-green); }
.cd-lesson__icon--locked { background: var(--p-grey-100); color: var(--p-grey-400); }

.cd-lesson__info { flex: 1; min-width: 0; }
.cd-lesson__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--p-grey-800);
  margin: 0;
}
.cd-lesson__title--locked { color: var(--p-grey-400); }
.cd-lesson__hint {
  font-size: 0.75rem;
  color: var(--p-grey-400);
  margin: 3px 0 0;
}

/* Sidebar cards */
.cd-sidebar { display: flex; flex-direction: column; gap: 20px; }

.cd-side-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 20px;
  box-shadow: var(--p-shadow-sm);
}
.cd-side-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--p-grey-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-side-card__title i { color: var(--p-violet); }

/* Exam items */
.cd-exam {
  padding: 14px 0;
  border-bottom: 1px solid var(--p-grey-100);
}
.cd-exam:last-child { border-bottom: none; }
.cd-exam__title { font-size: 0.9rem; font-weight: 700; color: var(--p-grey-800); margin: 0 0 6px; }
.cd-exam__meta { font-size: 0.78rem; color: var(--p-grey-500); margin-bottom: 10px; }
.cd-exam__result {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}
.cd-exam__result--pass { background: var(--p-green-bg); color: var(--p-green); }
.cd-exam__result--fail { background: var(--p-red-bg); color: var(--p-red); }

/* Certificate card in sidebar */
.cd-cert-card {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid rgba(100,64,251,0.18);
  border-radius: var(--p-radius);
  padding: 20px;
  text-align: center;
}
.cd-cert-card__icon {
  font-size: 2.5rem;
  color: var(--p-violet);
  margin-bottom: 10px;
}
.cd-cert-card__title { font-size: 0.95rem; font-weight: 700; color: var(--p-grey-800); margin-bottom: 4px; }
.cd-cert-card__id { font-size: 0.75rem; color: var(--p-grey-500); font-family: monospace; margin-bottom: 14px; }
.cd-cert-card__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cd-cert-pending { text-align: center; padding: 16px 0 0; }
.cd-cert-pending i { font-size: 2rem; color: var(--p-grey-300); margin-bottom: 8px; display: block; }
.cd-cert-pending p { font-size: 0.8rem; color: var(--p-grey-500); }

/* Video section */
.cd-video-wrap {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--p-shadow-sm);
}
.cd-video-wrap video {
  width: 100%;
  display: block;
  max-height: 420px;
  background: #000;
}

/* ============================================================
   COURSES LIST PAGE  (/courses/)
   ============================================================ */
.cl-page { background: #f6f9fc; min-height: 100vh; }

.cl-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 65%, #312e81 100%);
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}
.cl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 75% 50%, rgba(100,64,251,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cl-hero__inner { position: relative; z-index: 1; }
.cl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}
.cl-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cl-hero__subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; }

.cl-video-banner {
  background: #f6f9fc;
  padding: 28px 20px 36px;
  border-bottom: 1px solid var(--p-grey-200);
}
.cl-video-banner__inner {
  max-width: 960px;
  margin: 0 auto;
}
.cl-courses-page-video {
  width: 100%;
  max-height: min(52vh, 520px);
  border-radius: var(--p-radius-lg);
  background: #0f172a;
  display: block;
  box-shadow: var(--p-shadow);
  border: 1px solid var(--p-grey-200);
}
.cl-video-banner__caption {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--p-grey-500);
  text-align: center;
}

.cl-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* Grid */
.cl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) { .cl-grid { grid-template-columns: 1fr; } }

/* Course card */
.cl-course-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius-lg);
  overflow: hidden;
  box-shadow: var(--p-shadow-sm);
  transition: box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.cl-course-card:hover {
  box-shadow: var(--p-shadow-violet);
  transform: translateY(-3px);
}

.cl-course-card__thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.cl-course-card__thumb-ph {
  height: 180px;
  background: linear-gradient(135deg, #312e81 0%, #6440FB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.6);
  letter-spacing: -2px;
}

.cl-course-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cl-course-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--p-grey-900);
  line-height: 1.3;
  margin: 0 0 8px;
}
.cl-course-card__desc {
  font-size: 0.85rem;
  color: var(--p-grey-500);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.cl-course-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cl-course-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--p-grey-500);
}
.cl-course-card__meta-item i { color: var(--p-violet); }
.cl-course-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--p-grey-900);
}
.cl-course-card__price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--p-grey-400);
  text-decoration: line-through;
  margin-left: 6px;
}
.cl-course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--p-grey-100);
}

/* ============================================================
   VERIFY PAGE  (/verify/)
   ============================================================ */
.vfy-page {
  min-height: calc(100vh - 80px);
  background: #f6f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
.vfy-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius-xl);
  box-shadow: 0 8px 40px rgba(100,64,251,0.1), 0 2px 8px rgba(0,0,0,0.06);
  padding: 48px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
@media (max-width: 520px) { .vfy-card { padding: 32px 22px; border-radius: var(--p-radius-lg); } }

.vfy-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--p-violet-bg) 0%, #ddd6fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.vfy-icon i { font-size: 1.8rem; color: var(--p-violet); }

.vfy-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--p-grey-900);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.vfy-subtitle {
  font-size: 0.9rem;
  color: var(--p-grey-500);
  margin-bottom: 32px;
  line-height: 1.5;
}
.vfy-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.vfy-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--p-grey-500);
}
.vfy-trust-item i { color: var(--p-violet); }

.vfy-form { text-align: left; }
.vfy-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--p-grey-700);
  margin-bottom: 8px;
}
.vfy-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--p-grey-200);
  border-radius: var(--p-radius-sm);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  color: var(--p-grey-800);
  background: var(--p-grey-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vfy-input:focus {
  border-color: var(--p-violet);
  box-shadow: 0 0 0 4px rgba(100,64,251,0.1);
  background: var(--p-white);
}
.vfy-input::placeholder { text-transform: none; letter-spacing: 0; color: var(--p-grey-400); font-family: inherit; font-size: 0.9rem; }
.vfy-submit {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--p-violet) 0%, var(--p-violet-light) 100%);
  color: #fff;
  border: none;
  border-radius: var(--p-radius-sm);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.vfy-submit:hover { opacity: 0.92; }
.vfy-submit:active { transform: scale(0.98); }
.vfy-footer-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--p-grey-400);
  text-align: center;
}

/* ============================================================
   HOME PAGE enhancements
   ============================================================ */
.home-pg {
  overflow-x: hidden;
  background-color: #f6f9fc;
  min-height: 100vh;
}

/* Hero */
.home-hero {
  background: #f6f9fc;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .home-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .home-hero { min-height: auto; padding: 60px 0; }
}

.home-hero__content {}
.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p-violet-bg);
  border: 1px solid var(--p-violet-border);
  color: var(--p-violet);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.home-hero__eyebrow i { font-size: 0.7rem; }
.home-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--p-grey-900);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.home-hero__title em {
  font-style: normal;
  color: var(--p-violet);
  -webkit-text-fill-color: var(--p-violet);
}
.home-hero__subtitle {
  font-size: 1.05rem;
  color: var(--p-grey-600);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}
.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.home-hero__scarcity {
  font-size: 0.8rem;
  color: var(--p-grey-500);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.home-hero__scarcity i { color: #f97316; }
.home-hero__scarcity strong { color: var(--p-grey-800); }
.home-hero__countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.home-hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.home-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--p-grey-500);
}
.home-hero__trust-item i { color: var(--p-violet); font-size: 0.72rem; }

.home-hero__video-wrap {
  position: relative;
}
.home-hero__video-card {
  background: var(--p-grey-50);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius-xl);
  overflow: hidden;
  box-shadow: var(--p-shadow-violet);
}
.home-hero__video-card video { width: 100%; display: block; aspect-ratio: 16/9; }

/* Section spacing helpers */
.home-section-wrap {
  padding: 72px 0;
}
@media (min-width: 900px) {
  .home-section-wrap {
    padding: 88px 0;
  }
}
.home-section-wrap--alt {
  background: #eef2f8;
}
.home-section-wrap--dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #fff;
}
.home-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Stats strip */
.home-stats-strip {
  background: var(--p-white);
  border-top: 1px solid var(--p-grey-200);
  border-bottom: 1px solid var(--p-grey-200);
  padding: 32px 0;
}
.home-stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
@media (max-width: 640px) { .home-stats-strip__grid { grid-template-columns: repeat(2, 1fr); } }
.home-stats-strip__val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--p-violet);
  letter-spacing: -0.04em;
  line-height: 1;
}
.home-stats-strip__label { font-size: 0.78rem; font-weight: 600; color: var(--p-grey-500); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Feature / benefit grid */
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.home-feature-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 24px;
  box-shadow: var(--p-shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s;
}
.home-feature-card:hover { box-shadow: var(--p-shadow-violet); transform: translateY(-2px); }
.home-feature-card__ico {
  width: 44px;
  height: 44px;
  background: var(--p-violet-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--p-violet);
  font-size: 1.15rem;
}
.home-feature-card__title { font-size: 0.95rem; font-weight: 700; color: var(--p-grey-800); margin-bottom: 6px; }
.home-feature-card__desc { font-size: 0.83rem; color: var(--p-grey-500); line-height: 1.55; }

/* How it works steps */
.home-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: steps;
  position: relative;
}
.home-step { text-align: center; counter-increment: steps; position: relative; }
.home-step__num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--p-violet) 0%, var(--p-violet-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(100,64,251,0.3);
}
.home-step__title { font-size: 0.95rem; font-weight: 700; color: var(--p-grey-800); margin-bottom: 8px; }
.home-step__desc { font-size: 0.83rem; color: var(--p-grey-500); line-height: 1.55; }

/* Section header */
.home-sec-head { text-align: center; margin-bottom: 40px; }
.home-sec-head--left { text-align: left; }
.home-sec-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-violet);
  margin-bottom: 10px;
}
.home-sec-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--p-grey-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.home-sec-sub { font-size: 1rem; color: var(--p-grey-500); line-height: 1.55; max-width: 560px; margin: 0 auto; }
.home-sec-sub--left { margin: 0; }

/* Pricing card */
.home-price-card {
  background: var(--p-white);
  border: 2px solid var(--p-violet-border);
  border-radius: var(--p-radius-xl);
  padding: 40px;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--p-shadow-violet);
  text-align: center;
  position: relative;
}
.home-price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--p-violet) 0%, var(--p-violet-light) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.home-price-card__original {
  font-size: 1rem;
  color: var(--p-grey-400);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.home-price-card__price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--p-grey-900);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.home-price-card__price sup { font-size: 1.4rem; font-weight: 700; vertical-align: super; }
.home-price-card__note { font-size: 0.85rem; color: var(--p-grey-500); margin-bottom: 6px; }
.home-price-card__save {
  display: inline-block;
  background: var(--p-green-bg);
  color: var(--p-green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.home-price-card__actions { display: flex; flex-direction: column; gap: 12px; }

/* Timeline */
.home-timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.home-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--p-grey-200);
}
.home-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 24px;
  position: relative;
}
.home-tl-item:last-child { padding-bottom: 0; }
.home-tl-dot {
  flex-shrink: 0;
  width: 56px;
  height: 36px;
  background: linear-gradient(135deg, var(--p-violet) 0%, var(--p-violet-light) 100%);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(100,64,251,0.25);
}
.home-tl-item--exam .home-tl-dot {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 2px 8px rgba(5,150,105,0.3);
}
.home-tl-text {
  padding-top: 6px;
  font-size: 0.9rem;
  color: var(--p-grey-700);
  line-height: 1.5;
}

/* FAQ */
.home-faq { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.home-faq-item {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius-sm);
  overflow: hidden;
}
.home-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--p-grey-800);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--p-violet);
  flex-shrink: 0;
}
.home-faq-item[open] summary { background: var(--p-violet-bg); color: var(--p-violet); }
.home-faq-item[open] summary::after { content: "−"; }
.home-faq-answer {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--p-grey-600);
  line-height: 1.65;
  border-top: 1px solid var(--p-grey-100);
}

/* Audience cards */
.home-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.home-audience-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 24px;
  box-shadow: var(--p-shadow-xs);
}
.home-audience-card--featured {
  border-color: var(--p-violet-border);
  background: var(--p-violet-bg);
  box-shadow: var(--p-shadow-violet);
}
.home-audience-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--p-violet-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-violet);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.home-audience-card--featured .home-audience-card__icon { background: rgba(100,64,251,0.15); }
.home-audience-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--p-grey-800);
  margin: 0 0 4px;
}
.home-audience-card__sub {
  font-size: 0.78rem;
  color: var(--p-grey-500);
  margin: 0 0 12px;
}
.home-audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.home-audience-card ul li {
  font-size: 0.83rem;
  color: var(--p-grey-600);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.home-audience-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--p-violet);
  font-size: 0.75rem;
}
.home-audience-card__benefit {
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--p-green);
  background: var(--p-green-bg);
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
}

/* Curriculum day grid */
.home-day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.home-day-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--p-shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.home-day-card:hover { box-shadow: var(--p-shadow-violet); transform: translateY(-2px); border-color: var(--p-violet-border); }
.home-day-card__icon {
  width: 44px;
  height: 44px;
  background: var(--p-violet-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-violet);
  font-size: 1.15rem;
}
.home-day-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--p-grey-700);
  line-height: 1.35;
}

/* Certificate section */
.home-cert-card {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid rgba(100,64,251,0.2);
  border-radius: var(--p-radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.home-cert-card__icon { font-size: 3rem; color: var(--p-violet); margin-bottom: 16px; }
.home-cert-card__title { font-size: 1.5rem; font-weight: 800; color: var(--p-grey-900); margin-bottom: 12px; letter-spacing: -0.02em; }
.home-cert-card__desc { font-size: 0.9rem; color: var(--p-grey-600); line-height: 1.65; margin-bottom: 20px; }
.home-cert-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.home-cert-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--p-grey-700);
  padding: 8px 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
}
.home-cert-card ul li i { color: var(--p-violet); }

/* Testimonial */
.home-testimonial {
  max-width: 540px;
  margin: 0 auto;
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius-lg);
  padding: 32px;
  box-shadow: var(--p-shadow-sm);
  text-align: center;
}
.home-testimonial__text {
  font-size: 1rem;
  color: var(--p-grey-700);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.home-testimonial__author { font-size: 0.82rem; font-weight: 600; color: var(--p-grey-500); }
.home-testimonial__stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }

/* Final CTA section */
.home-cta-section {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100,64,251,0.3) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.home-cta-section__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.home-cta-section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.home-cta-section__sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.6; }
.home-cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.home-cta-section .home-btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
  background: transparent;
}
.home-cta-section .home-btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}
.home-cta-section .home-btn-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.15);
}
.home-cta-section .home-btn-light:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.25);
}

/* Buttons for home (map old btn classes to new design) */
.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--p-violet) 0%, var(--p-violet-light) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--p-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(100,64,251,0.35);
}
.home-btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.home-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--p-grey-700);
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid var(--p-grey-300);
  border-radius: var(--p-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.home-btn-outline:hover { border-color: var(--p-violet); color: var(--p-violet); background: var(--p-violet-bg); }
.home-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--p-grey-100);
  color: var(--p-grey-700);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.home-btn-light:hover { background: var(--p-grey-200); border-color: var(--p-grey-300); }

/* Achievements / roi pills */
.home-roi-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.home-roi-pill {
  padding: 7px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}
.home-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 420px;
  margin: 24px auto 0;
}
.home-outcome-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.home-outcome-item i { color: var(--p-violet-light); }

/* ── Content-rich home additions ───────────────────────────── */
.home-hero__bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.home-hero__bullets li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--p-grey-600);
  line-height: 1.45;
  align-items: flex-start;
}
.home-hero__bullets li i {
  color: var(--p-green);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.home-hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.home-hero__micro-item {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--p-grey-600);
  background: var(--p-grey-100);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--p-grey-200);
}
.home-hero__stack {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-hero__mini-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--p-shadow-xs);
}
.home-hero__mini-card i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--p-violet-bg);
  color: var(--p-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-hero__mini-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--p-grey-800);
}
.home-hero__mini-card span {
  font-size: 0.72rem;
  color: var(--p-grey-500);
}

.home-mega-stats {
  background: linear-gradient(180deg, #eef2f8 0%, #f6f9fc 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  padding: 32px 0 28px;
}
.home-mega-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.home-mega-stats__cell {
  text-align: center;
  padding: 14px 8px;
  background: #fafbfd;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--p-radius-sm);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.home-mega-stats__num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--p-violet);
  letter-spacing: -0.03em;
  line-height: 1;
}
.home-mega-stats__lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--p-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 6px;
  line-height: 1.35;
}
.home-mega-stats__foot {
  text-align: center;
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--p-grey-500);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  line-height: 1.55;
}

.home-included {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.home-included__cell {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  box-shadow: var(--p-shadow-xs);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.home-included__cell:hover {
  box-shadow: var(--p-shadow-violet);
  border-color: var(--p-violet-border);
}
.home-included__ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--p-violet-bg);
  color: var(--p-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.home-included__body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--p-grey-800);
  margin: 0 0 5px;
}
.home-included__body p {
  font-size: 0.8rem;
  color: var(--p-grey-500);
  line-height: 1.45;
  margin: 0;
}

.home-prompt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.home-prompt-card {
  background: #1e293b;
  color: #e2e8f0;
  border-radius: var(--p-radius);
  padding: 16px 18px;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.7rem;
  line-height: 1.55;
  border: 1px solid #334155;
}
.home-prompt-card__tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #a78bfa;
  margin-bottom: 10px;
}
.home-prompt-card pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: #cbd5e1;
}

.home-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .home-compare { grid-template-columns: 1fr; }
}
.home-compare__col {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  padding: 22px;
}
.home-compare__col--highlight {
  border-color: var(--p-violet-border);
  background: var(--p-violet-bg);
  box-shadow: var(--p-shadow-violet);
}
.home-compare__h {
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--p-grey-800);
}
.home-compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--p-grey-600);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-compare__col li {
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.home-compare__col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--p-green);
  font-weight: 800;
  font-size: 0.75rem;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .home-testimonial-grid { grid-template-columns: 1fr; }
}
.home-quote-card {
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius-lg);
  padding: 22px;
  box-shadow: var(--p-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home-quote-card__stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.home-quote-card__text {
  font-size: 0.88rem;
  color: var(--p-grey-700);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
  flex: 1;
}
.home-quote-card__who {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--p-grey-800);
}
.home-quote-card__role {
  font-size: 0.7rem;
  color: var(--p-grey-400);
}

.home-day-card__meta {
  font-size: 0.7rem;
  color: var(--p-grey-500);
  line-height: 1.4;
  margin-top: 8px;
  text-align: center;
  display: block;
}

.home-split-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .home-split-pricing { grid-template-columns: 1fr; }
}
.home-pricing-include {
  background: var(--p-grey-50);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius-lg);
  padding: 26px;
}
.home-pricing-include h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--p-grey-800);
}
.home-pricing-include ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-pricing-include li {
  font-size: 0.84rem;
  color: var(--p-grey-600);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.home-pricing-include li i {
  color: var(--p-violet);
  margin-top: 2px;
  flex-shrink: 0;
}

.home-tools-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  padding: 18px 22px;
  background: var(--p-white);
  border: 1px solid var(--p-grey-200);
  border-radius: var(--p-radius);
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.home-tools-row span {
  font-size: 0.78rem;
  color: var(--p-grey-500);
}
.home-tools-row strong {
  color: var(--p-grey-800);
  font-weight: 700;
}

.home-feature-grid--6 {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (max-width: 900px) {
  .home-mega-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .home-mega-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   PUBLIC PROFILE PAGE (/u/<username>/)
   ============================================================ */
.prt-page-wrap {
  background: #0f172a;
  min-height: 100vh;
}

/* Shared responsive */
@media (max-width: 768px) {
  .pg-wrap { padding: 0 16px; }
  .cd-layout { padding: 20px 16px; }
  .cl-body { padding: 24px 16px 48px; }
  .pg-section { padding: 40px 0; }
  .home-section-wrap { padding: 52px 0; }
  .home-sec-title { font-size: 1.5rem; }
  .home-price-card { padding: 32px 24px; }
  .home-cert-card { padding: 32px 24px; }
}
/* Program spotlight grid */
.home-program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .home-hero__grid { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; padding: 60px 0; }
  .home-program-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .home-hero__title { font-size: 2rem; }
  .home-hero__actions { flex-direction: column; align-items: stretch; }
  .home-hero__actions > * { justify-content: center; }
  .home-stats-strip__grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .home-audience-grid { grid-template-columns: 1fr; }
  .home-day-grid { grid-template-columns: repeat(2, 1fr); }
  .home-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .home-cta-section { padding: 60px 0; }
  .home-cta-section__actions { flex-direction: column; align-items: stretch; }
  .home-cta-section__actions > * { justify-content: center; }
}
