:root {
  color-scheme: light dark;
  --paper: #F7F7F5;
  --ink: #1B1F24;
  --muted: #5A6270;
  --line: #E1E4E8;
  --accent: #1F6F5B;
  --accent-ink: #F7F7F5;
  --code-bg: #ECEEEA;
  --radius: 6px;
  --sans: ui-sans-serif, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
  --body-size: 17px;
  --body-leading: 1.6;
  --h1-size: clamp(34px, 5vw, 52px);
  --h2-size: 26px;
  --h3-size: 18px;
  --measure: 66ch;
  --page-width: 1040px;
  --gutter: 24px;
  --section-space: 72px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #141619;
    --ink: #E8EAED;
    --muted: #A3ABB5;
    --line: #2A2F36;
    --accent: #5CC49A;
    --accent-ink: #0E1512;
    --code-bg: #1C2025;
  }
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--body-size);
  line-height: var(--body-leading);
  overflow-wrap: break-word;
}
pre, code, .support-details a, .footer-contact a { overflow-wrap: anywhere; }
.container { width: 100%; max-width: var(--page-width); margin-inline: auto; padding-inline: var(--gutter); }
p, ul, dl { max-width: var(--measure); }
p { margin: 0 0 1.25em; }
h1, h2, h3 { margin: 0; line-height: 1.2; }
h1 { font-size: var(--h1-size); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: var(--h2-size); font-weight: 600; margin-bottom: 28px; }
h3 { font-size: var(--h3-size); font-weight: 600; margin-bottom: 12px; }
a { color: var(--accent); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
nav a, .text-link, .support-details a, .footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 8px;
}
.skip-link { position: absolute; left: 16px; top: -100px; padding: 12px 20px; background: var(--paper); z-index: 1; }
.skip-link:focus { top: 8px; }
.site-header nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.wordmark { font-weight: 700; font-size: 20px; text-decoration: none; }
.nav-links, .footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.hero { padding-block: var(--section-space) 32px; }
.hero h1 { max-width: 850px; margin-bottom: 24px; }
.hero p { max-width: 60ch; margin-bottom: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 600;
}
.button:hover { background: color-mix(in srgb, var(--accent) 92%, #0E1512); }
.button:active { transform: translateY(1px); }
.availability { color: var(--muted); margin-bottom: var(--section-space); }
.section { border-top: 1px solid var(--line); padding-block: var(--section-space); }
.steps { margin: 0; padding-left: 28px; }
.steps > li { padding-left: 12px; }
.steps > li + li { margin-top: 36px; }
.steps > li::marker { font-weight: 600; }
.steps p:last-child { margin-bottom: 0; }
.examples, .feature-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.examples { margin-top: 20px; }
figure { min-width: 0; margin: 0; }
figcaption { color: var(--muted); margin-bottom: 8px; }
code, pre { font-family: var(--mono); font-size: 1em; }
pre { white-space: pre-wrap; margin: 0; padding: 20px; background: var(--code-bg); border-radius: var(--radius); }
ul { padding-left: 24px; margin: 0; }
ul li + li { margin-top: 12px; }
.audience { margin: 32px 0 0; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; text-align: left; }
thead { background: var(--accent); color: var(--accent-ink); }
th, td { padding: 18px 20px; vertical-align: top; }
tbody tr { border-bottom: 1px solid var(--line); }
tbody th { font-weight: 700; width: 20%; }
tbody td:nth-child(2) { font-family: var(--mono); width: 30%; }
.pricing-note { margin: 24px 0 0; }
.privacy-points { margin-bottom: 20px; }
.support-details { display: grid; grid-template-columns: 90px minmax(0, 1fr); align-items: baseline; gap: 4px 16px; margin: 0; }
dt { font-weight: 600; }
dd { margin: 0; min-width: 0; }
.site-footer { border-top: 1px solid var(--line); padding-block: 32px; }
.site-footer p { margin-bottom: 12px; }
.footer-links { margin-bottom: 16px; }
.trademark { font-size: 16px; color: var(--muted); }
.footer-contact { display: flex; flex-wrap: wrap; gap: 4px 24px; }
.legal { max-width: 72ch; padding-block: var(--section-space); }
.legal h1 { margin-bottom: 24px; }
.legal h2 { margin-top: 2em; margin-bottom: 20px; }
.legal > p:first-of-type { color: var(--muted); }
.legal ul { margin-bottom: 1.25em; }

@media (max-width: 767px) {
  :root { --section-space: 48px; }
  .examples, .feature-groups { grid-template-columns: 1fr; }
  .site-header nav { flex-wrap: wrap; gap: 0 16px; padding-block: 8px; }
  .nav-links { gap: 20px; }
  .table-scroll { overflow-x: visible; }
  table, tbody, tr, th, td { display: block; }
  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  tbody tr { padding-block: 16px; border-bottom: 1px solid var(--line); }
  tbody th, tbody td:nth-child(2) { width: auto; }
  th, td { padding: 4px 0; }
  tbody th { font-size: 18px; font-weight: 700; }
  td::before {
    content: attr(data-label) ': ';
    color: var(--muted);
    font-family: var(--sans);
    font-weight: 600;
  }
  .steps > li { padding-left: 4px; }
}
@media (max-width: 479px) {
  :root { --gutter: 16px; }
}
@media (prefers-reduced-motion: no-preference) {
  a { transition: color 160ms, background-color 160ms, border-color 160ms; }
}
