/* Docs styling — same premium feel as main site */
:root {
  --bg: #0A0A0B;
  --surface: #16161A;
  --surface-2: #1C1C22;
  --border: rgba(255, 255, 255, 0.08);
  --text: #FAFAFA;
  --text-2: #C4C4CC;
  --text-3: #8B8B95;
  --accent: #D4FF3F;
}
* { box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px) 80px;
}
.back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
}
.back:hover { color: var(--accent); }
h1 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text);
}
h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
  color: var(--text);
}
p, ul { color: var(--text-2); }
p { margin: 0 0 14px; }
ul { padding-left: 22px; }
li { margin: 6px 0; }
.muted { color: var(--text-3); font-size: 14px; }

.requisites {
  margin-top: 16px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(212, 255, 63, 0.05), rgba(212, 255, 63, 0.01));
  border: 1px solid rgba(212, 255, 63, 0.18);
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.75;
}
.requisites p { margin: 0 0 6px; color: var(--text-2); }
.requisites p:last-child { margin-bottom: 0; }
.requisites strong { color: var(--text); font-weight: 600; }
.requisites p strong + strong { color: var(--accent); }

@media (max-width: 600px) {
  .requisites { padding: 18px 18px; font-size: 14.5px; }
  h1 { letter-spacing: -0.02em; }
}
