@import url("fonts/outfit.css");

:root {
  color-scheme: light;
  --ink: #17122f;
  --muted: #5f6472;
  --lilac: #7059f6;
  --line: #ded8f5;
  --paper: #fbfaff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(155, 144, 255, .2), transparent 28rem),
    var(--paper);
  line-height: 1.65;
}
a { color: #5646c9; }
.shell { width: min(880px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 255, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 20px; }
.back { text-decoration: none; font-weight: 600; }
.hero { padding: 72px 0 34px; }
.eyebrow { margin: 0 0 14px; color: #5646c9; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; max-width: 760px; font-size: clamp(36px, 7vw, 64px); line-height: 1; letter-spacing: -.04em; font-weight: 500; }
.lead { max-width: 700px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.document { margin: 18px 0 72px; padding: clamp(24px, 5vw, 52px); background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 32px; box-shadow: 0 24px 70px rgba(56,46,133,.1); }
.document section + section { border-top: 1px solid #ece8f8; margin-top: 28px; padding-top: 28px; }
h2 { margin: 0 0 12px; font-size: clamp(22px, 4vw, 30px); line-height: 1.2; font-weight: 600; }
p { margin: 0 0 12px; }
ul { margin: 10px 0 0; padding-left: 22px; }
li + li { margin-top: 7px; }
.requisites { display: grid; gap: 10px; padding: 20px; border-radius: 20px; background: #f1edff; border: 1px solid #ddd5ff; }
.requisites strong { color: #382e85; }
.note { padding: 18px 20px; border-left: 4px solid var(--lilac); background: #f5f2ff; border-radius: 0 16px 16px 0; }
.footer { padding: 28px 0 44px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 12px; }
@media (max-width: 560px) {
  .topbar-inner { min-height: 64px; }
  .back { font-size: 14px; }
  .hero { padding-top: 50px; }
  .document { border-radius: 24px; }
}
