@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #2f2630;
  --muted: #756a73;
  --accent: #bd4d79;
  --soft: #fbeaf1;
  --line: #eee5e9;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  font-family: "Onest", system-ui, sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

.privacy-header {
  min-height: calc(64px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:
    max(16px, env(safe-area-inset-top))
    max(20px, env(safe-area-inset-right))
    12px
    max(20px, env(safe-area-inset-left));
}

.privacy-header a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-underline-offset: 4px;
}

.privacy-header span {
  font-weight: 720;
}

main {
  width: min(100%, 720px);
  display: grid;
  gap: 30px;
  margin: 0 auto;
  padding:
    38px
    max(22px, env(safe-area-inset-right))
    max(64px, env(safe-area-inset-bottom))
    max(22px, env(safe-area-inset-left));
}

.eyebrow {
  margin: 0 0 -18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(36px, 10vw, 62px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 4.8vw, 22px);
  line-height: 1.5;
}

section {
  display: grid;
  gap: 9px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

h2 {
  font-size: 18px;
  font-weight: 720;
}

section p,
.launch-note p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.launch-note {
  display: grid;
  gap: 9px;
  padding: 20px;
  background: var(--soft);
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid color-mix(in srgb, var(--accent) 32%, transparent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
