/* conformance.report: no webfonts, no framework. System stack renders instantly. */
:root {
  --paper:   #f3f5f8;
  --surface: #ffffff;
  --sunken:  #e8edf3;
  --ink:     #0d141c;
  --ink-2:   #4d5a6b;
  --ink-3:   #606a77;
  --rule:    #d3dae4;
  --accent:  #00349b;
  --accent-2:#e2e9f7;
  --crit:    #96101f;
  --ser:     #a94d08;
  --ok:      #12603f;
  --shadow:  0 1px 2px rgba(13,20,28,.05), 0 10px 28px -20px rgba(13,20,28,.22);

  --btn-fg:  #ffffff;

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:   #0b1017;
    --surface: #131a24;
    --sunken:  #19222e;
    --ink:     #e7ecf2;
    --ink-2:   #95a3b5;
    --ink-3:   #808c9b;
    --rule:    #253040;
    --accent:  #8faaf0;
    --accent-2:#18233a;
    --crit:    #ec7d8e;
    --ser:     #e0904c;
    --ok:      #4dba8c;
    --btn-fg:  #0b1017;
    --shadow:  0 1px 2px rgba(0,0,0,.4), 0 10px 28px -20px rgba(0,0,0,.7);
  }
}
:root[data-theme="dark"] {
  --paper:#0b1017; --surface:#131a24; --sunken:#19222e; --ink:#e7ecf2; --ink-2:#95a3b5;
  --ink-3:#808c9b; --rule:#253040; --accent:#8faaf0; --accent-2:#18233a;
  --crit:#ec7d8e; --ser:#e0904c; --ok:#4dba8c; --btn-fg:#0b1017;
  --shadow:0 1px 2px rgba(0,0,0,.4), 0 10px 28px -20px rgba(0,0,0,.7);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }

.wrap { max-width: 940px; margin: 0 auto; padding-inline: 20px; }

/* skip link: first focusable thing on the page */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff;
  padding: 10px 16px; z-index: 10; border-radius: 0 0 4px 0;
}
.skip:focus { left: 0; }

a { color: var(--accent); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px;
}

