/* ===========================
   NEXTDOLLARAI — iOS-Style Warm Light Theme
   =========================== */

:root {
  --bg: #FAFAFA;
  --bg-2: #F5F5F7;
  --bg-3: #FFFFFF;
  --amber: #FF6B6B;
  --amber-dim: #e85555;
  --cream: #2D2D2D;
  --cream-dim: #888888;
  --muted: #6B6B6B;
  --border: rgba(0, 0, 0, 0.08);
  --success: #4ADE80;
  --danger: #F87171;
  --font-head: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --green: #2D8C3C;
  --blue: #4A90D9;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  display: block;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-size: 14px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--amber);
}
.nav-link-cta {
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-link-cta:hover {
  background: #236b30;
  color: #fff;
}

/* HERO */
.hero {
  padding: 80px 60px 60px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.hero-left {
  padding-right: 60px;
}
.hero-stat {
  margin-bottom: 40px;
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 120px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -4px;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  display: block;
  margin-top: 8px;
  font-weight: 400;
}
.hero-subtle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}
.hero-right {}
.hero-headline {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 18px;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.proof-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--cream);
}
.proof-marker {
  color: var(--amber);
  font-size: 12px;
  flex-shrink: 0;
}
.hero-bottom-rule {
  margin-top: 60px;
  height: 1px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  padding: 80px 60px;
  background: var(--bg-2);
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.manifesto-left, .manifesto-right {}
.manifesto-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 28px;
}
.manifesto-tag-right { text-align: right; }
.old-way, .new-way { display: flex; flex-direction: column; gap: 18px; }
.old-item, .new-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cream);
}
.old-x { color: var(--danger); flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.new-check { color: var(--success); flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.manifesto-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0 60px;
  height: 280px;
  align-self: center;
}

/* FEATURES */
.features {
  padding: 100px 60px;
}
.features-header {
  margin-bottom: 60px;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}
.features-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--cream);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.feature-card-dark { border-color: rgba(255, 255, 255, 0.5); }
.feature-card-accent {
  border-left: 3px solid var(--amber);
  border-radius: 16px;
}
.feature-surface {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}
.feature-card-accent .feature-surface { color: var(--amber); }
.feature-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 13px;
  color: var(--cream-dim);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.feature-card-accent .feature-list li::before { background: var(--amber); }

