:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --border: #d2d2d7;
  --blue: #0071e3;
  --link: #0066cc;
  --display-font: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --text-font: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--text-font);
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 52px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
}

.brand img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.brand strong {
  display: block;
  font-weight: 600;
}

.brand span span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.nav-menu a,
.footer-links a,
.text-link {
  transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a.is-active,
.footer-links a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 980px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.policy-hero {
  padding: 134px 0 70px;
  background: var(--black);
  color: var(--white);
}

.container {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.24;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: var(--display-font);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 60px;
  line-height: 1.06;
}

.lead {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 21px;
  line-height: 1.38;
}

.locale-band {
  border-bottom: 1px solid var(--border);
  background: var(--gray);
}

.locale-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.locale-inner strong { color: var(--ink); }

.locale-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.locale-links a {
  color: var(--link);
  font-weight: 600;
}

.content {
  padding: 72px 0 88px;
}

.policy-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.policy-section:first-child { padding-top: 0; }
.policy-section:last-child { border-bottom: 0; }

h2 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.14;
}

h3 {
  margin: 22px 0 8px;
  font-size: 21px;
  line-height: 1.24;
}

p,
li {
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 21px;
}

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

.text-link {
  color: var(--link);
  font-weight: 600;
}

.text-link:hover { color: var(--blue); }

.notice {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--gray);
  color: var(--ink);
}

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

.site-footer {
  padding: 34px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 833px) {
  .nav { width: min(100% - 28px, 1180px); }
  .nav-menu {
    justify-content: flex-end;
    gap: 14px;
  }
  .nav-menu a:nth-child(1),
  .nav-menu a:nth-child(2),
  .nav-menu a:nth-child(4) {
    display: none;
  }
  .brand span span { display: none; }
  .policy-hero { padding: 106px 0 56px; }
  h1 { font-size: 42px; line-height: 1.08; }
  h2 { font-size: 27px; }
  .lead { font-size: 19px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 980px); }
  .nav-menu a:nth-child(5) { display: none; }
}
