:root {
  color-scheme: light dark;
  --paper: #faf9f6;
  --ink: #232620;
  --muted: #61665d;
  --line: #dedfd7;
  --wash: #eeeee6;
  --accent: #3d5735;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
.site-shell {
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  width: 146px;
  flex-shrink: 0;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
}
.header-access {
  font-size: 13px;
  text-decoration: none;
}
.header-access span {
  margin-left: 8px;
}
.hero {
  padding: 88px 0 64px;
  max-width: 760px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 1.8px;
  color: var(--muted);
  margin: 0 0 22px;
}
h1,
h2 {
  font-weight: 550;
}
h1 {
  font-size: clamp(40px, 6.3vw, 72px);
  line-height: 1.08;
  letter-spacing: -2.7px;
  margin: 0 0 26px;
}
.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  padding: 12px 21px;
  border-radius: 8px;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
}
.note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 17px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}
.feature-number {
  font-size: 12px;
  color: var(--muted);
}
.features h2 {
  font-size: 19px;
  margin: 17px 0 10px;
}
.features p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.google-note {
  padding: 36px 40px;
  background: var(--wash);
  border-radius: 12px;
}
.google-note h2 {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.7px;
  margin: 0 0 18px;
}
.google-note p:not(.eyebrow) {
  color: var(--muted);
  max-width: 800px;
  font-size: 15px;
}
.google-note a {
  font-size: 14px;
}
.contact-block {
  padding: 40px 0;
  max-width: 760px;
}
.contact-block h2 {
  font-size: 18px;
}
.contact-block p {
  font-size: 14px;
  color: var(--muted);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0 34px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a[aria-current] {
  text-decoration: underline;
}
.legal {
  max-width: 760px;
  margin: 60px auto 64px;
  overflow-wrap: anywhere;
}
.legal h1 {
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.15;
}
.legal h2 {
  font-size: 21px;
  line-height: 1.35;
  margin: 36px 0 12px;
}
.legal p,
.legal li {
  color: var(--muted);
}
.legal li + li {
  margin-top: 8px;
}
.legal strong {
  color: var(--ink);
  font-weight: 600;
}
.legal ul {
  padding-left: 22px;
}
.legal .updated {
  font-size: 12px;
  margin: -10px 0 28px;
}
.legal .summary {
  padding: 18px 24px;
  background: var(--wash);
  border-radius: 10px;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  padding: 8px 16px;
  background: var(--paper);
  z-index: 1;
}
.skip-link:focus {
  top: 10px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #191c19;
    --ink: #f0f1e8;
    --muted: #b3b9af;
    --line: #383e35;
    --wash: #262c24;
    --accent: #b6cba7;
  }
}
@media (max-width: 680px) {
  .site-shell {
    padding: 0 22px;
  }
  .site-header {
    min-height: 86px;
    gap: 20px;
  }
  .brand {
    width: 120px;
  }
  .header-access {
    font-size: 12px;
    text-align: right;
    max-width: 125px;
    line-height: 1.4;
  }
  .hero {
    padding: 54px 0 40px;
  }
  h1 {
    letter-spacing: -1.6px;
  }
  .lead {
    font-size: 17px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 34px;
  }
  .features h2 {
    margin-top: 7px;
  }
  .google-note {
    padding: 24px;
  }
  .google-note h2 {
    font-size: 24px;
  }
  .site-footer {
    flex-direction: column;
    gap: 12px;
  }
  .legal {
    margin: 40px 0;
    font-size: 15px;
  }
}
@media print {
  :root {
    --paper: white;
    --ink: black;
    --muted: #333;
    --line: #ccc;
    --wash: white;
    color-scheme: light;
  }
  .site-shell {
    padding: 0;
  }
  .header-access,
  .skip-link,
  .button {
    display: none;
  }
  .legal {
    margin: 24px 0;
    max-width: none;
  }
  h2 {
    break-after: avoid;
  }
}
