:root {
  --bg: #fdfdfc;
  --paper: #ffffff;
  --text: #161616;
  --muted: #6a6a6a;
  --line: #d8d8d8;
  --accent: #d7001f;
  --max: 980px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.56;
}
a { color: inherit; text-decoration-color: rgba(215, 0, 31, 0.45); text-underline-offset: 3px; }
.container { max-width: var(--max); margin: 0 auto; padding: 24px 22px 80px; }
.topbar {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 22px;
}
.brand { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
.tagline { color: var(--muted); font-size: 0.92rem; }
.hero { margin: 0 0 26px; }
.hero h1 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); line-height: 1.1; margin: 0 0 10px; letter-spacing: -0.02em; }
.hero p { max-width: 72ch; margin: 0; color: #323232; }
section { margin: 34px 0 0; }
section h2 {
  font-size: 0.88rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px; font-weight: 600;
}
.list { display: grid; gap: 12px; }
.item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 13px 14px;
}
.item h3 { margin: 0 0 4px; font-size: 1.06rem; line-height: 1.32; }
.meta { color: var(--muted); font-size: 0.84rem; margin-bottom: 6px; }
.summary { margin: 0; color: #2c2c2c; }
footer {
  margin-top: 44px; border-top: 1px solid var(--line); padding-top: 12px;
  color: var(--muted); font-size: 0.84rem;
}
@media (min-width: 860px) {
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
