:root {
  --bg: #edf2f7;
  --bg-alt: #dfe7f0;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-strong: #f8fbff;
  --line: rgba(13, 24, 48, 0.14);
  --text: #0d1830;
  --muted: #4a5568;
  --soft: #25364d;
  --gold: #d4a017;
  --blue: #2b5ba0;
  --green: #2d7d46;
  --shadow: 0 18px 45px rgba(13, 24, 48, 0.12);
  --radius-xl: 18px;
  --radius-lg: 12px;
  --radius-md: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(141, 179, 241, 0.22), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(212, 160, 23, 0.12), transparent 20%),
    linear-gradient(180deg, #edf2f7 0%, #e6edf5 42%, #edf2f7 100%);
}

body.admin-command-theme {
  --panel: rgba(255, 255, 255, 0.96);
  --panel-strong: #f8fbff;
  --line: rgba(13, 24, 48, 0.16);
  --gold: #d4a017;
  --blue: #2b5ba0;
  --green: #2d7d46;
  background:
    radial-gradient(circle at top left, rgba(141, 179, 241, 0.22), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(212, 160, 23, 0.12), transparent 20%),
    linear-gradient(180deg, #edf2f7 0%, #e6edf5 42%, #edf2f7 100%);
}

body.admin-command-theme .hero-panel {
  background:
    radial-gradient(circle at top right, rgba(141, 179, 241, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94));
}

body.admin-command-theme .gold-action {
  color: #fff;
  background: linear-gradient(180deg, #3e6fb5, #2b5ba0);
  box-shadow: 0 14px 30px rgba(43, 91, 160, 0.2);
}

body.admin-command-theme .tracker-panel {
  border-color: rgba(13, 24, 48, 0.14);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 24, 48, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 24, 48, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

.tracker-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 80px;
  display: grid;
  gap: 18px;
}

.tracking-workspace {
  display: grid;
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.workspace-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.tracker-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel,
.selector-panel,
.profile-panel,
.detail-card,
.metric-card,
.progress-report-panel {
  padding: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(141, 179, 241, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94));
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-panel h1,
.profile-panel h2,
.detail-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

.hero-panel h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-summary,
.member-meta {
  margin: 8px 0 0;
  color: var(--soft);
  line-height: 1.6;
}

.progress-report-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.report-summary-card {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.report-summary-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.7rem;
}

.report-summary-note {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.report-course-list {
  display: grid;
  gap: 14px;
}

.report-course-card {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.report-course-card.incomplete {
  border-color: rgba(255, 120, 120, 0.34);
  background: rgba(255, 120, 120, 0.05);
}

.report-course-card.complete {
  border-color: rgba(127, 208, 160, 0.22);
}

.report-course-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.report-course-header h4 {
  margin: 0;
  font-size: 1.05rem;
}

.report-course-metrics {
  display: grid;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}

.report-course-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.report-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.report-compare-card {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.report-compare-card .metric-label {
  margin-bottom: 8px;
}

.report-compare-card strong {
  display: block;
  font-size: 1rem;
}

.report-compare-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.report-compare-card.pass {
  border-color: rgba(127, 208, 160, 0.34);
  background: rgba(127, 208, 160, 0.08);
}

.report-compare-card.incomplete {
  border-color: rgba(255, 120, 120, 0.34);
  background: rgba(255, 120, 120, 0.08);
}

.report-compare-card.fail {
  border-color: rgba(255, 120, 120, 0.34);
  background: rgba(255, 120, 120, 0.08);
}

.report-compare-card.pending {
  border-color: rgba(240, 182, 59, 0.34);
  background: rgba(240, 182, 59, 0.08);
}

.report-entry-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-entry {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.report-entry span {
  color: var(--soft);
}

.report-entry.completed {
  border-color: rgba(127, 208, 160, 0.34);
  background: rgba(127, 208, 160, 0.08);
}

.report-entry.in_progress,
.report-entry.not_started,
.report-entry.locked {
  border-color: rgba(255, 120, 120, 0.34);
  background: rgba(255, 120, 120, 0.08);
}

.member-lifecycle-status {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.member-lifecycle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lifecycle-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.78);
}

.lifecycle-chip.active {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.lifecycle-chip.completed {
  color: #f7d68b;
  background: rgba(240, 182, 59, 0.12);
  border-color: rgba(240, 182, 59, 0.28);
}

.lifecycle-chip.revoked {
  color: #ffd1d1;
  background: rgba(210, 92, 92, 0.18);
  border-color: rgba(210, 92, 92, 0.42);
}

.member-lifecycle-detail {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button-link.gold-action {
  border-color: transparent;
  background: linear-gradient(180deg, #e3b739, #d4a017);
  color: #1d1407;
  box-shadow: 0 14px 30px rgba(240, 182, 59, 0.22);
}

.button-link.gold-action:hover {
  border-color: transparent;
  background: linear-gradient(180deg, #e3b739, #d4a017);
}

.button-link.white-action {
  border-color: rgba(13, 24, 48, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-link.white-action:hover {
  border-color: rgba(43, 91, 160, 0.34);
  background: rgba(248, 251, 255, 0.96);
}

.selector-grid,
.metric-grid,
.content-grid {
  display: grid;
  gap: 16px;
}

.selector-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px) minmax(0, 1fr);
}

.selector-field {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 700;
}

.selector-action {
  display: grid;
  gap: 8px;
  align-self: end;
  color: var(--soft);
  font-weight: 700;
}

.selector-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.profile-panel {
  background:
    linear-gradient(180deg, rgba(141, 179, 241, 0.12), rgba(255, 255, 255, 0.94)),
    #fff;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  display: grid;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94));
}

.metric-label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-card strong {
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  letter-spacing: -0.04em;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.print-center-shell {
  padding-bottom: 96px;
}

.print-center-title {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

.print-center-grid {
  align-items: start;
}

.print-intro-card {
  background:
    linear-gradient(180deg, rgba(141, 179, 241, 0.12), rgba(255, 255, 255, 0.94)),
    #fff;
}

.print-link-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.print-link-list .button-link {
  justify-content: flex-start;
  border-color: transparent;
  background: linear-gradient(180deg, #e3b739, #d4a017);
  color: #1d1407;
  box-shadow: 0 14px 30px rgba(240, 182, 59, 0.22);
}

.print-link-list .button-link:hover {
  border-color: transparent;
  background: linear-gradient(180deg, #f7cb62, #df9b17);
}

.stack-list {
  display: grid;
  gap: 12px;
}

.list-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.course-item {
  padding: 0;
  overflow: hidden;
}

.course-summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
}

.course-summary::-webkit-details-marker {
  display: none;
}

.list-item strong {
  display: block;
  font-size: 1rem;
}

.list-item p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.management-item {
  position: relative;
  overflow: hidden;
}

.management-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: rgba(87, 168, 255, 0.5);
}

.management-item.completed::before {
  background: rgba(127, 208, 160, 0.72);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-chip.completed {
  background: rgba(127, 208, 160, 0.16);
  color: var(--green);
  border: 1px solid rgba(127, 208, 160, 0.34);
}

.status-chip.enrolled {
  background: rgba(87, 168, 255, 0.16);
  color: var(--blue);
  border: 1px solid rgba(87, 168, 255, 0.34);
}

.course-header,
.pathway-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.progress-block {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.progress-copy strong {
  font-size: 0.92rem;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.progress-fill.completed {
  background: var(--green);
}

.domain-progress-section {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(164, 183, 194, 0.12);
}

.domain-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domain-pill {
  min-width: 112px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.domain-pill span,
.domain-pill strong {
  display: block;
}

.domain-pill span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.domain-pill strong {
  margin-top: 4px;
  font-size: 0.9rem;
}

.domain-pill.completed {
  border-color: rgba(127, 208, 160, 0.34);
  background: rgba(127, 208, 160, 0.1);
}

.domain-pill.completed strong {
  color: var(--green);
}

.domain-pill.in_progress {
  border-color: rgba(87, 168, 255, 0.34);
  background: rgba(87, 168, 255, 0.1);
}

.domain-pill.in_progress strong {
  color: var(--blue);
}

.domain-pill.locked,
.domain-pill.not_started {
  background: rgba(255, 255, 255, 0.02);
}

.domain-progress-note {
  margin: 0;
}

.inline-action-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.course-schedule {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(248, 251, 255, 0.92);
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
}

.schedule-row.completed strong {
  color: var(--green);
}

.schedule-row.completed .schedule-label {
  color: var(--green);
}

.schedule-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
}

.admin-editor-panel {
  padding: 24px;
  display: grid;
  gap: 18px;
  position: sticky;
  top: 16px;
  background:
    linear-gradient(180deg, rgba(141, 179, 241, 0.12), rgba(255, 255, 255, 0.94)),
    #fff;
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.admin-editor-panel.state-dirty {
  border-color: rgba(240, 182, 59, 0.42);
}

.admin-editor-panel.state-saving {
  border-color: rgba(87, 168, 255, 0.42);
}

.admin-editor-panel.state-success {
  border-color: rgba(127, 208, 160, 0.52);
  box-shadow: 0 0 0 1px rgba(127, 208, 160, 0.22), var(--shadow);
}

.admin-editor-panel.state-error {
  border-color: rgba(255, 120, 120, 0.52);
  box-shadow: 0 0 0 1px rgba(255, 120, 120, 0.18), var(--shadow);
}

.admin-editor-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.admin-editor-header h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

.admin-editor-body {
  display: grid;
  gap: 18px;
}

.admin-editor-section {
  display: grid;
  gap: 12px;
}

.admin-help-text {
  margin: -2px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-editor-grid-stack {
  grid-template-columns: minmax(0, 1fr);
}

.admin-lifecycle-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(248, 251, 255, 0.92);
}

.admin-lifecycle-summary {
  display: grid;
  gap: 8px;
  color: var(--soft);
}

.admin-lifecycle-summary strong {
  display: inline;
}

.admin-course-list {
  display: grid;
  gap: 12px;
}

.admin-course-row {
  display: block;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(248, 251, 255, 0.92);
}

.admin-course-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-weight: 700;
}

.admin-course-toggle input[type="checkbox"] {
  inline-size: 18px;
  block-size: 18px;
}

.admin-date-input,
.admin-editor-panel select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.admin-course-meta {
  display: grid;
  gap: 6px;
}

.admin-course-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.admin-course-result-grid input,
.admin-course-result-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.admin-course-result-grid textarea {
  min-height: 112px;
  padding: 12px 14px;
  resize: vertical;
}

.admin-course-result-grid .selector-field.is-disabled {
  opacity: 0.55;
}

.admin-course-result-grid[hidden] {
  display: none;
}

.admin-course-row.disabled {
  opacity: 0.58;
}

.admin-course-row.disabled .admin-course-toggle {
  cursor: default;
}

.admin-course-row.disabled input[type="checkbox"] {
  pointer-events: none;
}

.admin-course-title {
  font-size: 1rem;
}

.admin-save-status {
  margin: 0;
  min-height: 24px;
  color: var(--soft);
  font-weight: 700;
}

.admin-save-status.error {
  color: #ffb4b4;
}

.admin-save-status.success {
  color: var(--green);
}

.admin-save-status.pending {
  color: var(--blue);
}

.button-link.gold-action.state-success {
  background: linear-gradient(180deg, #9be4b5, #57af79);
  color: #0b1b11;
  box-shadow: 0 14px 30px rgba(127, 208, 160, 0.22);
}

.button-link.gold-action.state-error {
  background: linear-gradient(180deg, #ffb8b8, #d46464);
  color: #2a0f0f;
  box-shadow: 0 14px 30px rgba(255, 120, 120, 0.2);
}

.button-link.gold-action.state-saving {
  background: linear-gradient(180deg, #8fc5ff, #4b86d6);
  color: #081528;
  box-shadow: 0 14px 30px rgba(87, 168, 255, 0.24);
}

.tracker-panel.refresh-flash {
  animation: tracking-refresh-flash 1.4s ease;
}

@keyframes tracking-refresh-flash {
  0% {
    box-shadow: 0 0 0 1px rgba(127, 208, 160, 0.24), var(--shadow);
    transform: translateY(-1px);
  }
  100% {
    box-shadow: var(--shadow);
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .tracking-workspace,
  .hero-panel,
  .selector-grid,
  .metric-grid,
  .content-grid,
  .report-summary-grid,
  .report-entry-group {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-items: start;
  }

  .admin-editor-panel {
    position: static;
  }

  .admin-editor-header,
  .admin-editor-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body::before,
  .hero-panel,
  .selector-panel,
  .workspace-admin,
  .button-link,
  #progress-report-print-button {
    display: none !important;
  }

  .tracking-workspace,
  .workspace-preview,
  .report-summary-grid,
  .report-entry-group {
    display: block;
  }

  .progress-report-panel,
  .report-course-card,
  .report-summary-card,
  .report-entry {
    box-shadow: none;
    background: white;
    color: black;
    border-color: #d0d0d0;
  }
}

@media screen {
/* Local Manus dark color pass: color-only overrides. */
:root {
  --bg: #0d1830;
  --bg-alt: #101f36;
  --panel: rgba(15, 30, 53, 0.94);
  --panel-strong: rgba(18, 34, 58, 0.96);
  --line: rgba(141, 179, 241, 0.18);
  --text: #f8fbff;
  --muted: #b7c4d6;
  --soft: #d9e4f5;
  --gold: #d4a017;
  --blue: #8db3f1;
  --green: #62c184;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  --light-card-bg: rgba(232, 239, 249, 0.94);
  --light-card-line: rgba(141, 179, 241, 0.28);
  --light-card-title: #0d1830;
  --light-card-body: #46566d;
}

body,
body.admin-command-theme {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(43, 91, 160, 0.34), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(212, 160, 23, 0.14), transparent 22%),
    linear-gradient(180deg, #071122 0%, #0d1830 44%, #101f36 100%);
}

body.admin-command-theme {
  --panel: rgba(15, 30, 53, 0.94);
  --panel-strong: rgba(18, 34, 58, 0.96);
  --line: rgba(141, 179, 241, 0.18);
  --blue: #8db3f1;
  --green: #62c184;
  --gold: #d4a017;
}

body::before {
  background-image:
    linear-gradient(rgba(141, 179, 241, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 179, 241, 0.055) 1px, transparent 1px);
}

.tracker-panel,
.hero-panel,
.selector-panel,
.profile-panel,
.detail-card,
.metric-card,
.progress-report-panel,
.admin-editor-panel,
.report-summary-card,
.report-course-card,
.course-status-item,
.pathway-card,
.admin-editor-section,
.admin-lifecycle-card,
.admin-course-row {
  background: var(--panel);
  border-color: var(--line);
  box-shadow: var(--shadow);
  color: var(--text);
}

.hero-panel,
body.admin-command-theme .hero-panel,
.profile-panel,
.admin-editor-panel {
  background:
    radial-gradient(circle at top right, rgba(43, 91, 160, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(15, 30, 53, 0.96), rgba(10, 20, 38, 0.94));
}

.selector-panel select,
.admin-editor-panel select,
.admin-editor-panel input,
.admin-editor-panel textarea {
  background: rgba(7, 17, 34, 0.9);
  color: var(--text);
  border-color: var(--line);
}

.hero-summary,
.member-meta,
.report-summary-note,
.admin-help-text,
.course-status-meta,
.pathway-meta {
  color: var(--muted);
}

.lifecycle-chip,
.button-link.white-action,
.course-schedule {
  background: var(--light-card-bg);
  border-color: var(--light-card-line);
  color: var(--light-card-body);
}

.button-link.white-action {
  color: var(--light-card-title);
}

.course-schedule strong,
.lifecycle-chip {
  color: var(--light-card-title);
}

.schedule-label {
  color: var(--light-card-body);
}

.schedule-row.completed strong,
.schedule-row.completed .schedule-label {
  color: #2d7d46;
}
}
