/* Motilo — styles complémentaires (le gros vient de Tailwind CDN) */
:root { color-scheme: light; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

/* Dégradé héro */
.hero-grad {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(255,90,44,.25), transparent 60%),
    linear-gradient(180deg, #0E1526 0%, #0E1526 60%, #131c30 100%);
}

/* Scrollbar fine pour le kanban */
.scroll-x { overflow-x: auto; scrollbar-width: thin; }
.scroll-x::-webkit-scrollbar { height: 8px; }
.scroll-x::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 8px; }

.tabular-nums { font-variant-numeric: tabular-nums; }

@media print {
  #site-nav, #site-footer { display: none; }
}
