/* modernAIse Customer Platform — global stylesheet
   Token-driven typography via /app/static/design-tokens.css.
   No external CDN imports — Space Grotesk is self-hosted under
   /app/static/fonts/space-grotesk/ (binaries pending; system-font
   fallback chain in --font-sans renders correctly until then). */

/* ── Reset & base ─────────────────────────────────────────────────────────── */

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

/* Legacy token aliases — resolved to the monochrome light system (#1027).
   This :root previously defined a DARK theme that *shadowed* the light
   --color-* tokens: the body bg (var(--bg)) was near-black and peeked out
   behind the light card surfaces. Values are now literal monochrome-light so
   styles.css base rules render black-on-white; status hues are KEPT; accent
   is the terracotta AI accent. Literals (not var(--color-*) aliases) because
   goals.html / people.html load styles.css without design-tokens.css. */
:root {
  --bg:          #ffffff;   /* was #0a0a0f */
  --bg-card:     #ffffff;   /* was #111118 */
  --bg-input:    #ffffff;   /* was #16161f */
  --border:      #e2e8f0;   /* was #1e1e2e */
  --border-soft: #f1f5f9;   /* was #2a2a3a */
  --accent:      #C8502A;   /* was #6366f1 — terracotta AI accent */
  --accent-glow: rgba(200, 80, 42, 0.18);  /* was indigo glow */
  --accent-dim:  #A8431F;   /* was #4f52c8 */
  --success:     #16a34a;   /* status KEPT (was #22c55e) */
  --warning:     #d97706;   /* status KEPT (was #f59e0b) */
  --danger:      #dc2626;   /* status KEPT (was #ef4444) */
  --text:        #000000;   /* was #e2e2ed */
  --text-muted:  #64748b;   /* was #8a8aaa */
  --text-dim:    #94a3b8;   /* was #6a6a8a */
  --radius:      10px;
  --radius-sm:   6px;
  --shadow:      0 4px 12px rgba(15, 23, 42, 0.10), 0 2px 4px rgba(15, 23, 42, 0.06);
}

html, body {
  height: 100%;
}

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

/* ── Typography ───────────────────────────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.1rem; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.82em;
  letter-spacing: 0;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header / Nav ─────────────────────────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.wordmark {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark span {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tenant-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── Card ─────────────────────────────────────────────────────────────────── */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-tight {
  padding: 20px 24px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-dim);
  box-shadow: 0 0 18px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
}

.btn-ghost:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--border-soft);
  background: var(--bg-input);
}

.btn-danger {
  background: transparent;
  color: var(--danger);
  border: 1px solid var(--danger);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
}

