:root {
  color-scheme: light;
  --ink: #171a24;
  --muted: #596174;
  --line: #dfe3ec;
  --surface: #ffffff;
  --soft: #f4f6fb;
  --brand: #2947d9;
  --accent: #d9f564;
  --focus: #d63b8c;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--soft);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.68;
}

a {
  color: var(--brand);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

a:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.header-inner,
.policy,
.site-footer {
  width: min(100% - 2rem, 52rem);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.45rem;
  color: #10131d;
  background: var(--accent);
  font-size: 1rem;
  font-weight: 850;
}

.language-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding-inline: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  color: var(--ink);
  background: var(--surface);
  font-weight: 650;
  text-decoration: none;
}

.policy {
  margin-block: 2.5rem;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 1rem 2.8rem rgba(23, 26, 36, 0.07);
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.08;
}

h2 {
  margin: 2.35rem 0 0.65rem;
  padding-top: 0.35rem;
  font-size: 1.35rem;
  line-height: 1.3;
}

p,
ul {
  margin-block: 0.7rem;
}

li + li {
  margin-top: 0.45rem;
}

.meta {
  margin-top: 0.85rem;
  color: var(--muted);
}

.summary {
  margin-block: 1.8rem;
  padding: 1rem 1.1rem;
  border-left: 0.32rem solid var(--brand);
  background: var(--soft);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th,
td {
  padding: 0.8rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
}

.site-footer {
  padding-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 34rem) {
  .header-inner {
    min-height: 4rem;
  }

  .policy {
    margin-block: 1rem;
    padding: 1.15rem;
  }

  h1 {
    font-size: 2rem;
  }

  th,
  td {
    min-width: 9rem;
    padding: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
