:root {
  --navy-950: #071a2a;
  --navy-800: #0b436a;
  --cyan-600: #20aeca;
  --cyan-100: #e8f8fb;
  --paper: #eef3f5;
  --white: #ffffff;
  --muted: #587081;
  --line: #dce6ec;
  --warning-bg: #fff8e8;
  --warning-line: #e4bd5b;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy-950);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
a { color: var(--navy-800); }
a:focus-visible { outline: 3px solid var(--cyan-600); outline-offset: 4px; }
.shell { width: min(920px, calc(100% - 40px)); margin: 0 auto; }
.site-header { padding: 26px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { display: block; width: 140px; height: auto; }
.back-link { font-size: 13px; font-weight: 700; text-decoration: none; }
.document {
  margin-bottom: 44px;
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 26, 42, 0.07);
}
.status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cyan-100);
  color: var(--navy-800);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Arial, Helvetica, sans-serif; }
h1 { max-width: 760px; margin: 0; font-size: clamp(36px, 6vw, 58px); line-height: 1.03; letter-spacing: -0.04em; }
.lead { max-width: 760px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.draft-notice {
  margin: 34px 0;
  padding: 18px 20px;
  border: 1px solid var(--warning-line);
  border-radius: 14px;
  background: var(--warning-bg);
}
.draft-notice strong { display: block; margin-bottom: 3px; }
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.quick-links a {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.document section { scroll-margin-top: 24px; }
.document section + section { margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line); }
h2 { margin: 0 0 11px; color: var(--navy-800); font-size: 24px; line-height: 1.2; }
h3 { margin: 22px 0 7px; font-size: 17px; }
p, ul { margin-top: 0; }
p:last-child, ul:last-child { margin-bottom: 0; }
ul { padding-left: 22px; }
li + li { margin-top: 6px; }
.placeholder {
  display: inline;
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--warning-bg);
  color: #72520b;
  font-weight: 700;
}
.data-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 14px; }
.data-table th, .data-table td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--paper); color: var(--navy-800); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--navy-800);
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
}
.button-primary { background: var(--navy-800); color: var(--white); }
.drafting-reference { color: var(--muted); font-size: 12px; }
.site-footer { padding: 0 0 38px; color: var(--muted); font-size: 12px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a { color: inherit; }

@media (max-width: 620px) {
  .shell { width: min(100% - 24px, 920px); }
  .site-header { padding: 18px 0; }
  .brand img { width: 126px; }
  .document { padding: 34px 22px; border-radius: 20px; }
  .lead { font-size: 16px; }
  .data-table, .data-table tbody, .data-table tr, .data-table th, .data-table td { display: block; width: 100%; }
  .data-table tr + tr { margin-top: 14px; }
  .data-table th { border-bottom: 0; }
  .actions, .button { width: 100%; }
  .footer-inner { display: block; }
  .footer-links { margin-top: 10px; }
}
