:root {
  color-scheme: dark;
  --black: #050807;
  --forest: #0d241b;
  --paper: #f3f1e8;
  --white: #fbfcf8;
  --muted: #aebbb4;
  --signal: #35c89a;
  --amber: #f4bd55;
  --coral: #f1603e;
  --line: rgba(255, 255, 255, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--black); }
body { margin: 0; min-width: 320px; color: var(--white); background: var(--black); }
h1, h2, p, a, span, strong, li { letter-spacing: 0; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
.skip-link { position: fixed; left: 14px; top: 10px; z-index: 20; transform: translateY(-150%); border-radius: 6px; padding: 10px 14px; background: var(--amber); color: #111714; font-weight: 850; }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(5, 8, 7, 0.94); backdrop-filter: blur(16px); }
.nav { width: min(1040px, calc(100% - 32px)); min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 7px; }
.brand span { display: grid; gap: 2px; }
.brand strong { font-size: 16px; }
.brand small { color: #9be3cb; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 20px; color: #d4ddd8; font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--amber); }
.nav-links .request-link { min-height: 40px; display: inline-flex; align-items: center; border: 1px solid rgba(244, 189, 85, 0.55); border-radius: 6px; padding: 0 12px; color: var(--amber); font-weight: 800; }
main { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 70px 0 80px; }
.hero { max-width: 760px; margin-bottom: 52px; }
.eyebrow { margin: 0 0 14px; color: #9be3cb; font-size: 12px; font-weight: 850; text-transform: uppercase; }
h1 { margin: 0 0 18px; font-size: 64px; line-height: 0.98; }
.lead { margin: 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.meta { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 24px; border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); font-size: 13px; }
.content { border-top: 2px solid var(--white); }
.content section { display: grid; grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr); gap: 34px; border-bottom: 1px solid var(--line); padding: 36px 0; }
h2 { margin: 0; font-size: 24px; line-height: 1.2; }
.section-body p, .section-body li { color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-body p { margin: 0 0 15px; }
.section-body p:last-child { margin-bottom: 0; }
.section-body ul { margin: 0; padding-left: 20px; }
.section-body li + li { margin-top: 9px; }
.section-body strong { color: var(--white); }
.section-body a { color: var(--amber); }
.status-note { border-left: 3px solid var(--signal); padding-left: 15px; }
footer { border-top: 1px solid var(--line); padding: 34px 16px 48px; color: var(--muted); text-align: center; font-size: 13px; }
footer a { color: var(--amber); }
.footer-designation { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; color: #dfe7e3; font-size: 12px; font-weight: 850; }

@media (max-width: 720px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 13px 0; }
  .nav-links { width: 100%; flex-wrap: wrap; gap: 12px 18px; }
  .nav-links .request-link { margin-left: auto; }
  main { padding-top: 52px; }
  h1 { font-size: 44px; }
  .lead { font-size: 17px; }
  .content section { grid-template-columns: 1fr; gap: 15px; padding: 30px 0; }
}
