:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #101318;
  color: #f2f4f7;
}

* { box-sizing: border-box; }

body { margin: 0; min-height: 100vh; }

.shell { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0; }
.header, .section-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header { margin-bottom: 32px; }
.eyebrow { color: #8aa4ff; font-size: 0.78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { margin-bottom: 8px; }
.card { border: 1px solid #29303a; border-radius: 16px; background: #171b22; padding: 28px; box-shadow: 0 20px 60px #0003; }
.button { border: 0; border-radius: 9px; padding: 11px 16px; background: #7892ff; color: #08102d; cursor: pointer; font-weight: 700; }
.button:hover { filter: brightness(1.1); }
.button.secondary { border: 1px solid #3a4350; background: transparent; color: #f2f4f7; }
.muted, .status { color: #9da8b8; }
.status { min-height: 24px; margin: 20px 0 8px; }
.evidence-list { list-style: none; margin: 0; padding: 0; }
.evidence-list li { display: flex; justify-content: space-between; gap: 16px; align-items: center; border-top: 1px solid #29303a; padding: 16px 0; }
.evidence-list a { color: #9db1ff; word-break: break-all; }
.hidden { display: none !important; }
@media (max-width: 600px) { .header, .section-heading, .evidence-list li { align-items: flex-start; flex-direction: column; } }
