:root {
  --bg: #faf8f5;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --line: #e2ddd4;
  --accent: #8a6a4f;
  --warn-bg: #fff4e5;
  --warn-border: #e0b878;
  --loss: #a24a3a;
  --owner-required-bg: #ffe9e9;
  --owner-required-border: #d98a8a;
  --max-width: 640px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.9;
  font-size: 16px;
}

header.site-header, footer.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 60px;
}

header.site-header {
  border-bottom: 1px solid var(--line);
}

.site-title {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

h1 {
  font-size: 22px;
  line-height: 1.6;
  margin: 40px 0 16px;
}

h2 {
  font-size: 17px;
  margin: 40px 0 12px;
  color: var(--accent);
}

p {
  margin: 0 0 18px;
}

.lede {
  color: var(--muted);
  font-size: 15px;
}

.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
}
.cta:hover { background: var(--accent); color: #fff; }

.muted-link {
  color: var(--muted);
  font-size: 14px;
}

.fact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 20px;
  margin: 16px 0;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.fact-row:last-child { border-bottom: none; }
.fact-row .label { color: var(--muted); }

.outcome-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  background: #f4e6e2;
  color: var(--loss);
  border: 1px solid var(--loss);
}

.disclosure-box {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 14px;
  color: #6b4c1e;
  margin: 20px 0;
}

.owner-input-required {
  background: var(--owner-required-bg);
  border: 1px dashed var(--owner-required-border);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 14px;
  color: #7a2e2e;
  margin: 16px 0;
}

.pr-tag {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
}

footer.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
