:root {
  --bg: #faf7f2;
  --ink: #1d1a16;
  --muted: #6b6258;
  --card: #f1ebe2;
  --accent: #e67a1a;
  --accent-ink: #ffffff;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #15130f;
    --ink: #f3eee7;
    --muted: #a59b8f;
    --card: #211d18;
    --accent: #f08a2c;
    --accent-ink: #15130f;
  }
}
* { box-sizing: border-box; }
html { background: var(--bg); color: var(--ink); }
body {
  margin: 0;
  font: 17px/1.55 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
}
.wrap { max-width: 640px; margin: 0 auto; padding: 56px 16px 64px; }
.mark { display: flex; align-items: center; gap: 10px; font-weight: 600; margin: 0 0 40px; }
.logo { width: 22px; height: 22px; background: var(--accent); position: relative; border-radius: 4px; }
.logo::after { content: ""; position: absolute; top: 0; right: 0; width: 6px; height: 6px; background: #2f7d32; border-top-right-radius: 4px; }
h1 { font-size: clamp(28px, 6vw, 40px); line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.01em; }
.lead { color: var(--muted); margin: 0 0 28px; }
.button {
  display: inline-block; padding: 12px 20px; border-radius: 10px;
  background: var(--accent); color: var(--accent-ink); text-decoration: none; font-weight: 600;
  transition: filter 200ms ease;
}
.button:hover { filter: brightness(1.06); }
.button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.list { list-style: none; padding: 0; margin: 40px 0; display: grid; gap: 12px; }
.list li { background: var(--card); border-radius: 12px; padding: 16px 18px; display: grid; gap: 4px; }
.list span { color: var(--muted); }
.foot { color: var(--muted); font-size: 15px; }
.foot a { color: inherit; }
@media (prefers-reduced-motion: reduce) { .button { transition: none; } }