/* COCKPIT */
.cockpit {
  padding: 100px 60px;
  background: var(--bg-2);
}
.cockpit-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.cockpit-label {}
.cockpit-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--cream);
  margin-bottom: 20px;
}
.cockpit-desc {
  font-size: 16px;
  color: var(--cream-dim);
  line-height: 1.7;
}
.cockpit-dashboard {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
}
.dash-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
}
.dash-date {
  font-size: 12px;
  color: var(--muted);
}
.dash-progress {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.dash-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.dash-progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: var(--blue);
  border-radius: 3px;
}
.dash-progress-label {
  font-size: 11px;
  color: var(--muted);
}
.dash-rows { padding: 8px 0; }
.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.dash-row:last-child { border-bottom: none; }
.dash-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.dash-row-icon {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.dash-row-icon-learn { background: #818CF8; }
.dash-row-icon-proof { background: var(--amber); }
.dash-row-icon-reach { background: var(--success); }
.dash-row-icon-offer { background: #F472B6; }
.dash-row-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.dash-row-value {
  font-size: 13px;
  color: var(--cream);
}
.dash-row-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  font-weight: 600;
}
.dash-tag-learn { background: rgba(129, 140, 248, 0.15); color: #818CF8; }
.dash-tag-proof { background: rgba(245, 166, 35, 0.15); color: var(--amber); }
.dash-tag-reach { background: rgba(74, 222, 128, 0.15); color: var(--success); }
.dash-tag-offer { background: rgba(244, 114, 182, 0.15); color: #F472B6; }
.dash-score {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
}
.dash-score-label {
  font-size: 12px;
  color: var(--muted);
  flex: 1;
}
.dash-score-value {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--amber);
}
.dash-score-trend {
  font-size: 12px;
  color: var(--success);
}

/* ROADMAP */
.roadmap {
  padding: 100px 60px;
}
.roadmap-header { margin-bottom: 60px; }
.roadmap-title {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--cream);
}
.roadmap-weeks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.week {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--amber);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.week-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.week-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.week-focus {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.week-desc {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}
.week-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.week-item {
  font-size: 12px;
  color: var(--muted);
}
.roadmap-metric {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 3px solid var(--amber);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.metric-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.metric-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
}

/* CLOSING */
.closing {
  padding: 120px 60px 100px;
  background: var(--bg-2);
}
.closing-inner {
  max-width: 700px;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 48px;
}
.closing-vision p {
  font-size: 14px;
  color: var(--muted);
}
.closing-vision p:first-child { margin-bottom: 10px; }
.vision-quote {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--amber);
  font-style: italic;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  padding: 60px;
  border-top: 1px solid var(--border);
  background: white;
}
.footer-inner { text-align: center; }
.footer-logo {
  margin-bottom: 12px;
}
.footer-logo-img {
  height: 36px;
  display: block;
  margin: 0 auto;
}
.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .cockpit-inner { grid-template-columns: 1fr; }
  .roadmap-weeks { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 38px; }
  .closing-headline { font-size: 40px; }
  .nav { padding: 20px 30px; }
  .hero { padding: 50px 30px 40px; }
  .manifesto, .features, .cockpit, .roadmap, .closing { padding: 60px 30px; }
  .footer { padding: 40px 30px; }
}

/* ===========================
   DASHBOARD — Back-Office
   =========================== */

.dashboard { padding: 40px 60px; }
.dashboard-greeting { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.dashboard-goal { font-size: 16px; color: var(--amber); margin-bottom: 32px; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.dashboard-left {}
.dashboard-right {}
.panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.panel-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 16px; }
.progress-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { height: 100%; background: var(--blue); border-radius: 4px; }
.progress-label { font-size: 12px; color: var(--muted); }
.task-list { display: flex; flex-direction: column; gap: 12px; }
.task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: border-color 0.2s;
}
.task-item:hover { border-color: var(--amber); }
.task-item.completed { border-color: var(--success); background: rgba(74, 222, 128, 0.08); }
.task-type { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; min-width: 70px; }
.task-desc { font-size: 13px; color: var(--cream); flex: 1; }
.task-time { font-size: 11px; color: var(--muted); }
.metric-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.metric-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.metric-value { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--amber); }
.metric-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.lesson-box { background: var(--bg-3); border-left: 3px solid var(--blue); padding: 16px; border-radius: 0 8px 8px 0; }
.lesson-title { font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.lesson-body { font-size: 13px; color: var(--cream-dim); line-height: 1.6; }
.quiz-box { margin-top: 16px; }
.quiz-question { font-size: 13px; color: var(--cream); margin-bottom: 8px; }
.quiz-reveal { font-size: 12px; color: var(--green); cursor: pointer; }
.quiz-answer { display: none; font-size: 12px; color: var(--green); margin-top: 4px; font-weight: 600; }
.days-badge { display: inline-block; background: rgba(74, 144, 217, 0.1); color: var(--blue); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; margin-bottom: 24px; }
.loading-panel { padding: 40px; text-align: center; color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .dash-header-inner { flex-direction: column; gap: 4px; }
  .metric-cards { grid-template-columns: 1fr; }
  .dashboard { padding: 24px 30px; }
}

@media (max-width: 600px) {
  .roadmap-weeks { grid-template-columns: 1fr; }
  .stat-number { font-size: 80px; }
  .hero-headline { font-size: 32px; }
  .features-title, .cockpit-title, .roadmap-title { font-size: 30px; }
  .closing-headline { font-size: 32px; }
  .roadmap-metric { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===========================
   SHARPENER CARD
   =========================== */
.sharpener-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 3px solid var(--blue);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.sharpener-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.sharpener-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}
.sharpener-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: 0.05em;
}
.sharpener-hook {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 14px;
}
.sharpener-open-btn {
  background: rgba(74, 144, 217, 0.1);
  color: var(--blue);
  border: 1px solid rgba(74, 144, 217, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.sharpener-open-btn:hover { background: rgba(74, 144, 217, 0.2); }
.sharpener-open-btn.seen { color: var(--muted); border-color: var(--border); background: transparent; }
.sharpener-completed-badge { font-size: 11px; color: var(--success); font-weight: 600; margin-top: 10px; }

/* Sharpener modal */
.sharpener-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.sharpener-modal-overlay.open { display: flex; }
.sharpener-modal {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  padding: 36px;
  position: relative;
  margin: auto;
}
.sharpener-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.sharpener-modal-close:hover { color: var(--cream); }
.sm-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.sm-title { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--cream); margin-bottom: 6px; line-height: 1.2; }
.sm-hook { font-size: 16px; color: var(--cream-dim); line-height: 1.55; font-style: italic; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.sm-body { font-size: 14px; color: var(--cream-dim); line-height: 1.75; margin-bottom: 24px; white-space: pre-line; }
.sm-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.sm-warning { background: rgba(248, 113, 113, 0.08); border-left: 3px solid var(--danger); padding: 14px 16px; border-radius: 0 8px 8px 0; font-size: 13px; color: var(--cream-dim); line-height: 1.6; margin-bottom: 24px; }
.sm-micro-action { background: rgba(74, 222, 128, 0.06); border-left: 3px solid var(--success); padding: 14px 16px; border-radius: 0 8px 8px 0; font-size: 13px; color: var(--cream-dim); line-height: 1.6; margin-bottom: 28px; }
.sm-quiz { background: var(--bg-3); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.sm-quiz-question { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 14px; }
.sm-quiz-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.sm-quiz-option { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 7px; background: var(--bg-2); cursor: pointer; font-size: 13px; color: var(--cream-dim); transition: border-color 0.15s, background 0.15s; line-height: 1.5; }
.sm-quiz-option:hover { border-color: var(--blue); color: var(--cream); }
.sm-quiz-option.correct { border-color: var(--success); background: rgba(74, 222, 128, 0.08); color: var(--cream); }
.sm-quiz-option.wrong { border-color: var(--danger); background: rgba(248, 113, 113, 0.08); }
.sm-quiz-option.disabled { cursor: not-allowed; pointer-events: none; }
.sm-quiz-result { font-size: 13px; line-height: 1.6; padding: 12px 14px; border-radius: 7px; display: none; }
.sm-quiz-result.correct-result { background: rgba(74, 222, 128, 0.1); color: var(--success); font-weight: 600; display: block; }
.sm-quiz-result.wrong-result { background: rgba(248, 113, 113, 0.06); color: var(--cream-dim); display: block; }

/* ===========================
   DASHBOARD LAYOUT (sidebar)
   =========================== */

.dash-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 93px);
}
.dash-sidebar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
}
.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-bottom {
  margin-top: auto;
}
.sidebar-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--amber);
}
.sidebar-item.active {
  background: rgba(74, 144, 217, 0.1);
  color: var(--blue);
  font-weight: 600;
}
@media (max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
}
