@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
}
.hero h1,
.section h2,
.privacy-strip h2,
.legal h1 {
  font-family: 'Manrope', sans-serif;
}
:root {
  color-scheme: light;
  --ink: #1c211c;
  --muted: #667068;
  --bg: #f3f1ea;
  --panel: #fbfaf6;
  --line: #d8d3c6;
  --blue: #2f6f4e;
  --blue-soft: #e3eee7;
  --green: #2f6f4e;
  --red: #a33d3a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    16px/1.7 -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
svg {
  vertical-align: middle;
  flex: 0 0 auto;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
.shell {
  width: min(1140px, calc(100% - 56px));
  margin: 0 auto;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.brand-icon {
  display: block;
}
.mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-block;
  background: var(--blue) url('assets/icon-128.png') center/contain no-repeat;
}
.nav-links {
  display: flex;
  gap: 27px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links .button {
  color: var(--ink);
}
.github-link span {
  margin-left: 3px;
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 76px;
  padding: 91px 0 95px;
}
h1 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 650;
  text-wrap: balance;
}
.lede {
  max-width: 43ch;
  margin: 25px 0 29px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.button {
  display: inline-flex;
  gap: 10px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel);
  text-decoration: none;
  font-size: 13px;
  font-weight: 550;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}
.button:hover {
  background: #ece8de;
  border-color: #c4beaf;
}
.button.primary {
  border-color: transparent;
  color: #fff;
  background: var(--blue);
}
.button.primary:hover {
  background: #245a3e;
}
.button.small {
  min-height: 36px;
  padding: 7px 13px;
  font-size: 12px;
}
.proof {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.hero-note p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.hero-note strong {
  font-weight: 400;
}
.note-line {
  width: 28px;
  height: 1px;
  background: var(--blue);
}
.demo {
  padding: 0 25px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 550;
}
.demo-head > span:first-child {
  display: flex;
  align-items: center;
  gap: 3px;
}
.sample-label {
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
  padding: 3px 6px;
  background: var(--bg);
  border-radius: 4px;
}
.post {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
}
.score {
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
  background: #eaf5f0;
  padding: 2px 7px;
  border-radius: 5px;
}
.score small {
  font-size: 9px;
  font-weight: 400;
}
.post h3 {
  margin: 12px 0 7px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.post p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.post-reason {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--green);
  margin-top: 15px;
}
.filtered {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.filtered > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.low-score {
  font-size: 17px;
  color: var(--muted);
  font-weight: 550;
}
.filtered strong {
  display: block;
  font-size: 11px;
  font-weight: 550;
}
.filtered small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}
.filtered a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}
.demo-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  color: var(--muted);
  font-size: 11px;
}
.demo-foot strong {
  color: var(--blue);
  font-weight: 650;
  font-size: 15px;
}
.demo-foot small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}
.section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.section h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.section-intro {
  max-width: 44ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin: 22px 0 24px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 550;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.principle {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.principle:first-child {
  padding-top: 0;
}
.principle:last-child {
  border: 0;
  padding-bottom: 0;
}
.principle h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.principle a {
  display: inline-block;
  margin-top: 11px;
  color: var(--blue);
  font-size: 11px;
  text-decoration: none;
}
.principle a:hover {
  text-decoration: underline;
}
.privacy-strip {
  padding: 30px 35px;
  background: var(--blue-soft);
  border-radius: 14px;
  margin: 0 0 78px;
  display: grid;
  grid-template-columns: 0.95fr 1fr auto;
  align-items: center;
  gap: 25px;
}
.privacy-strip > div {
  display: flex;
  gap: 13px;
  align-items: center;
}
.privacy-strip svg {
  color: var(--blue);
}
.privacy-strip h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.privacy-strip p {
  color: #43556f;
  font-size: 12px;
  margin: 0;
  line-height: 1.9;
}
.privacy-strip a {
  font-size: 11px;
}
.install {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.install-steps {
  padding-left: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  margin: 0 0 24px;
}
.install-steps li {
  padding: 5px 0 5px 4px;
}
.install-steps li::marker {
  color: var(--blue);
  font-weight: 600;
}
.install-steps code {
  color: var(--ink);
  font-size: 11px;
}
.source-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
}
.source-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 550;
}
.source-panel-head span:last-child {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}
pre {
  overflow-x: auto;
  margin: 0;
  padding: 24px 22px;
  color: #43556f;
  font:
    11px/1.9 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}
.source-panel > p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  line-height: 1.8;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.footer .brand {
  font-size: 20px;
}
.footer p {
  font-size: 10px;
  margin: 9px 0 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
}
.footer-links a {
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--blue);
}
.legal {
  max-width: 760px;
  padding: 70px 0 95px;
}
.legal h1 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.legal h2 {
  margin-top: 36px;
  font-size: 19px;
  font-weight: 600;
}
.legal p,
.legal li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.legal strong {
  color: var(--ink);
}
.legal .effective-date {
  font-size: 12px;
}
@media (max-width: 960px) {
  .hero {
    gap: 36px;
    padding-block: 70px;
  }
  .section-grid {
    gap: 55px;
  }
  .privacy-strip {
    grid-template-columns: 1fr 1fr;
    gap: 18px 25px;
  }
  .privacy-strip > a {
    grid-column: 2;
  }
  .install {
    gap: 35px;
  }
  .nav-links {
    gap: 20px;
  }
}
@media (max-width: 760px) {
  .hero,
  .section-grid,
  .install {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 42px;
    padding-block: 55px 65px;
  }
  .hero-copy {
    max-width: 540px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .lede {
    font-size: 16px;
  }
  .hero-note {
    margin-top: 25px;
  }
  .section {
    padding: 60px 0;
  }
  .section-grid {
    gap: 35px;
  }
  .privacy-strip {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    margin-bottom: 60px;
    gap: 15px;
  }
  .install {
    gap: 32px;
  }
  .footer {
    align-items: flex-start;
  }
  .nav-links a:not(.button):not(.github-link) {
    display: none;
  }
}
@media (max-width: 480px) {
  .shell {
    width: calc(100% - 36px);
  }
  .nav {
    padding-block: 17px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-icon {
    width: 34px;
    height: 34px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links .github-link {
    display: none;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero {
    padding-block: 46px 55px;
  }
  .lede {
    font-size: 15px;
  }
  .button {
    font-size: 12px;
    min-height: 42px;
  }
  .proof {
    font-size: 10px;
  }
  .demo {
    padding-inline: 20px;
  }
  .post h3 {
    font-size: 17px;
  }
  .filtered {
    gap: 8px;
  }
  .filtered > div {
    gap: 9px;
  }
  .filtered a {
    font-size: 9px;
  }
  .section h2 {
    font-size: 32px;
  }
  .footer {
    flex-direction: column;
    gap: 25px;
  }
  .footer-links {
    gap: 22px;
  }
  .legal {
    padding-block: 45px 60px;
  }
  .legal h1 {
    font-size: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
