:root {
  --amber: #d97706;
  --amber-dark: #b45309;
  --amber-light: #f59e0b;
  --bg: #fdf6ee;
  --surface: #ffffff;
  --text: #1c1917;
  --muted: #78716c;
  --border: #e7ddd0;
  --border-strong: #d6c9b8;
  --accent: #ea580c;
  --danger: #dc2626;
  --header-bg: #292524;
  --banner-bg: #1c1917;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-card: 0 1px 4px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ═══ HEADER ═══ */
.site-header {
  background: var(--header-bg);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 50px;
}
.site-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.header-upload {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 120ms;
}
.header-upload:hover { background: rgba(255,255,255,0.2); }
.header-upload svg { stroke: var(--amber-light); }
.header-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 0.35rem 2.2rem 0.35rem 0.9rem;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.88rem;
  outline: none;
}
.header-search input::placeholder { color: rgba(255,255,255,0.45); }
.header-search input:focus { background: rgba(255,255,255,0.18); }
.header-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
}
.header-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  white-space: nowrap;
}
.header-nav a:hover { color: #fff; }

/* ─── HQ toggle ─── */
.hq-toggle {
  display: flex;
  align-items: center;
  gap: .55rem;
  cursor: pointer;
  font-size: .88rem;
  margin-top: .6rem;
  user-select: none;
}
.hq-toggle input { display: none; }
.hq-toggle-track {
  width: 34px; height: 18px;
  background: #d6c9b8;
  border-radius: 999px;
  flex-shrink: 0;
  position: relative;
  transition: background .2s;
}
.hq-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
}
.hq-toggle input:checked + .hq-toggle-track { background: var(--amber); }
.hq-toggle input:checked + .hq-toggle-track::after { transform: translateX(16px); }
.hq-upsell {
  display: block;
  margin-top: .6rem;
  font-size: .82rem;
  color: var(--amber);
  text-decoration: none;
}
.hq-upsell:hover { text-decoration: underline; }
.btn-upsell {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-upsell:hover { background: #fef3c7; }
.tab-lock { font-size: .65rem; vertical-align: middle; margin-left: .2rem; }
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s;
}
.btn-google:hover { background: #fdf6ee; }
.header-signout {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  font: inherit;
  padding: 0;
  white-space: nowrap;
}
.header-signout:hover { color: #fff; }
.header-quota {
  background: rgba(255,255,255,0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
}

/* Banner */
.promo-banner {
  background: var(--banner-bg);
  color: #d6c9b8;
  text-align: center;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.promo-banner a {
  padding: 0.2rem 0.7rem;
  background: var(--amber);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.72rem;
}
.promo-banner a:hover { background: var(--amber-dark); }
.promo-rating {
  margin-left: 1rem;
  font-size: 0.75rem;
  color: #a8998c;
}

/* ═══ LAYOUT ═══ */
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 120ms;
  text-decoration: none;
}
.btn:hover { background: #fdf6ee; }
.btn-primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: #fdf6ee; }

/* ═══ DASHBOARD ═══ */
.dashboard-hero {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
}
.dashboard-hero h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
}
.dashboard-hero p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.analyze-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}
.analyze-form {
  display: flex;
  gap: 0.5rem;
}
.analyze-form input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  background: #fdf6ee;
}
.analyze-form input:focus { border-color: var(--amber); background: #fff; }

.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-top: 0.75rem;
}
.library-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 150ms, transform 100ms;
  text-decoration: none;
  color: inherit;
}
.library-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
}
.library-card-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f5ece0, #e7ddd0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.5rem;
}
.library-card-body {
  padding: 0.6rem 0.85rem;
}
.library-card-title {
  font-weight: 600;
  font-size: 0.87rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.library-card-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ═══ SONG PAGE ═══ */
.song-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1rem;
  align-items: start;
}
@media (max-width: 900px) {
  .song-layout { grid-template-columns: 1fr; }
  .site-header-inner { padding: 0 0.75rem; }
  .header-nav a:not(:last-child) { display: none; }
  .header-search { max-width: 200px; }
  main { padding: 0.75rem; }
}

