:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f7;
  --text: #17202a;
  --muted: #607084;
  --line: #d9e1ea;
  --brand: #145766;
  --brand-2: #0f3f4a;
  --accent: #e04962;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.62; }
a { color: var(--brand); }
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.nav { max-width: 1120px; margin: 0 auto; padding: 14px 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 750; font-size: 1.08rem; }
.brand img { border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 7px; font-weight: 650; font-size: .94rem; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-2); background: var(--surface-2); }
.page-wrap { max-width: 1120px; margin: 0 auto; padding: 44px 22px 64px; }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center; margin-bottom: 36px; }
.hero h1 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1.05; letter-spacing: 0; }
.hero p { margin: 0; max-width: 680px; color: var(--muted); font-size: 1.1rem; }
.hero-mark { width: 124px; height: 124px; border-radius: 26px; background: var(--surface); display: grid; place-items: center; border: 1px solid var(--line); }
.hero-mark img { width: 76px; height: 76px; border-radius: 18px; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; text-decoration: none; color: var(--text); min-height: 132px; }
.card:hover { border-color: var(--brand); }
.card h3 { margin: 0 0 8px; font-size: 1rem; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }
.legal-doc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; max-width: 920px; }
.legal-doc h1 { margin: 0 0 18px; font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.15; }
.legal-doc h2 { margin: 34px 0 10px; font-size: 1.35rem; line-height: 1.25; }
.legal-doc h3 { margin: 26px 0 8px; font-size: 1.08rem; }
.legal-doc p { margin: 0 0 14px; }
.legal-doc ul { margin: 0 0 18px 22px; padding: 0; }
.source-note { margin: 0 0 24px; padding: 12px 14px; background: #fff8e8; border: 1px solid #efd99b; border-radius: 7px; color: #5e4b13; font-size: .94rem; }
.legal-related { margin-top: 24px; max-width: 920px; }
.legal-related-list { margin: 0 0 0 22px; padding: 0; }
.site-footer { max-width: 1120px; margin: 0 auto; padding: 24px 22px 36px; display: flex; gap: 16px; color: var(--muted); border-top: 1px solid var(--line); }
.site-footer a { color: var(--muted); text-decoration: none; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; }
  .hero-mark { width: 92px; height: 92px; }
  .hero-mark img { width: 58px; height: 58px; }
  .grid { grid-template-columns: 1fr; }
  .legal-doc { padding: 22px; }
  .site-footer { flex-wrap: wrap; }
}