:root {
  --ink: #081d3d;
  --ink-soft: #284563;
  --blue: #2f73e8;
  --line: #cfdaea;
  --paper: #fff;
  --canvas: #f4f8fc;
  --gold: #f4c541;
}
* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: #175fbf; text-underline-offset: 3px; }
.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
}
.legal-nav {
  width: min(calc(100% - 36px), 1000px);
  min-height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { color: var(--ink); font-weight: 850; text-decoration: none; letter-spacing: -.03em; }
.lang { display: flex; align-items: center; gap: 5px; }
.lang button {
  border: 0;
  border-radius: 9px;
  padding: 8px 10px;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-size: .82rem;
  font-weight: 850;
  cursor: pointer;
}
.lang button[aria-pressed="true"] { color: white; background: var(--ink); }
main { width: min(calc(100% - 36px), 1000px); margin: 54px auto 80px; }
.legal-card {
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(8,29,61,.1);
}
.legal-kicker { margin: 0 0 10px; color: var(--blue); font-size: .77rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 0 0 18px; font-size: clamp(3rem, 8vw, 5.7rem); line-height: .9; letter-spacing: -.065em; }
.intro { max-width: 760px; margin: 0 0 48px; color: var(--ink-soft); font-size: 1.1rem; }
h2 { margin: 42px 0 10px; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.1; letter-spacing: -.035em; }
h3 { margin: 28px 0 8px; font-size: 1.08rem; }
p, ul { margin: 0 0 16px; }
ul { padding-left: 1.3em; }
address { font-style: normal; }
.notice { margin: 28px 0; padding: 18px 20px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: #fff8df; }
.legal-footer {
  width: min(calc(100% - 36px), 1000px);
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
  font-size: .88rem;
}
.legal-footer a { color: var(--ink); font-weight: 750; }
[data-lang-panel][hidden] { display: none; }
@media (max-width: 620px) {
  body { font-size: 16px; }
  .legal-card { border-radius: 22px; }
  .legal-nav { min-height: 64px; }
}