.song-main {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.player-sticky {
  position: sticky;
  top: 50px;
  z-index: 90;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* Song header */
.song-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.song-header-info h1 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: var(--text);
}
.song-artist {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.song-artist::before {
  content: "🎵";
  font-size: 0.75rem;
}
.song-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

/* Player */
.player-area {
  padding: 0.75rem 1.25rem;
  background: #fdf6ee;
}
.player-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.player-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--amber);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, transform 80ms;
  flex-shrink: 0;
}
.player-btn:hover { background: var(--amber-dark); }
.player-btn:active { transform: scale(0.92); }
.player-btn.btn-ghost {
  background: transparent;
  color: var(--muted);
  width: 40px;
  height: 40px;
}
.player-btn.btn-ghost:hover { color: var(--text); }
.player-time {
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  color: var(--muted);
  min-width: 34px;
  text-align: center;
}
.progress-track {
  flex: 1;
  height: 4px;
  background: #e7ddd0;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 2px;
  width: 0%;
  transition: width 150ms linear;
}

/* Toolbar */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  padding: 0.35rem 0.9rem;
  background: #fdf0dc;
  border-top: 1px solid var(--border);
}
.tool-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 0.25rem 0.45rem;
  border: none;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.62rem;
  color: var(--muted);
  transition: background 100ms, color 100ms;
  min-width: 50px;
}
.tool-btn:hover { background: #f5deba; color: var(--text); }
.tool-btn .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-btn .icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.tool-btn.active { color: var(--amber); }
.tool-btn .badge {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0;
  padding: 0 0.9rem;
  border-bottom: 1px solid var(--border);
  background: #fdf6ee;
}
.tab {
  padding: 0.5rem 0.85rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 120ms;
}
.tab:hover { color: var(--text); }
.tab.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* ═══ CHORD GRID ═══ */
.grid-wrap {
  padding: 0.75rem 1.25rem 1.5rem;
  overflow-x: auto;
}
.chord-timeline {
  position: relative;
  min-width: 100%;
}
@media (max-width: 600px) {
  .chord-timeline { min-width: 640px; }
}

/* Mobile: sidebar below */
@media (max-width: 900px) {
  .sidebar { margin-top: 1rem; }
}
.timeline-row {
  display: flex;
  align-items: center;
  height: 44px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-row:nth-child(even) {
  background: #fdf8f3;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-label {
  width: 32px;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
  padding-right: 0.6rem;
  flex-shrink: 0;
  font-weight: 500;
}
.timeline-track {
  flex: 1;
  position: relative;
  height: 100%;
  border-left: 3px solid #d6c9b8;
}
.timeline-chord {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.15rem 0;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  cursor: default;
  transition: color 120ms, transform 120ms, background 120ms;
  width: 25%;
  text-align: center;
  color: var(--text);
}
.timeline-chord:hover {
  background: rgba(217,119,6,0.08);
  border-radius: 4px;
}
.timeline-chord.active {
  color: #fff;
  background: var(--amber);
  transform: translateY(-50%) scale(1.1);
  z-index: 2;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(217,119,6,0.35);
}
.timeline-chord.active .chord-root { color: inherit; }

/* ─── Chord type colours ─── */
.chord-root   { display: inline-block; line-height: 1; }
.chord-sup    { font-size: .62em; vertical-align: super; font-weight: 500; margin-left: 1px; }
.chord-nc     { color: var(--muted); }

.chord-major  { color: #1d4ed8; }
.chord-minor  { color: #7c3aed; }
.chord-dom7   { color: #c2410c; }
.chord-maj7   { color: #15803d; }
.chord-minor7 { color: #6d28d9; }
.chord-dim    { color: #dc2626; }
.chord-aug    { color: #b45309; }
.chord-sus    { color: #0369a1; }
.chord-other  { color: var(--text); }

.chord-pill .chord-major  { color: #1d4ed8; }
.chord-pill .chord-minor  { color: #7c3aed; }
.chord-pill .chord-dom7   { color: #c2410c; }
.chord-pill .chord-maj7   { color: #15803d; }
.chord-pill .chord-minor7 { color: #6d28d9; }
.chord-pill .chord-dim    { color: #dc2626; }
.chord-pill .chord-aug    { color: #b45309; }
.chord-pill .chord-sus    { color: #0369a1; }

.timeline-beat {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e7ddd0;
}

/* ─── Diagram view ─── */
.grid-diagrams .timeline-row { height: 96px; }
.grid-diagrams .timeline-chord {
  height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
}
.grid-diagrams .timeline-chord.active {
  transform: translateY(-50%) scale(1.02);
  background: rgba(217,119,6,0.12);
  box-shadow: none;
  color: var(--text);
}
.grid-diagrams .timeline-chord.active .diag-label .chord-root { color: var(--amber); }
.diag-piano, .diag-guitar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 2px;
}
.diag-piano-svg { width: 92%; height: 56px; display: block; }
.diag-guitar-svg { width: 70%; max-width: 80px; height: 64px; display: block; }
.diag-label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}
.timeline-cursor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  z-index: 10;
  pointer-events: none;
  display: none;
}

/* ═══ SIDEBAR ═══ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: sticky;
  top: 50px;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}
.sidebar-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.sidebar-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.9rem 1.1rem 0.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
}
.sidebar-card-body { padding: 0 1.1rem 0.9rem; }

.video-unavailable {
  background: #fdf6ee;
  padding: 1.1rem;
  text-align: center;
}
.video-unavailable h4 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.video-unavailable p {
  margin: 0 0 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.video-unavailable .btn {
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
}

#yt-player-wrap {
  aspect-ratio: 16/9;
  background: #1c1917;
}
#yt-player-wrap iframe, #yt-player-wrap > div {
  width: 100%;
  height: 100%;
}
.video-unavailable .btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.video-unavailable .btn-teal:hover { background: var(--amber-dark); }

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--muted); font-size: 0.82rem; }
.detail-value { font-weight: 600; }
.chord-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.4rem 1.1rem 0.85rem;
}
.chord-pill {
  padding: 0.2rem 0.55rem;
  background: #fdf0dc;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

/* ═══ SONG PAGE — TABLETTE (< 1024px) ═══ */
@media (max-width: 1023px) {
  .song-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .song-main { min-width: 0; }
  .sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .sidebar > :first-child {
    grid-column: 1 / -1;
  }
}

/* ═══ SONG PAGE — MOBILE (< 640px) ═══ */
@media (max-width: 639px) {
  :root {
    --m-header-h: 50px;
    --m-player-h: 60px;
    --m-toolbar-h: 60px;
    --m-dock-h: calc(var(--m-player-h) + var(--m-toolbar-h));
    --m-video-w: 50%;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--m-header-h);
  }
  .promo-banner { display: none; }
  main {
    padding-top: calc(var(--m-header-h) + 0.5rem);
  }

  .song-layout { display: block; }
  .song-main {
    background: transparent;
    box-shadow: none;
  }
  .player-sticky {
    display: contents;
    position: static;
    box-shadow: none;
  }

  .song-header {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border-bottom: none;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }
  .song-header-info { flex: 1; min-width: 0; }
  .song-header-info h1 {
    font-size: 0.95rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .song-artist { font-size: 0.72rem; }
  .song-actions .btn:not(:last-child) { display: none; }
  .song-actions .btn:last-child {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    padding: 0;
    justify-content: center;
  }

  .tabs { display: none; }

  .grid-wrap {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin-top: 0.5rem;
    padding: 0.6rem 0.5rem 1rem;
    margin-bottom: calc(var(--m-dock-h) + 0.5rem);
  }
  .chord-timeline { min-width: 540px; }

  .sidebar { display: contents; }
  .sidebar > .sidebar-card:nth-of-type(1) {
    position: fixed;
    bottom: 0;
    left: 0;
    width: var(--m-video-w);
    height: var(--m-dock-h);
    z-index: 100;
    border-radius: 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,.08);
    margin: 0;
  }
  #yt-player-wrap {
    height: 100%;
    aspect-ratio: auto;
  }
  .video-unavailable {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
  }
  .sidebar > .sidebar-card:nth-of-type(n+2) { display: none; }

  .toolbar {
    position: fixed;
    bottom: var(--m-player-h);
    left: var(--m-video-w);
    right: 0;
    z-index: 100;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    height: var(--m-toolbar-h);
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: visible;
  }
  .tool-btn:nth-child(3),
  .tool-btn:nth-child(4),
  .tool-btn:nth-child(n+6) { display: none; }
  .tool-btn {
    flex: 0 0 auto;
    min-width: 0;
    padding: 0.3rem 0.6rem;
  }

  .player-area {
    position: fixed;
    bottom: 0;
    left: var(--m-video-w);
    right: 0;
    z-index: 100;
    height: var(--m-player-h);
    background: var(--surface);
    box-shadow: 0 -2px 8px rgba(0,0,0,.1);
    border-left: 1px solid var(--border);
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
  }
  .player-row { width: 100%; }
  .player-btn { width: 40px; height: 40px; }
  .player-btn.btn-ghost { width: 32px; height: 32px; }
}

/* ═══ MISC ═══ */
.error { color: var(--danger); font-size: 0.85rem; }
.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
}
.empty-state .icon { font-size: 2.2rem; opacity: 0.5; margin-bottom: 0.4rem; }
.wait-status { color: var(--muted); margin-top: 0.6rem; font-size: 0.9rem; }
