:root {
  --ink: #132238;
  --muted: #52657c;
  --line: #dce5eb;
  --paper: #fff;
  --wash: #f3f8f7;
  --brand: #087f70;
  --brand-dark: #075e54;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--wash); color: var(--ink); }
body { margin: 0; min-width: 320px; line-height: 1.65; }
a { color: var(--brand-dark); text-underline-offset: .18em; }
a:focus-visible { outline: 3px solid #e8a317; outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: 1rem; top: -5rem; z-index: 10; padding: .65rem .9rem; background: var(--ink); color: #fff; }
.skip-link:focus { top: 1rem; }
.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.header-inner, .page, .footer-inner { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 1.1rem; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { display: block; width: 142px; height: 36px; }
.primary-nav { display: flex; align-items: center; gap: .9rem; margin-left: auto; }
.primary-nav a, .locale-switch { font-weight: 650; text-decoration: none; }
.primary-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.header-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: .65rem 1rem; border-radius: 999px; font-weight: 750; text-decoration: none;
}
.header-cta, .button-primary { color: #fff; background: var(--brand-dark); }
.button-secondary { border: 1px solid var(--brand); background: #fff; }
.page { padding: 4rem 0 5rem; }
.hero { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 2rem; align-items: center; padding-bottom: 2rem; }
.eyebrow { color: var(--brand-dark); font-size: .82rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
h1, h2 { line-height: 1.22; text-wrap: balance; }
h1 { max-width: 820px; margin: .3rem 0 1rem; font-size: clamp(2.1rem, 6vw, 4rem); }
.lead, .hero p, .card p, .legal-section p, .muted { color: var(--muted); }
.lead, .hero p { max-width: 760px; font-size: 1.08rem; }
.hero-panel, .card, .legal-section, .table-wrap, .notice {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
}
.hero-panel, .card, .legal-section { padding: 1.35rem; }
.hero-panel ul, .card ul, .legal-section ul { margin: 0; padding-left: 1.2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card h2, .legal-section h2 { margin-top: 0; }
.article { max-width: 850px; }
.article > * + * { margin-top: 1rem; }
.notice { padding: 1rem 1.2rem; background: #fff8df; }
.table-wrap { overflow-x: auto; }
table { width: 100%; min-width: 600px; border-collapse: collapse; }
th, td { padding: .9rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { background: #f7faf9; }
tr:last-child td { border-bottom: 0; }
.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; padding: 2rem 0; }
.footer-links { display: flex; flex-wrap: wrap; align-content: start; gap: .7rem 1rem; }
.footer-inner p { margin: 0; color: var(--muted); font-size: .92rem; }
@media (max-width: 820px) {
  .header-inner { align-items: flex-start; flex-wrap: wrap; padding-block: .8rem; }
  .primary-nav { order: 3; width: 100%; margin-left: 0; padding-top: .7rem; overflow-x: auto; border-top: 1px solid var(--line); }
  .primary-nav a { white-space: nowrap; }
  .locale-switch { margin-left: auto; }
  .hero, .grid { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .header-inner, .page, .footer-inner { width: min(100% - 1.25rem, 1120px); }
  .brand img { width: 126px; height: auto; }
  .header-cta { padding-inline: .75rem; }
  .actions .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
}
