:root {
  color-scheme: light dark;
  --bg: #e6e6e6;
  --text: #1a1a1a;
  --muted: #808080;
  --link: #0000ee;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1a1a;
    --text: #e6e6e6;
    --link: #8080f7;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

.page {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 9vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 32px 0 16px;
  font-size: 20px;
  letter-spacing: 0;
}

h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.content {
  padding-top: 16px;
  font-size: 16px;
  line-height: 1.65;
}

.content-single-language > :first-child {
  margin-top: 0;
}

.content ul {
  margin: 16px 0 24px;
  padding-left: 22px;
}

.content li + li {
  margin-top: 8px;
}

.content hr {
  margin: 48px 0 16px;
  border: 0;
  border-top: 1px solid var(--muted);
}

.policy-hero {
  padding-bottom: 24px;
}

.policy-hero h1 {
  font-size: 40px;
  line-height: 1;
}

.apps-page h1 {
  font-size: 40px;
  line-height: 1;
}

.policy-hero .eyebrow,
.apps-page .eyebrow {
  font-size: 14px;
  text-transform: none;
}

.language-label {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-start {
  margin-bottom: 16px;
}

.language-label + h2 {
  margin-top: 0;
}

.app-list {
  display: grid;
  gap: 20px;
  padding-top: 28px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.generic-app-icon {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid var(--muted);
  border-radius: 10px;
}

.app-item h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.app-item p,
.updated {
  color: var(--muted);
}

.app-item p {
  margin: 0;
  font-size: 16px;
}

.updated {
  margin: 32px 0 0;
  font-size: 14px;
}

.updated + hr {
  margin-top: 32px;
}
