
:root {
  --color-navy: #0B1533;
  --color-gold: #F2C94C;
  --color-ink: #0A0A0A;
  --color-paper: #FFFFFF;
  --color-muted: #E6E8F0;
  --maxw: 1100px;
  --radius: 16px;
}
* { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-paper);
}
a { color: var(--color-navy); }
a:focus, button:focus, input:focus, select:focus, textarea:focus { outline: 3px solid var(--color-gold); outline-offset: 2px; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 1.25rem; }
header.site-header { background: var(--color-navy); color: white; position: sticky; top: 0; z-index: 999; }
.brand { display:flex; align-items:center; gap:.75rem; text-decoration:none; color:white; }
.brand img { width:44px; height:44px; border-radius:12px; }
.brand .name { font-weight: 800; letter-spacing:.5px; }
nav.primary-nav { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
nav .links { display:flex; gap:1rem; flex-wrap:wrap; }
nav .links a { color: white; text-decoration:none; padding:.5rem .75rem; border-radius: 12px; }
nav .links a[aria-current="page"], nav .links a:hover { background: var(--color-gold); color: #111; }
button.menu-toggle { display:none; background: var(--color-gold); color:#111; border:none; padding:.6rem .9rem; border-radius:12px; }
@media (max-width: 820px) {
  button.menu-toggle { display:block; }
  nav .links { display:none; width:100%; flex-direction:column; margin-top:.5rem; }
  nav .links.open { display:flex; }
}
.hero { background: linear-gradient(180deg, var(--color-navy), #0f1e4a); color: white; padding: 4rem 0 3rem; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .5rem; }
.hero p  { margin: 0 0 1rem; max-width: 56ch; }
.cta-row { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1rem; }
.btn { display:inline-block; text-decoration:none; font-weight:700; border-radius: 12px; padding:.8rem 1.1rem; }
.btn.primary { background: var(--color-gold); color:#111; }
.btn.outline { border:2px solid var(--color-gold); color:white; }
.card-grid { display:grid; gap:1rem; grid-template-columns: repeat(12, 1fr); }
.card { grid-column: span 4; border:1px solid var(--color-muted); border-radius: var(--radius); padding:1rem; background:white; }
@media (max-width: 900px) { .card { grid-column: span 6; } }
@media (max-width: 600px) { .card { grid-column: span 12; } }
.section { padding: 2.5rem 0; }
.section h2 { margin-top:0; }
.table { width:100%; border-collapse: collapse; }
.table th, .table td { border:1px solid var(--color-muted); padding:.75rem; text-align:left; }
.table th { background:#f8f9ff; }
footer.site-footer { background:#0c1738; color:white; padding:2rem 0; margin-top:2rem; }
footer a { color: var(--color-gold); }
.skip-link { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left: 8px; top: 8px; width:auto; height:auto; background: var(--color-gold); color:#111; padding:.5rem .75rem; border-radius:10px; z-index: 1000; }
.badge { background: var(--color-gold); color:#111; padding:.25rem .5rem; border-radius: 999px; font-size:.85rem; font-weight:700; }
