* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --ink: #0A0E1F;
  --ink-2: #2a2f45;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #fafafa;
  --accent: #cc785c;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 32px;
}
header a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
header a:hover { color: var(--accent); }
h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.lead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}
h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}
h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 8px;
}
p { margin-bottom: 12px; color: var(--ink-2); }
ul, ol { margin: 8px 0 16px 24px; }
li { margin-bottom: 6px; color: var(--ink-2); }
a { color: var(--accent); }
strong { color: var(--ink); }
.requisites {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  margin: 16px 0;
  font-size: 14px;
}
.requisites dt {
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}
.requisites dt:first-child { margin-top: 0; }
.requisites dd { color: var(--ink-2); margin-bottom: 4px; }
.formula {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 17px;
  margin: 12px 0;
}
footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.date {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
