/* ClearAmp site - same tokens as the extension, so the pages and the product agree. */
:root {
  --bg: #FFFFFF;
  --surface: #F1F5F5;
  --text: #0E1A1D;
  --dim: #4A5C60;
  --accent: #0B6E6C;
  --line: #DCE4E4;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F1618; --surface: #182124; --text: #E8F0F0;
    --dim: #9FB2B4; --accent: #35D6C4; --line: #243033;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0; padding: 0 20px 72px;
  font-family: var(--font); font-size: 16px; line-height: 1.62;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 720px; margin: 0 auto; }
header.site {
  display: flex; align-items: center; gap: 12px;
  padding: 26px 0 30px; border-bottom: 1px solid var(--line); margin-bottom: 34px;
}
header.site img { width: 36px; height: 36px; border-radius: 8px; }
header.site .name { font-weight: 650; font-size: 18px; }
header.site nav { margin-left: auto; display: flex; gap: 18px; font-size: 14px; }
a { color: var(--accent); }
h1 { font-size: 30px; line-height: 1.25; margin: 0 0 8px; letter-spacing: -0.02em; }
h2 { font-size: 20px; margin: 34px 0 10px; }
h3 { font-size: 16px; margin: 24px 0 6px; }
.lede { font-size: 18px; color: var(--dim); margin: 0 0 28px; }
.updated { font-size: 14px; color: var(--dim); margin: 0 0 30px; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 22px; margin: 26px 0;
}
.card p:first-child { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
ul { padding-left: 22px; }
li { margin-bottom: 7px; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px;
}
footer.site {
  margin-top: 54px; padding-top: 22px;
  border-top: 1px solid var(--line); font-size: 14px; color: var(--dim);
}
.cta {
  display: inline-block; margin-top: 8px; padding: 11px 22px;
  background: var(--accent); color: var(--bg);
  border-radius: 9px; text-decoration: none; font-weight: 600;
}
