:root {
  --navy: #071428;
  --blue: #2563eb;
  --orange: #f97316;
  --background: #f5f7fb;
  --surface: #ffffff;
  --text: #172033;
  --muted: #5e6b82;
  --border: #dfe6f1;
  --soft-blue: #eef4ff;
  --soft-orange: #fff7ed;
  --shadow: 0 24px 70px rgba(7, 20, 40, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 0, rgba(37, 99, 235, 0.10), transparent 30%),
    var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
button, a { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 13px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(223, 230, 241, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(7, 20, 40, 0.05);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: clamp(158px, 19vw, 205px); height: auto; border-radius: 10px; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
}
.language-switch button {
  min-width: 42px;
  min-height: 36px;
  padding: 7px 10px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}
.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 5px 14px rgba(7, 20, 40, 0.16);
}
.home-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 5px 16px rgba(7, 20, 40, 0.05);
}
.home-link:hover { color: var(--orange); border-color: rgba(249, 115, 22, 0.45); }

.page-shell { max-width: 1040px; margin: clamp(28px, 6vw, 74px) auto; padding: 0 20px; }
.document-card {
  padding: clamp(26px, 5vw, 60px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.lead {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.16rem);
}
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 10px; }
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}
.document-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 32px 0 42px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f8fafc;
}
.document-nav a {
  padding: 7px 11px;
  border-radius: 9px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
}
.document-nav a:hover { color: var(--blue); background: #fff; }
.document-section { scroll-margin-top: 112px; padding-top: 4px; }
.document-section + .document-section {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h3 { margin: 22px 0 8px; color: var(--navy); font-size: 1.08rem; }
p, li { color: var(--muted); font-size: 1rem; }
p { margin: 0 0 15px; }
ul { margin: 13px 0 0; padding-left: 22px; }
li + li { margin-top: 8px; }
strong { color: var(--text); }
.notice {
  margin: 22px 0;
  padding: 21px 22px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-left: 5px solid var(--orange);
  border-radius: 17px;
  background: var(--soft-orange);
}
.notice h2, .notice h3 { color: #9a3412; }
.notice p, .notice li { color: #87411c; }
.contact-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.contact-item {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f8fafc;
}
.contact-label { display: block; margin-bottom: 4px; color: var(--muted); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item a { color: var(--blue); text-decoration: none; font-weight: 800; overflow-wrap: anywhere; }
.legal-note { margin-top: 38px; padding: 17px 19px; border-radius: 15px; background: #f8fafc; color: var(--muted); font-size: 0.91rem; }

.site-footer {
  margin-top: 54px;
  padding: 36px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.8;
}
.site-footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 10px; }
.site-footer a { color: var(--navy); text-decoration: none; font-weight: 800; }
.site-footer a:hover { color: var(--orange); }
.powered { margin-top: 5px; }
.powered a { color: var(--orange); }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.55); outline-offset: 3px; }
@media (max-width: 720px) {
  .site-header { position: relative; align-items: flex-start; padding: 13px 16px; }
  .header-actions { flex-wrap: wrap; gap: 8px; }
  .home-link { min-height: 40px; padding: 7px 10px; font-size: 0.9rem; }
  .language-switch button { min-width: 38px; min-height: 32px; padding: 5px 8px; }
  .page-shell { margin: 18px auto 38px; padding: 0 14px; }
  .document-card { padding: 25px 20px; border-radius: 21px; }
  .document-nav { margin-bottom: 32px; padding: 14px; }
  .contact-box { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
