:root {
  --fg: #1a2233;
  --muted: #5a6b7d;
  --accent: #c8102e; /* Indivd red */
  --bg: #ffffff;
  --panel: #f5f7fa;
  --border: #d8dee8;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--fg); background: var(--bg); line-height: 1.5;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
}
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 6px 12px; z-index: 10; }
header {
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px; background: #fdfdff;
}
.brand-name { font-weight: 700; letter-spacing: 0.02em; }
.brand-sub { color: var(--muted); font-size: 0.9em; margin-left: 8px; }
nav ul { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
nav a { color: inherit; text-decoration: none; padding: 4px 8px; }
nav a[aria-current="page"] { font-weight: 700; text-decoration: underline; }
main { max-width: 920px; margin: 24px auto; padding: 0 16px; }
h1, h2, h3 { line-height: 1.2; }
h1 { font-size: 1.6rem; }
.who, .scope { color: var(--muted); }
.role { display: inline-block; background: var(--panel); border: 1px solid var(--border);
  border-radius: 20px; padding: 0 10px; font-size: 0.85rem; }
.warn { color: #8a2a00; background: #fff3ee; border: 1px solid #f0c9c0; padding: 8px 12px;
  border-radius: 6px; }
a.btn, button {
  display: inline-block; background: var(--accent); color: #fff; border: 0;
  border-radius: 6px; padding: 8px 16px; cursor: pointer; font-size: 1rem;
}
a.btn:hover, button:hover { filter: brightness(1.08); }
footer { margin-top: 40px; color: var(--muted); font-size: 0.85rem; text-align: center; }
label { display: block; margin: 8px 0 4px; font-weight: 600; }
input { padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px; min-width: 260px; }
form.inline, section form { display: flex; flex-direction: column; gap: 8px; margin: 8px 0 16px; }
.inline { display: inline; }
ul li { padding: 2px 0; }
table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid var(--border); padding: 6px 10px; text-align: left; }
th { background: var(--panel); }