:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5f6d68;
  --paper: #fffdf8;
  --surface: #ffffff;
  --accent: #236b5b;
  --accent-soft: #e6f2ed;
  --line: #dce5e1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}

a { color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  background: rgb(255 253 248 / 94%);
  backdrop-filter: blur(12px);
}

.header-inner,
.legal-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.language-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.9rem;
}

.language-links a {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  text-decoration: none;
}

.legal-page { padding: 64px 0 80px; }

.legal-page article + article {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h2 {
  margin: 42px 0 10px;
  font-size: 1.28rem;
  line-height: 1.3;
}

.updated,
.intro,
.contact { color: var(--muted); }

.updated { margin: 16px 0 30px; }

.intro {
  max-width: 760px;
  font-size: 1.08rem;
}

.contact {
  margin-top: 48px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.site-footer {
  padding: 24px 20px 40px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a { margin: 0 8px; }

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 20%, #d8eee5 0, transparent 35%),
    radial-gradient(circle at 85% 80%, #efe5cf 0, transparent 34%),
    var(--paper);
}

.landing-card {
  width: min(720px, 100%);
  padding: clamp(30px, 7vw, 72px);
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 28px;
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 24px 70px rgb(31 65 55 / 12%);
}

.landing-card > p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.landing-links { display: flex; flex-wrap: wrap; gap: 10px; }

.landing-links a {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--accent-soft);
  font-weight: 650;
  text-decoration: none;
}

@media (max-width: 600px) {
  .header-inner { align-items: flex-start; padding: 14px 0; }
  .language-links { justify-content: flex-start; }
  .legal-page { padding-top: 44px; }
}
