:root {
  color-scheme: dark;
  --background: #080910;
  --surface: #11131d;
  --surface-soft: #181a27;
  --border: #2a2e3d;
  --text: #f7f8fc;
  --muted: #b0b5c5;
  --accent: #ff275a;
  --accent-blue: #6195ff;
  --max-width: 960px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0, rgba(255, 39, 90, 0.12), transparent 360px),
    radial-gradient(circle at 90% 5%, rgba(97, 149, 255, 0.11), transparent 420px),
    var(--background);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: var(--accent-blue);
  text-underline-offset: 4px;
}

a:hover {
  color: #8bb2ff;
}

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

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--background);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 16, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  min-height: 42px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
  border-color: #4a5065;
}

main,
footer {
  width: min(var(--max-width), calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  padding: clamp(56px, 9vw, 104px) 0 46px;
}

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

h1,
h2,
h3 {
  line-height: 1.18;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 5rem);
  letter-spacing: -0.045em;
}

h1 span {
  display: block;
}

h1 span + span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.52em;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
}

.lead span {
  display: block;
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
}

.policy-meta div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(17, 19, 29, 0.72);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.language-section {
  padding: 40px 0 72px;
  scroll-margin-top: 74px;
}

.language-section + .language-section {
  border-top: 1px solid var(--border);
}

.language-heading {
  margin-bottom: 24px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  letter-spacing: -0.035em;
}

article {
  margin-top: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(24, 26, 39, 0.92), rgba(17, 19, 29, 0.92));
}

h3 {
  margin: 0 0 13px;
  font-size: clamp(1.2rem, 3vw, 1.48rem);
}

p {
  margin: 0 0 15px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 10px 0 18px;
  padding-left: 1.35em;
}

li + li {
  margin-top: 7px;
}

strong {
  color: #fff;
}

code {
  padding: 0.12em 0.36em;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--background);
  color: #ffd4df;
  font-size: 0.88em;
}

.contact {
  display: inline-block;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 46px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

  .brand span {
    display: none;
  }

  .policy-meta {
    grid-template-columns: 1fr;
  }

  article {
    border-radius: 18px;
  }

  footer {
    flex-direction: column;
  }
}

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