  /* ─── SHADCN/UI COLOR TOKENS ─── */
  :root {
    --radius: 0.5rem;
    --background: 0 0% 100%;
    --foreground: 240 10% 3.9%;
    --card: 0 0% 100%;
    --card-foreground: 240 10% 3.9%;
    --muted: 240 4.8% 95.9%;
    --muted-foreground: 240 3.8% 46.1%;
    --border: 240 5.9% 90%;
    --input: 240 5.9% 90%;
    --primary: 262.1 83.3% 57.8%;
    --primary-foreground: 210 20% 98%;
    --secondary: 240 4.8% 95.9%;
    --secondary-foreground: 240 5.9% 10%;
    --accent: 240 4.8% 95.9%;
    --accent-foreground: 240 5.9% 10%;
    --destructive: 0 84.2% 60.2%;
    --ring: 262.1 83.3% 57.8%;
  }
  .dark {
    --background: 20 14.3% 4.1%;
    --foreground: 0 0% 95%;
    --card: 24 9.8% 10%;
    --card-foreground: 0 0% 95%;
    --muted: 0 0% 15%;
    --muted-foreground: 240 5% 64.9%;
    --border: 240 3.7% 15.9%;
    --input: 240 3.7% 15.9%;
    --primary: 263.4 70% 50.4%;
    --primary-foreground: 210 20% 98%;
    --secondary: 240 3.7% 15.9%;
    --secondary-foreground: 0 0% 98%;
    --accent: 12 6.5% 15.1%;
    --accent-foreground: 0 0% 98%;
    --destructive: 0 62.8% 30.6%;
    --ring: 263.4 70% 50.4%;
  }

  /* ─── COLOR VARIANTS ─── */
  [data-color="blue"] { --primary: 221.2 83.2% 53.3%; --ring: 221.2 83.2% 53.3%; }
  .dark[data-color="blue"] { --primary: 217.2 91.2% 59.8%; --ring: 217.2 91.2% 59.8%; }
  [data-color="green"] { --primary: 142.1 76.2% 36.3%; --ring: 142.1 76.2% 36.3%; }
  .dark[data-color="green"] { --primary: 142.1 70.6% 45.3%; --ring: 142.1 70.6% 45.3%; }
  [data-color="orange"] { --primary: 24.6 95% 53.1%; --ring: 24.6 95% 53.1%; }
  .dark[data-color="orange"] { --primary: 20.5 90.2% 48.2%; --ring: 20.5 90.2% 48.2%; }
  [data-color="red"] { --primary: 0 72.2% 50.6%; --ring: 0 72.2% 50.6%; }
  .dark[data-color="red"] { --primary: 0 62.8% 30.6%; --ring: 0 62.8% 30.6%; }
  [data-color="rose"] { --primary: 346.8 77.2% 49.8%; --ring: 346.8 77.2% 49.8%; }
  .dark[data-color="rose"] { --primary: 346.8 77.2% 49.8%; --ring: 346.8 77.2% 49.8%; }
  [data-color="violet"] { --primary: 262.1 83.3% 57.8%; --ring: 262.1 83.3% 57.8%; }
  .dark[data-color="violet"] { --primary: 263.4 70% 50.4%; --ring: 263.4 70% 50.4%; }
  [data-color="neutral"] { --primary: 240 5.9% 10%; --ring: 240 5.9% 10%; }
  .dark[data-color="neutral"] { --primary: 240 5.9% 90%; --ring: 240 5.9% 90%; }
  [data-color="yellow"] { --primary: 47.9 95.8% 53.1%; --ring: 47.9 95.8% 53.1%; }
  .dark[data-color="yellow"] { --primary: 47.9 95.8% 53.1%; --ring: 47.9 95.8% 53.1%; }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    height: 100vh;
    overflow: hidden;
  }

  /* ─── SIDEBAR ─── */
  #sidebar {
    width: 260px;
    min-width: 260px;
    background: hsl(var(--card));
    border-right: 1px solid hsl(var(--border));
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .sidebar-logo {
    padding: 0 1.25rem 1.25rem;
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: 1rem;
  }
  .sidebar-logo h1 { font-size: 1.25rem; font-weight: 700; color: hsl(var(--primary)); }
  .sidebar-logo p { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 2px; }
  .nav-group-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: hsl(var(--muted-foreground));
    padding: 0.75rem 1.25rem 0.25rem;
  }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    border-radius: 0;
    transition: all .15s;
  }
  .nav-link:hover, .nav-link.active {
    color: hsl(var(--foreground));
    background: hsl(var(--accent));
  }
  .nav-link.active { color: hsl(var(--primary)); font-weight: 500; border-right: 2px solid hsl(var(--primary)); }

  /* ─── NAV ACCORDION ─── */
  .nav-group { width: 100%; }
  .nav-group-header {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 0.75rem 1.25rem 0.25rem;
    background: none; border: none; cursor: pointer;
    color: hsl(var(--muted-foreground));
  }
  .nav-group-header:hover .nav-group-label-text { color: hsl(var(--foreground)); }
  .nav-group-label-text {
    font-size: 0.65rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    transition: color .15s;
  }
  .nav-group-chevron {
    width: 14px; height: 14px; transition: transform .2s;
    flex-shrink: 0;
  }
  .nav-group-header.open .nav-group-chevron { transform: rotate(180deg); }
  .nav-group-items {
    overflow: hidden;
    max-height: 0;
    transition: max-height .25s ease;
  }
  .nav-group-items.open { max-height: 600px; }

  /* ─── NAV ICON SVG ─── */
  .nav-icon { display: flex; align-items: center; justify-content: center; width: 1.1rem; flex-shrink: 0; }
  .nav-icon svg { width: 15px; height: 15px; }

  /* ─── BACK TO TOP ─── */
  #back-to-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
    border: none; border-radius: 50%; cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
    transform: translateY(8px);
  }
  #back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  #back-to-top:hover { filter: brightness(1.1); }
  #back-to-top svg { width: 18px; height: 18px; }

  /* ─── MOBILE SIDEBAR ─── */
  #sidebar-overlay {
    display: none; position: fixed; inset: 0; z-index: 40;
    background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
  }
  #sidebar-overlay.open { display: block; }

  #menu-btn {
    display: none; align-items: center; justify-content: center;
    width: 32px; height: 32px; padding: 0;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background: hsl(var(--secondary));
    color: hsl(var(--foreground));
    cursor: pointer; transition: background .15s;
  }
  #menu-btn:hover { background: hsl(var(--accent)); }
  #menu-btn svg { width: 16px; height: 16px; }

  @media (max-width: 768px) {
    /* Libera o scroll natural do body no mobile */
    body { display: block; height: auto; overflow-y: auto; overflow-x: hidden; }
    #sidebar {
      position: fixed; left: -280px; top: 0; z-index: 50;
      height: 100%; transition: left .25s ease;
    }
    #sidebar.open { left: 0; }
    /* #main ocupa a tela toda e não controla o scroll no mobile */
    #main { width: 100%; min-height: 100vh; overflow: visible; }
    #menu-btn { display: flex; }
    #topbar { padding: .75rem 1rem; position: sticky; top: 0; z-index: 10; }
    #content { padding: 2rem 1rem; }
  }

  /* ─── MAIN ─── */
  #main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
  }

  /* ─── TOP BAR ─── */
  #topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: hsl(var(--background) / .95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(var(--border));
    padding: .75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .topbar-title { font-size: .85rem; color: hsl(var(--muted-foreground)); }
  .topbar-controls { display: flex; align-items: center; gap: .75rem; }

  /* ─── THEME TOGGLE ─── */
  .theme-btn {
    display: flex; align-items: center; gap: .4rem;
    padding: .35rem .75rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    cursor: pointer;
    font-size: .8rem;
    transition: all .15s;
  }
  .theme-btn:hover { background: hsl(var(--accent)); }

  /* ─── COLOR PICKER ─── */
  .color-picker { display: flex; gap: 4px; align-items: center; }
  .color-dot {
    width: 18px; height: 18px; border-radius: 50%;
    cursor: pointer; border: 2px solid transparent;
    transition: transform .15s, border-color .15s;
  }
  .color-dot:hover { transform: scale(1.2); }
  .color-dot.active { border-color: hsl(var(--foreground)); transform: scale(1.15); }
  .color-dot[data-c="blue"]    { background: hsl(221.2 83.2% 53.3%); }
  .color-dot[data-c="green"]   { background: hsl(142.1 70.6% 45.3%); }
  .color-dot[data-c="orange"]  { background: hsl(24.6 95% 53.1%); }
  .color-dot[data-c="red"]     { background: hsl(0 72.2% 50.6%); }
  .color-dot[data-c="rose"]    { background: hsl(346.8 77.2% 49.8%); }
  .color-dot[data-c="violet"]  { background: hsl(262.1 83.3% 57.8%); }
  .color-dot[data-c="neutral"] { background: hsl(240 5.9% 50%); }
  .color-dot[data-c="yellow"]  { background: hsl(47.9 95.8% 53.1%); }

  /* ─── CONTENT ─── */
  #content { padding: 2.5rem 2rem; max-width: 960px; margin: 0 auto; width: 100%; }

  /* ─── SECTIONS ─── */
  section { margin-bottom: 4rem; scroll-margin-top: 5rem; }
  .section-header {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid hsl(var(--border));
  }
  .section-icon { font-size: 1.4rem; }
  .section-title { font-size: 1.35rem; font-weight: 700; }
  .section-badge {
    font-size: .65rem; font-weight: 600; text-transform: uppercase;
    padding: .15rem .5rem; border-radius: 9999px;
    background: hsl(var(--secondary)); color: hsl(var(--muted-foreground));
    letter-spacing: .06em;
  }
  .section-badge.tech { background: hsl(var(--primary) / .15); color: hsl(var(--primary)); }
  .section-badge.ux { background: hsl(142 60% 40% / .15); color: hsl(142 60% 55%); }

  /* ─── CARDS ─── */
  .card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 2px);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
  }
  .card-title { font-weight: 600; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
  .card-desc { font-size: .875rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }

  /* ─── GRID ─── */
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
  @media (max-width: 720px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

  /* ─── BADGE / TAG ─── */
  .badge {
    display: inline-flex; align-items: center;
    padding: .15rem .55rem; border-radius: 9999px;
    font-size: .72rem; font-weight: 500;
    background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
  }
  .badge.primary { background: hsl(var(--primary) / .2); color: hsl(var(--primary)); }
  .badge.success { background: hsl(142 60% 40% / .15); color: hsl(142 60% 55%); }
  .badge.warning { background: hsl(38 92% 50% / .15); color: hsl(38 80% 55%); }
  .badge.danger  { background: hsl(0 70% 50% / .15); color: hsl(0 70% 60%); }

  /* ─── TABLE ─── */
  table { width: 100%; border-collapse: collapse; font-size: .875rem; }
  th {
    text-align: left; padding: .6rem 1rem;
    background: hsl(var(--muted)); color: hsl(var(--muted-foreground));
    font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  }
  th:first-child { border-radius: var(--radius) 0 0 0; }
  th:last-child { border-radius: 0 var(--radius) 0 0; }
  td { padding: .65rem 1rem; border-bottom: 1px solid hsl(var(--border)); }
  tr:last-child td { border-bottom: none; }
  tr:hover td { background: hsl(var(--accent)); }

  /* ─── CODE ─── */
  code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: .82rem;
    background: hsl(var(--muted));
    padding: .1rem .35rem;
    border-radius: .25rem;
  }
  pre {
    background: hsl(var(--muted));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.25rem;
    font-size: .82rem;
    overflow-x: auto;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    line-height: 1.7;
    margin: .75rem 0;
  }

  /* ─── SCREEN MOCKUP ─── */
  .mockup-window {
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    margin: .75rem 0;
    background: hsl(var(--card));
  }
  .mockup-bar {
    background: hsl(var(--muted));
    padding: .6rem 1rem;
    display: flex; align-items: center; gap: .5rem;
    border-bottom: 1px solid hsl(var(--border));
  }
  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-red { background: #ff5f57; }
  .dot-yellow { background: #febc2e; }
  .dot-green { background: #28c840; }
  .mockup-url {
    flex: 1; text-align: center; font-size: .75rem;
    color: hsl(var(--muted-foreground)); font-family: monospace;
  }
  .mockup-body { padding: 1.25rem; }

  /* ─── KANBAN ─── */
  .kanban-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin: .75rem 0; }
  @media (max-width: 720px) { .kanban-board { grid-template-columns: 1fr 1fr; } }
  .kanban-col {
    background: hsl(var(--muted));
    border-radius: var(--radius);
    padding: .75rem;
    min-height: 220px;
  }
  .kanban-col-header {
    font-size: .75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: .75rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .kanban-count {
    background: hsl(var(--secondary)); color: hsl(var(--muted-foreground));
    font-size: .7rem; padding: .1rem .4rem; border-radius: 9999px;
  }
  .kanban-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) - 2px);
    padding: .6rem .75rem;
    margin-bottom: .5rem;
    font-size: .8rem;
  }
  .kanban-card-title { font-weight: 500; margin-bottom: .25rem; }
  .kanban-card-meta { font-size: .7rem; color: hsl(var(--muted-foreground)); display: flex; gap: .5rem; align-items: center; }
  .kanban-pill {
    display: inline-block; font-size: .65rem; padding: .1rem .35rem;
    border-radius: 9999px; font-weight: 600;
  }
  .pill-todo { background: hsl(var(--border)); color: hsl(var(--muted-foreground)); }
  .pill-prog { background: hsl(221 83% 53% / .2); color: hsl(221 83% 65%); }
  .pill-done { background: hsl(142 60% 40% / .2); color: hsl(142 60% 60%); }
  .pill-skip { background: hsl(38 92% 50% / .2); color: hsl(38 80% 55%); }

  /* ─── METRIC CARDS ─── */
  .metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin: .75rem 0; }
  @media (max-width: 640px) { .metric-grid { grid-template-columns: 1fr 1fr; } }
  .metric-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: .85rem 1rem;
    text-align: center;
  }
  .metric-value { font-size: 1.6rem; font-weight: 700; color: hsl(var(--primary)); }
  .metric-label { font-size: .72rem; color: hsl(var(--muted-foreground)); margin-top: .2rem; }

  /* ─── PROGRESS BAR ─── */
  .progress-bar {
    width: 100%; height: 6px;
    background: hsl(var(--secondary)); border-radius: 9999px; overflow: hidden;
  }
  .progress-fill {
    height: 100%; background: hsl(var(--primary));
    border-radius: 9999px; transition: width .3s;
  }

  /* ─── CALLOUT ─── */
  .callout {
    border-left: 3px solid hsl(var(--primary));
    background: hsl(var(--primary) / .07);
    padding: .85rem 1.25rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .875rem;
    margin: .75rem 0;
  }
  .callout.warning { border-color: hsl(38 92% 50%); background: hsl(38 92% 50% / .07); }
  .callout.success { border-color: hsl(142 60% 45%); background: hsl(142 60% 45% / .07); }

  /* ─── TIMELINE ─── */
  .timeline { position: relative; padding-left: 1.5rem; }
  .timeline::before {
    content: ''; position: absolute; left: .45rem; top: 0; bottom: 0;
    width: 2px; background: hsl(var(--border));
  }
  .tl-item { position: relative; margin-bottom: 1.25rem; }
  .tl-dot {
    position: absolute; left: -1.55rem; top: .3rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: hsl(var(--primary)); border: 2px solid hsl(var(--background));
  }
  .tl-title { font-weight: 600; font-size: .9rem; }
  .tl-desc { font-size: .825rem; color: hsl(var(--muted-foreground)); margin-top: .15rem; }

  /* ─── SEPARATOR ─── */
  hr { border: none; border-top: 1px solid hsl(var(--border)); margin: 1.5rem 0; }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; height: 6px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: hsl(var(--border)); border-radius: 9999px; }

  /* ─── TABELAS RESPONSIVAS (mobile) ─── */
  @media (max-width: 768px) {
    /* Wrap necessário: o .card vira o contêiner de scroll da tabela */
    .card { overflow-x: auto; }
    table { min-width: 480px; }
    th    { white-space: nowrap; }
  }

  /* ─── PRE / CÓDIGO (mobile) ─── */
  @media (max-width: 768px) {
    pre {
      font-size: .68rem;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      white-space: pre;       /* mantém formatação ASCII sem quebrar a página */
      max-width: 100%;
    }
  }

  /* ─── EDIT MODE ─── */
  /* Por padrão (produção) o roadmap é somente leitura */
  .roadmap-item           { cursor: default; }
  .mvp-badge              { cursor: default; }
  /* Em modo edição (?edit na URL), reativa interatividade */
  .edit-mode .roadmap-item          { cursor: pointer; }
  .edit-mode .roadmap-item:hover    { background: hsl(var(--accent)); }
  .edit-mode .mvp-badge             { cursor: pointer; }
  .edit-mode .mvp-badge:hover       { filter: brightness(1.1); transform: scale(1.03); }
  /* Crachá de modo edição (fixo, canto superior direito) */
  #edit-mode-badge {
    display: none;
    position: fixed; top: 4.5rem; right: 1rem; z-index: 200;
    align-items: center; gap: .35rem;
    background: hsl(38 92% 50%); color: #000;
    font-size: .72rem; font-weight: 700;
    padding: .3rem .7rem; border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    pointer-events: none;
  }

  /* ─── MOBILE LOGO (topbar) ─── */
  .mobile-logo {
    display: none;
    align-items: center; gap: .35rem;
    font-size: .95rem; font-weight: 700;
    color: hsl(var(--primary));
    flex: 1;
    white-space: nowrap;
  }

  /* ─── MOBILE TOPBAR / HEADER ADJUSTMENTS ─── */
  @media (max-width: 768px) {
    .mobile-logo { display: flex; }
    .topbar-title { display: none; }
    .topbar-controls .color-picker { display: none; }
    .theme-label { display: none; }
    .theme-btn { padding: .35rem .45rem; font-size: 1.05rem; min-width: 2rem; justify-content: center; }
    #topbar { gap: .5rem; }
  }

  /* ─── SIDEBAR MOBILE FOOTER (cores) ─── */
  .sidebar-mobile-footer {
    display: none;
    margin-top: auto;
    padding: .75rem 1.25rem 1.1rem;
    border-top: 1px solid hsl(var(--border));
  }
  .sidebar-mobile-footer-label {
    font-size: .62rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    color: hsl(var(--muted-foreground));
    margin-bottom: .55rem;
  }
  .sidebar-mobile-footer .color-picker { flex-wrap: wrap; gap: 7px; }
  .sidebar-mobile-footer .color-dot { width: 22px; height: 22px; }
  @media (max-width: 768px) {
    .sidebar-mobile-footer { display: block; }
  }

  /* ─── ROADMAP CHECKLIST ─── */
  .roadmap-header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .75rem;
    margin-bottom: 1.1rem;
    padding: .85rem 1.1rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 2px);
  }
  .roadmap-header-left { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
  .mvp-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .32rem .8rem; border-radius: 9999px;
    font-size: .8rem; font-weight: 600;
    transition: all .15s;
    border: 1.5px solid transparent;
    background: none; outline: none;
  }
  .mvp-badge.dev  { background: hsl(38 92% 50% / .12); color: hsl(38 78% 45%); border-color: hsl(38 92% 50% / .4); }
  .mvp-badge.prod { background: hsl(142 60% 40% / .12); color: hsl(142 55% 38%); border-color: hsl(142 60% 45% / .4); }
  .dark .mvp-badge.dev  { color: hsl(38 90% 60%); }
  .dark .mvp-badge.prod { color: hsl(142 60% 55%); }
  .roadmap-progress-row {
    display: flex; align-items: center; gap: .55rem;
    font-size: .8rem; color: hsl(var(--muted-foreground));
  }
  .roadmap-progress-row .progress-bar { width: 90px; }
  .roadmap-hint {
    font-size: .72rem; color: hsl(var(--muted-foreground));
    font-style: italic;
  }
  @media (max-width: 600px) { .roadmap-hint { display: none; } }
  .roadmap-list { list-style: none; padding: 0; }
  .roadmap-item {
    display: flex; align-items: flex-start; gap: .7rem;
    padding: .8rem 1rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 2px);
    margin-bottom: .4rem;
    transition: background .15s, opacity .25s;
    user-select: none;
  }
  .roadmap-item.done { opacity: .5; }
  .roadmap-item.done .roadmap-title { text-decoration: line-through; color: hsl(var(--muted-foreground)); }
  .roadmap-check {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: .17rem;
    border: 2px solid hsl(var(--border));
    border-radius: .3rem;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s;
    color: hsl(var(--primary-foreground));
    background: transparent;
  }
  .roadmap-item.done .roadmap-check { background: hsl(var(--primary)); border-color: hsl(var(--primary)); }
  .roadmap-num {
    font-size: .7rem; font-weight: 700;
    color: hsl(var(--muted-foreground));
    min-width: 1.15rem; padding-top: .22rem; flex-shrink: 0;
  }
  .roadmap-body { flex: 1; min-width: 0; }
  .roadmap-title { font-weight: 600; font-size: .875rem; margin-bottom: .12rem; transition: color .2s; }
  .roadmap-desc  { font-size: .8rem; color: hsl(var(--muted-foreground)); line-height: 1.55; }
