:root { color-scheme: light; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #f5f7fb; color: #172033; } * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; } .shell { width: min(1040px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0; } .panel { background: #ffffff; border: 1px solid #dfe5ef; border-radius: 8px; box-shadow: 0 12px 30px rgba(28, 41, 67, 0.08); } .intro { display: grid; grid-template-columns: 1fr minmax(280px, 420px); gap: 28px; padding: 28px; align-items: end; } .eyebrow { margin: 0 0 8px; color: #3968b6; font-size: 0.78rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; } h1, h2, p { margin-top: 0; } h1 { margin-bottom: 10px; font-size: clamp(2rem, 6vw, 4.3rem); line-height: 0.96; } h2 { margin-bottom: 0; } .subtitle { max-width: 56ch; margin-bottom: 0; color: #4c5a70; line-height: 1.55; } .form { display: grid; grid-template-columns: 1fr 120px; gap: 10px; } input, select, button { height: 44px; border-radius: 6px; border: 1px solid #c9d3e2; font: inherit; } input, select { padding: 0 12px; background: #fbfcff; color: #172033; } button { padding: 0 16px; border: 0; background: #1f6f5b; color: white; font-weight: 700; cursor: pointer; } button.secondary { background: #35435a; } button:disabled { background: #9ba7b7; cursor: not-allowed; } .form button { grid-column: 1 / -1; } .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 18px 0; } .stats div { min-height: 98px; padding: 18px; border-radius: 8px; background: #172033; color: white; } .stats span { display: block; font-size: 2rem; font-weight: 800; } .stats small { color: #c8d2e1; } .list-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; border-bottom: 1px solid #e4e9f2; } #worker-state { color: #637086; font-size: 0.92rem; } .incidents { display: grid; gap: 0; } .incident { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 16px 22px; border-bottom: 1px solid #edf1f6; } .incident:last-child { border-bottom: 0; } .title { font-weight: 750; } .meta { margin-top: 4px; color: #657287; font-size: 0.9rem; } .badge { min-width: 78px; padding: 6px 10px; border-radius: 999px; text-align: center; font-size: 0.82rem; font-weight: 800; text-transform: uppercase; } .low { background: #dff4e8; color: #17623e; } .medium { background: #fff1ca; color: #815b00; } .high { background: #ffe0df; color: #a3241f; } .empty { padding: 36px 22px; color: #657287; } @media (max-width: 780px) { .intro, .stats, .incident { grid-template-columns: 1fr; } .form { grid-template-columns: 1fr; } .list-head { align-items: flex-start; flex-direction: column; } }