:root {
  --bg: #f7f7fa;
  --surface: #ffffff;
  --ink: #17171c;
  --muted: #686872;
  --line: #e7e7ec;
  --brand: #db3f78;
  --brand-soft: #fde8f0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
}
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body { margin: 0; min-height: 100vh; background: var(--bg); }
a { color: var(--brand); text-underline-offset: 3px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: max(14px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) 14px max(24px, env(safe-area-inset-left));
  background: rgba(247, 247, 250, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { color: var(--ink); font-size: 20px; font-weight: 700; text-decoration: none; }
.language-control { position: relative; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.language-control::after { content: "⌄"; position: absolute; inset-inline-end: 12px; top: 50%; color: var(--muted); font-size: 16px; pointer-events: none; transform: translateY(-58%); }
select {
  appearance: none;
  -webkit-appearance: none;
  max-width: 190px;
  min-height: 38px;
  padding: 0 34px 0 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}
.document { width: min(760px, calc(100% - 40px)); min-width: 0; margin: 0 auto; padding: 56px 0 80px; }
.document-header { margin-bottom: 42px; }
.eyebrow { margin: 0 0 12px; color: var(--brand); font-size: 14px; font-weight: 700; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(36px, 7vw, 56px); line-height: 1.05; letter-spacing: -.2px; }
.updated { margin: 18px 0 0; color: var(--muted); font-size: 15px; }
.summary { margin: 28px 0 0; padding: 22px; background: var(--brand-soft); border-radius: 8px; font-size: 17px; line-height: 1.6; }
section { padding: 30px 0; border-top: 1px solid var(--line); }
h2 { margin: 0 0 14px; font-size: 24px; line-height: 1.25; letter-spacing: -.2px; }
h3 { margin: 22px 0 8px; font-size: 18px; }
p, li, h1, h2, h3, a { overflow-wrap: anywhere; }
p, li { color: #35353d; font-size: 16px; line-height: 1.72; }
p { margin: 10px 0; }
ul { margin: 12px 0; padding-inline-start: 24px; }
li + li { margin-top: 8px; }
.contact { padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; }
[dir="rtl"] .language-control { flex-direction: row-reverse; }
@media (max-width: 560px) {
  .site-header { align-items: flex-start; padding-inline: 20px; }
  .language-control span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  select { max-width: 150px; }
  .document { width: min(100% - 32px, 760px); padding-top: 38px; }
  section { padding: 26px 0; }
}
@media print {
  .site-header { display: none; }
  .document { width: 100%; padding: 0; }
  body { background: white; }
}
