/* ============================================================
   Main column, section frames, hero/dashboard, roadmap
   ============================================================ */

main {
  padding: 48px 60px 120px;
  max-width: 980px;
  width: 100%;
  position: relative;
  z-index: 1;
}

section {
  margin-bottom: 96px;
  scroll-margin-top: 20px;
}

section:last-child { margin-bottom: 0; }

.section-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-meta::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.section-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

/* ---- Hero / Dashboard ---- */
.hero {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 166, 87, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.stat-val {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}

.stat-lab {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Roadmap ---- */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.week-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
}

.week-header {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.week-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.day-list {
  list-style: none;
  margin: 0;
  font-size: 13px;
}

.day-list li {
  padding: 6px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.day-list li:last-child { border-bottom: none; }

.day-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  min-width: 30px;
  font-weight: 600;
}