/* ---------- header ---------- */
.site-head {
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-block: 15px; flex-wrap: wrap;
}
.wordmark {
  font-family: var(--mono); font-size: 15px; font-weight: 600;
  letter-spacing: -.01em; color: var(--ink); text-decoration: none;
}
.wordmark span.tld { color: var(--ink-3); }
.brand-mark {
  display: inline-block; width: 16px; height: 26px;
  vertical-align: -7px; margin-right: 10px;
  fill: currentColor; overflow: visible;
}
.site-nav { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.site-nav a { font-size: 14.5px; color: var(--ink-2); text-decoration: none; }
.site-nav a:hover { color: var(--ink); text-decoration: underline; }

.btn {
  display: inline-block; text-decoration: none;
  background: var(--accent); color: var(--btn-fg);
  font-size: 15px; font-weight: 600;
  padding: 10px 17px; border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover { filter: brightness(1.08); }
.btn.ghost {
  background: transparent; color: var(--accent); border-color: var(--rule);
}

/* ---------- sections ---------- */
main > section { padding-block: 60px; border-bottom: 1px solid var(--rule); }
main > section:last-of-type { border-bottom: 0; }

h1 {
  font-size: clamp(30px, 5.4vw, 45px); line-height: 1.08;
  letter-spacing: -.028em; font-weight: 700; margin: 0 0 18px;
  text-wrap: balance; max-width: 22ch;
}
h2 {
  font-size: clamp(22px, 3.4vw, 28px); line-height: 1.2;
  letter-spacing: -.02em; font-weight: 650; margin: 0 0 14px;
  text-wrap: balance;
}
h3 { font-size: 17.5px; line-height: 1.3; letter-spacing: -.012em; font-weight: 650; margin: 0 0 6px; }
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 14px;
}
.lede { font-size: 18.5px; color: var(--ink-2); margin: 0 0 26px; max-width: 62ch; }
p { margin: 0 0 16px; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.hero { padding-block: 66px 60px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-note { font-size: 14px; color: var(--ink-3); margin: 14px 0 0; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.grid.two   { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 5px; padding: 19px 21px; box-shadow: var(--shadow);
}
.card p { font-size: 15px; color: var(--ink-2); margin: 0; }
/* Cards were written for a single paragraph; consecutive ones need separating. */
.card p + p { margin-top: 12px; }
.card .tagn {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 9px;
}

/* ---------- stat strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: 5px; overflow: hidden; margin-bottom: 24px;
}
.stat { background: var(--surface); padding: 16px 18px; }
.stat b {
  display: block; font-size: 27px; font-weight: 700; line-height: 1.05;
  letter-spacing: -.025em; font-variant-numeric: tabular-nums;
}
.stat span {
  display: block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px;
}
.stat.bad b { color: var(--crit); }
.stat.ok  b { color: var(--ok); }

/* ---------- callout ---------- */
.callout {
  background: var(--accent-2); border: 1px solid var(--rule);
  border-radius: 5px; padding: 26px 28px;
}
.callout h2 { margin-bottom: 12px; }
.callout p { color: var(--ink-2); }
.callout strong { color: var(--ink); }

/* ---------- steps ---------- */
ol.steps { counter-reset: s; list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
ol.steps > li {
  counter-increment: s; background: var(--surface); border: 1px solid var(--rule);
  border-radius: 5px; padding: 18px 21px 18px 60px; position: relative; box-shadow: var(--shadow);
}
ol.steps > li::before {
  content: counter(s); position: absolute; left: 21px; top: 18px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--accent); background: var(--accent-2);
  width: 25px; height: 25px; border-radius: 50%;
  display: grid; place-items: center;
}
ol.steps p { font-size: 15px; color: var(--ink-2); margin: 0; }

/* ---------- plain lists ---------- */
ul.ticks { margin: 0 0 18px; padding-left: 21px; color: var(--ink-2); }
ul.ticks li { margin-bottom: 7px; }
ul.ticks li:last-child { margin-bottom: 0; }

/* ---------- pricing ---------- */
.plans { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.plan {
  background: var(--surface); border: 1px solid var(--rule); border-radius: 5px;
  padding: 23px 24px; display: flex; flex-direction: column; gap: 13px; box-shadow: var(--shadow);
}
.plan.featured { border-color: var(--accent); border-width: 2px; }
.plan .price {
  font-size: 31px; font-weight: 700; letter-spacing: -.025em;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.plan .price small { font-size: 14px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.plan ul { margin: 0; padding-left: 20px; font-size: 14.5px; color: var(--ink-2); }
.plan ul li { margin-bottom: 6px; }
.plan .btn { text-align: center; margin-top: auto; }

/* ---------- tables ---------- */
.scroll { overflow-x: auto; border: 1px solid var(--rule); border-radius: 5px; background: var(--surface); }
table { border-collapse: collapse; width: 100%; font-size: 15px; min-width: 460px; }
caption { text-align: left; font-size: 14px; color: var(--ink-3); padding: 11px 14px 0; }
th, td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--rule); }
th {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); background: var(--sunken);
}
tbody tr:last-child td { border-bottom: 0; }
/* Short counts in wide columns read better centred than pushed to either edge.
   Header and cells must declare the same alignment or the values drift off the label. */
td.num { text-align: center; font-variant-numeric: tabular-nums; font-family: var(--mono); font-size: 14px; }
th.num { text-align: center; }

code {
  font-family: var(--mono); font-size: .9em;
  background: var(--sunken); border: 1px solid var(--rule);
  border-radius: 3px; padding: 1px 5px;
}
pre {
  font-family: var(--mono); font-size: 13px; line-height: 1.6;
  background: var(--sunken); border: 1px solid var(--rule); border-radius: 5px;
  padding: 15px 17px; overflow-x: auto; margin: 0 0 18px;
}
pre code { background: none; border: 0; padding: 0; }

/* ---------- spacing utilities ---------- */
/* The CSP is style-src 'self', so inline style attributes are blocked on our own
   pages. Anything that needs spacing gets a class instead. */
.mt-1 { margin-top: 18px; }
.mt-2 { margin-top: 22px; }
.accent-rail { border-left-color: var(--accent) !important; }

/* ---------- footer ---------- */
.site-foot {
  border-top: 1px solid var(--rule); background: var(--surface);
  padding-block: 30px 40px; font-size: 14.5px; color: var(--ink-2);
}
.site-foot .wrap { display: flex; flex-direction: column; gap: 14px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.foot-legal { color: var(--ink-3); font-size: 13.5px; }

/* ---------- prose pages ---------- */
.prose { padding-block: 48px 70px; }
.prose h1 { font-size: clamp(27px, 4.4vw, 36px); max-width: 30ch; }
.prose h2 { font-size: 21px; margin-top: 34px; }
.prose h3 { margin-top: 22px; }
.prose dl { margin: 0 0 18px; }
.prose dt { font-weight: 650; margin-top: 14px; }
.prose dd { margin: 4px 0 0; color: var(--ink-2); }
.updated { font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); margin-bottom: 26px; }

@media (max-width: 720px) {
  .site-head .wrap { flex-wrap: nowrap; padding-block: 13px; }
  .site-nav { gap: 0; }
  .site-nav a.section-link { display: none; }
  .site-nav a { font-size: 15px; font-weight: 600; color: var(--accent); }
  .wordmark { font-size: 14.5px; }
  .brand-mark { width: 14px; height: 23px; vertical-align: -6px; margin-right: 8px; }
  h1 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
