/* Сайт «Долги и займы» — тона из дизайн-системы (src/theme/tokens.ts). Без JS. */
:root {
  --bg: #fbfaf8;
  --surface: #f3f1ec;
  --text: #1a1815;
  --text-secondary: #6e6a63;
  --border: #e6e2da;
  --gold: #d8b871;
  --gold-ink: #2a2318;
  --positive: #3f7d5a;
}
* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 -apple-system, "SF Pro Text", "Geist", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
main { max-width: 680px; margin: 0 auto; padding: 32px 22px 64px; }
header.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
header.top a.brand { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 600; }
header.top img { width: 32px; height: 32px; border-radius: 8px; }
nav.lang a { color: var(--text-secondary); text-decoration: none; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
nav.lang a[aria-current] { color: var(--text); border-bottom: 1px solid var(--text); }
h1 { font-size: 30px; line-height: 1.2; font-weight: 600; margin: 40px 0 8px; }
h2 { font-size: 19px; font-weight: 600; margin: 36px 0 8px; }
p.lead { font-size: 17px; color: var(--text-secondary); margin: 0 0 24px; }
.hero-illustration {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  margin: 24px 0;
  border-radius: 20px;
  background: #fffaf0;
}
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.card { background: var(--surface); border-radius: 16px; padding: 16px; }
.card b { display: block; font-size: 15px; margin-bottom: 4px; }
.card span { color: var(--text-secondary); font-size: 14px; }
a.button {
  display: inline-block; background: var(--gold); color: var(--gold-ink); text-decoration: none;
  font-weight: 600; padding: 13px 22px; border-radius: 999px;
}
a.button.disabled { opacity: 0.5; pointer-events: none; }
footer { margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-secondary); font-size: 13px; }
footer a { color: var(--text-secondary); }
ul { padding-left: 20px; }
li { margin: 6px 0; }
.note { background: var(--surface); border-radius: 12px; padding: 12px 16px; font-size: 14px; color: var(--text-secondary); }
@media (max-width: 480px) { .cards { grid-template-columns: 1fr; } h1 { font-size: 26px; } }
