:root {
  --bg: #f7f7f5;
  --panel: #ffffff;
  --ink: #1c1c1a;
  --muted: #6b6b66;
  --line: #e3e3de;
  --accent: #2f6f4f;
  --bad: #a33c2e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 15px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif;
}

header {
  padding: 1.5rem 2rem 0.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

h1 { margin: 0; font-size: 1.4rem; }
.subtitle { margin: 0.2rem 0 1rem; color: var(--muted); }

main { max-width: 72rem; margin: 0 auto; padding: 1.5rem 2rem 4rem; }

section { margin-bottom: 2.5rem; }
h2 { font-size: 1.05rem; margin: 0 0 0.6rem; }
.hint { color: var(--muted); margin: 0 0 0.8rem; font-size: 0.9rem; }

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 1rem;
}

.tile .value { font-size: 1.5rem; font-weight: 600; }
.tile .label { color: var(--muted); font-size: 0.82rem; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  text-align: left;
  padding: 0.45rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th { background: var(--bg); font-weight: 600; font-size: 0.85rem; }
tr:last-child td { border-bottom: none; }
.num { text-align: right; }

.verdict-ad { color: var(--accent); font-weight: 600; }
.verdict-not { color: var(--bad); }
.transcript-preview { color: var(--muted); font-size: 0.85rem; max-width: 28rem; }
.empty { color: var(--muted); font-style: italic; }