/* ── Forms ────────────────────────────────────────────────────────────────── */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group:last-child {
  margin-bottom: 0;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Light-theme form controls. The legacy --bg-input / --text tokens were
   the original dark-theme defaults; using them here rendered every
   unstyled input as black-on-black against the live light surface. */
input, select, textarea {
  background: var(--color-bg-card, #ffffff);
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-sm, 6px);
  color: var(--color-fg, #0f172a);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 10px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: var(--color-fg-muted, #64748b);
  opacity: 1;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-accent, #4f46e5);
  box-shadow: 0 0 0 3px var(--color-accent-soft, rgba(79,70,229,0.18));
}

textarea {
  resize: vertical;
  min-height: 90px;
}

select option {
  background: var(--color-bg-card, #ffffff);
  color: var(--color-fg, #0f172a);
}

/* ── Alerts / banners ─────────────────────────────────────────────────────── */

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.alert-info {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
}

/* ── Step status badges ───────────────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-complete {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-active {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.badge-locked {
  background: rgba(74, 74, 106, 0.25);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

/* ── Journey overview cards ───────────────────────────────────────────────── */

.journey-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.journey-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: default;
}

.journey-card.clickable {
  cursor: pointer;
}

.journey-card.clickable:hover {
  border-color: var(--border-soft);
  box-shadow: 0 0 20px var(--accent-glow);
}

.journey-card.active {
  border-color: rgba(99, 102, 241, 0.4);
}

.journey-card.locked {
  opacity: 0.55;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dim);
  min-width: 36px;
  text-align: center;
}

.journey-card.active .step-num,
.journey-card.complete .step-num {
  color: var(--accent);
}

.step-info {
  flex: 1;
}

.step-info h3 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.step-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.step-arrow {
  font-size: 1.1rem;
  color: var(--text-dim);
}

.journey-card.clickable:hover .step-arrow {
  color: var(--accent);
}

/* ── Step page layout ─────────────────────────────────────────────────────── */

.step-header {
  margin: 40px 0 28px;
}

.step-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-header h1 {
  margin-bottom: 6px;
}

.step-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 24px;
  margin-bottom: 0;
}

.back-link:hover {
  color: var(--accent);
}

/* ── Read-only artefact view ──────────────────────────────────────────────── */

.artefact-block {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.field-row:last-child {
  border-bottom: none;
}

.field-label {
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.field-value {
  font-size: 0.93rem;
  color: var(--text);
}

/* ── Locked step placeholder ──────────────────────────────────────────────── */

.locked-placeholder {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

.locked-placeholder .lock-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.locked-placeholder h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* ── Data source list ─────────────────────────────────────────────────────── */

.source-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.source-name {
  font-weight: 500;
  font-size: 0.92rem;
}

.source-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.source-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
}

.source-status.connected {
  background: rgba(34,197,94,0.1);
  color: var(--success);
}

.source-status.pending {
  background: rgba(245,158,11,0.1);
  color: var(--warning);
}

.source-status.error {
  background: rgba(239,68,68,0.1);
  color: var(--danger);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN SYSTEM PRIMITIVES  (issue #725)
   ═══════════════════════════════════════════════════════════════════════════
   All primitives are class-only — no JS dependency.
   Instance values (segment widths, inline colour overrides) use inline
   style="…" exactly as the reference mock does.
   All classes are namespaced to avoid collisions across fragments.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Shared animation ─────────────────────────────────────────────────────── */

/**
 * pulse-beat: used by .vital-pulse and any future "live" indicator.
 * Grows the element to 1.5× while boosting opacity, then returns.
 * Disabled when the user requests reduced motion.
 */
@keyframes pulse-beat {
  0%,100% { transform: scale(1);   opacity: 0.6; }
  50%     { transform: scale(1.5); opacity: 1;   }
}

@media (prefers-reduced-motion: reduce) {
  .vital-pulse { animation: none !important; }
}


/* ── (a) Sentiment-ring avatar ────────────────────────────────────────────── */

/**
 * Usage:
 *   <span class="sentiment-avatar sentiment-avatar--supportive">JD</span>
 *   <span class="sentiment-avatar sentiment-avatar--neutral sentiment-avatar--lg">MO</span>
 *
 * Modifiers:
 *   --supportive  ring = --sentiment-supportive (green)
 *   --neutral     ring = --sentiment-neutral    (amber)
 *   --resistant   ring = --sentiment-resistant  (red)
 *   --lg          64px variant, larger ring + font
 */
.sentiment-avatar {
  --ring: transparent; /* default: no ring; overridden by modifier */

  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  width:           36px;
  height:          36px;
  border-radius:   50%;
  background:      linear-gradient(135deg, #6366f1, #312e81);
  color:           #ffffff;
  font-family:     var(--font-sans);
  font-size:       var(--fs-xs);
  font-weight:     700;
  line-height:     1;
  flex-shrink:     0;
  box-shadow:      0 0 0 2px var(--ring);
  user-select:     none;
}

.sentiment-avatar--supportive { --ring: var(--sentiment-supportive); }
.sentiment-avatar--neutral    { --ring: var(--sentiment-neutral);    }
.sentiment-avatar--resistant  { --ring: var(--sentiment-resistant);  }

.sentiment-avatar--lg {
  width:     68px;
  height:    68px;
  font-size: var(--fs-xl);
  box-shadow: 0 0 0 3px var(--ring);
}


/* ── (b) Human / Augmented / Autonomous blend bar ────────────────────────── */

/**
 * Usage:
 *   <div class="blend-bar">
 *     <div class="blend-bar__seg blend-bar__seg--human"     style="width:64%">64%</div>
 *     <div class="blend-bar__seg blend-bar__seg--augmented" style="width:30%">30%</div>
 *     <div class="blend-bar__seg blend-bar__seg--autonomous" style="width:6%"></div>
 *   </div>
 *   <div class="blend-bar blend-bar--sm"> … </div>   <!-- compact inline variant -->
 *
 *   <!-- Optional legend row -->
 *   <div class="blend-bar-key">
 *     <span class="blend-bar-key__item">
 *       <span class="blend-bar-key__swatch" style="background:var(--blend-human)"></span>Human
 *     </span>
 *   </div>
 */
.blend-bar {
  display:       flex;
  height:        26px;
  border-radius: var(--radius-pill);
  overflow:      hidden;
  border:        1px solid var(--color-border);
  background:    var(--color-bg-subtle);
}

.blend-bar__seg {
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-family:     var(--font-sans);
  font-size:       var(--fs-xs);
  font-weight:     700;
  color:           #ffffff;
  white-space:     nowrap;
  overflow:        hidden;
}

.blend-bar__seg--human     { background: var(--blend-human);     color: var(--blend-human-fg); }
.blend-bar__seg--augmented { background: var(--blend-augmented); color: #ffffff; }
.blend-bar__seg--autonomous{ background: var(--blend-autonomous); color: #ffffff; }

/* Compact (~18px) variant for inline / table use */
.blend-bar--sm {
  height: 18px;
}
.blend-bar--sm .blend-bar__seg {
  font-size: 9px;
}

/* Legend row */
.blend-bar-key {
  display:     flex;
  gap:         var(--space-4, 16px);
  flex-wrap:   wrap;
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  color:       var(--color-fg-muted);
  margin-top:  var(--space-2, 8px);
}

.blend-bar-key__item {
  display:     inline-flex;
  align-items: center;
  gap:         5px;
}

.blend-bar-key__swatch {
  display:       inline-block;
  width:         10px;
  height:        10px;
  border-radius: var(--radius-sm);
  flex-shrink:   0;
}


/* ── (c) Live pulse vital-sign ───────────────────────────────────────────── */

/**
 * Usage (standalone dot):
 *   <span class="vital-pulse vital-pulse--live"></span>
 *
 * Usage (dot + label):
 *   <span class="vital-pulse-tag">
 *     <span class="vital-pulse vital-pulse--live"></span>
 *     Live
 *   </span>
 *
 * Modifiers:
 *   --live  green (success)
 *   --warn  amber (warning)
 *   --down  red   (danger)
 */
.vital-pulse {
  --pulse: var(--color-fg-muted); /* default neutral — overridden by modifier */

  display:       inline-block;
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    var(--pulse);
  animation:     pulse-beat 2s ease-in-out infinite;
  flex-shrink:   0;
}

.vital-pulse--live { --pulse: var(--color-success); }
.vital-pulse--warn { --pulse: var(--color-warning); }
.vital-pulse--down { --pulse: var(--color-danger);  }

/* Inline-flex wrapper: dot + label text */
.vital-pulse-tag {
  display:     inline-flex;
  align-items: center;
  gap:         var(--space-2, 8px);
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  color:       var(--color-fg-muted);
}


/* ── (d) Adoption / stage tracker ───────────────────────────────────────── */

/**
 * Usage:
 *   <div class="stage-track">
 *     <div class="stage-track__step is-done">
 *       <div class="stage-track__node">1</div>
 *       <div class="stage-track__label">Aware</div>
 *     </div>
 *     <div class="stage-track__step is-current">
 *       <div class="stage-track__node">2</div>
 *       <div class="stage-track__label">Trying</div>
 *     </div>
 *     <div class="stage-track__step is-todo">
 *       <div class="stage-track__node">3</div>
 *       <div class="stage-track__label">Adopting</div>
 *     </div>
 *   </div>
 *
 * States: .is-done (filled accent), .is-current (accent ring), .is-todo (muted)
 */
.stage-track {
  display:     flex;
  align-items: flex-start;
  gap:         0;
}

.stage-track__step {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  flex:           1;
  position:       relative;
  min-width:      0;
}

/* Connecting line between steps (not on last step) */
.stage-track__step:not(:last-child)::after {
  content:    '';
  position:   absolute;
  top:        8px; /* vertically centred on the node dot */
  left:       50%;
  right:      0;
  width:      100%;
  height:     2px;
  background: var(--color-border);
  z-index:    0;
}
/* Filled line for completed steps */
.stage-track__step.is-done:not(:last-child)::after {
  background: var(--color-accent);
}

.stage-track__node {
  position:       relative;
  z-index:        1;
  width:          18px;
  height:         18px;
  border-radius:  50%;
  display:        flex;
  align-items:    center;
  justify-content:center;
  font-family:    var(--font-sans);
  font-size:      10px;
  font-weight:    700;
  line-height:    1;
  /* default (todo) */
  background:     var(--color-bg-subtle);
  color:          var(--color-fg-muted);
  border:         2px solid var(--color-border);
  transition:     background var(--duration-fast, 150ms),
                  border-color var(--duration-fast, 150ms),
                  box-shadow var(--duration-fast, 150ms);
}

.stage-track__step.is-done .stage-track__node {
  background:   var(--color-accent);
  border-color: var(--color-accent);
  color:        #ffffff;
}

.stage-track__step.is-current .stage-track__node {
  background:   var(--color-accent-soft);
  border-color: var(--color-accent);
  color:        var(--color-accent);
  box-shadow:   0 0 0 3px var(--color-accent-soft);
}

.stage-track__label {
  margin-top:  5px;
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  font-weight: 600;
  color:       var(--color-fg-muted);
  text-align:  center;
  line-height: 1.2;
  white-space: nowrap;
}

.stage-track__step.is-done .stage-track__label,
.stage-track__step.is-current .stage-track__label {
  color: var(--color-accent);
}


/* ── (e) Target-gap progress bar ─────────────────────────────────────────── */

/**
 * Shared progress bar showing how far a metric has moved from baseline to
 * target.  Used by goals cards (issue #740 Task 4) and KPI tiles (Task 5).
 *
 * Usage:
 *   <div class="gap-bar">
 *     <div class="gap-bar__fill gap-bar__fill--ok" style="width:62%"></div>
 *     <!-- optional target tick at a fixed x% -->
 *     <div class="gap-bar__target" style="left:100%"></div>
 *   </div>
 *
 * Fill colour modifiers (applied to gap-bar__fill):
 *   --ok    success green  (achieved / on-track)
 *   --warn  amber          (at_risk / approaching target)
 *   --risk  danger red     (missed / breached)
 *   (no modifier) accent/indigo — default for in-progress
 */
.gap-bar {
  position:      relative;
  height:        6px;
  border-radius: var(--radius-pill, 99px);
  background:    var(--color-bg-subtle, #f1f5f9);
  overflow:      visible; /* allow target tick to poke out slightly */
}

.gap-bar__fill {
  height:        100%;
  border-radius: inherit;
  background:    var(--color-accent, #4f46e5);
  transition:    width 0.3s ease;
  max-width:     100%;
}

/* Colour modifiers */
.gap-bar__fill--ok   { background: var(--color-success,  #22c55e); }
.gap-bar__fill--warn { background: var(--color-warning,  #f59e0b); }
.gap-bar__fill--risk { background: var(--color-danger,   #ef4444); }

/* Optional hairline tick marking the 100% target */
.gap-bar__target {
  position:   absolute;
  top:        -2px;
  width:      2px;
  height:     10px;
  background: var(--color-fg-muted, #94a3b8);
  border-radius: 1px;
  transform:  translateX(-50%);
}


/* ── Spinner ──────────────────────────────────────────────────────────────── */

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Login page ───────────────────────────────────────────────────────────── */

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-box {
  width: 100%;
  max-width: 420px;
}

.login-logo {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo h1 {
  font-size: 1.8rem;
}

.login-logo p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 6px;
}

/* ── Misc utility ─────────────────────────────────────────────────────────── */

.mt-4  { margin-top: 4px;  }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-success{ color: var(--success); }
.text-danger { color: var(--danger); }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.hidden { display: none !important; }

.completed-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--success);
  margin-bottom: 20px;
}
