:root {
  color-scheme: light;
  --background: #ffffff;
  --primary: #000000;
  --secondary: rgba(60, 60, 67, 0.60);
  --link: #007aff;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --background: #000000;
  --primary: #ffffff;
  --secondary: rgba(235, 235, 245, 0.60);
  --link: #0a84ff;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    color-scheme: dark;
    --background: #000000;
    --primary: #ffffff;
    --secondary: rgba(235, 235, 245, 0.60);
    --link: #0a84ff;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--primary);
  background: var(--background);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

h1,
h2,
p {
  margin: 0;
}

header {
  --title: 34px;
  display: grid;
  gap: calc(var(--title) * 0.2156);
}

.dots {
  display: block;
  width: calc(var(--title) * 0.7541);
  height: auto;
}

h1 {
  font-size: var(--title);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.0353em;
}

/* Arabic and Hebrew are connected or unspaced scripts; tracking breaks them. */
[dir="rtl"] h1,
[dir="rtl"] .lede {
  letter-spacing: 0;
}

.policy {
  display: grid;
  gap: 28px;
  margin-top: 24px;
}

.lede {
  color: var(--primary);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.2px;
}

section {
  display: grid;
  gap: 9px;
}

#contact {
  scroll-margin-top: 20px;
}

h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

section p {
  color: var(--secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

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

@media (max-width: 420px) {
  main {
    padding-top: 20px;
  }
}

@media (max-width: 359px) {
  header {
    --title: 30px;
  }
}
