/* ==========================================================================
   Sitemap Checker: design tokens
   Deep navy carries trust and seriousness; mint is the "healthy / go" signal;
   royal blue is the interactive colour. Amber and red are reserved for
   issues so they stand out in reports.
   ========================================================================== */
:root {
  --navy-950: #060f26;
  --navy-900: #0a1a3d;
  --navy-800: #12275a;
  --navy-700: #1b3677;

  --bg: #f4f6fb;
  --surface: #ffffff;
  --surface-2: #eef2fa;
  --border: #dce2ee;
  --text: #0b1530;
  --muted: #5a6582;

  --brand: #2450f5;
  --brand-2: #4c74ff;
  --brand-soft: #e7edff;
  --mint: #0c9f76;
  --mint-bright: #2ee6b0;
  --mint-soft: #e1f7ef;
  --amber: #b56a00;
  --amber-soft: #fff3dc;
  --red: #d2323b;
  --red-soft: #fdeced;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(10, 26, 61, .06), 0 8px 24px rgba(10, 26, 61, .06);
  --shadow-lg: 0 24px 60px rgba(3, 10, 30, .35);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Code", Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #070e20;
    --surface: #0d1730;
    --surface-2: #122043;
    --border: #213158;
    --text: #e7ecf7;
    --muted: #97a3c2;
    --brand: #7090ff;
    --brand-2: #8ea8ff;
    --brand-soft: #18275a;
    --mint: #2ee6b0;
    --mint-soft: #0d3a33;
    --amber: #f2b24c;
    --amber-soft: #3a2a10;
    --red: #ff7a80;
    --red-soft: #3f1a20;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .25);
  }
}

/* ---------- Base ---------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 2px; }
code { font: .88em var(--mono); background: var(--surface-2); padding: .1em .35em; border-radius: 5px; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.05rem; letter-spacing: -.01em; }
p { margin: 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.inline { display: inline; }
.center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: 600 .95rem/1 var(--font); padding: .85rem 1.25rem; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:focus-visible, input:focus-visible, summary:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 2px; }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); border-color: transparent; color: #fff; }
.btn-cta { background: var(--mint-bright); border-color: transparent; color: var(--navy-950); box-shadow: 0 8px 24px rgba(46, 230, 176, .25); }
.btn-cta:hover { background: #5cf0c4; box-shadow: 0 10px 30px rgba(46, 230, 176, .35); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .25); color: #fff; }
.btn-sm { padding: .5rem .85rem; font-size: .85rem; }
.btn-lg { padding: 1rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; }
button.link { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; opacity: .85; }
button.link:hover { opacity: 1; text-decoration: underline; }

/* ---------- Header / footer ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(6, 15, 38, .92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08); color: #e7ecf7;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 750; font-size: 1.05rem; color: #fff; text-decoration: none; letter-spacing: -.01em; }
.brand svg { flex: none; }
.nav { display: flex; align-items: center; gap: 1.4rem; font-size: .92rem; }
.nav a { color: #c9d3ec; text-decoration: none; }
.nav a:hover { color: #fff; }
.nav .account { color: #97a3c2; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 760px) { .nav .hide-sm { display: none; } }

.site-footer { background: var(--navy-950); color: #97a3c2; padding: 48px 0 40px; margin-top: 80px; font-size: .9rem; }
.site-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; }
.site-footer a { color: #c9d3ec; text-decoration: none; margin-left: 1.25rem; }
.site-footer a:hover { color: #fff; }
.footer-brand p { margin-top: .4rem; }

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(76, 116, 255, .45), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(46, 230, 176, .18), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  padding: 72px 0 88px;
}
.hero::before {
  /* faint grid, a nod to crawling a site map */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 60% 30%, #000 30%, transparent 75%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .hero .container { grid-template-columns: 1fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 650;
  letter-spacing: .06em; text-transform: uppercase; color: var(--mint-bright);
  background: rgba(46, 230, 176, .1); border: 1px solid rgba(46, 230, 176, .25);
  padding: .35rem .7rem; border-radius: 999px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.035em; margin: 20px 0 18px; font-weight: 800; }
.hero h1 .glow { background: linear-gradient(90deg, var(--mint-bright), #7fb2ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: 1.15rem; color: #c3cde6; max-width: 38em; }

.audit-form { margin-top: 30px; max-width: 580px; }
.audit-field {
  display: flex; gap: 8px; padding: 7px; border-radius: 14px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow-lg);
}
.audit-field .prefix { display: flex; align-items: center; padding-left: 12px; color: #8391b5; font: .95rem var(--mono); }
.audit-field input {
  flex: 1; min-width: 0; font: 500 1.05rem var(--font); color: #fff; background: transparent;
  border: 0; padding: .7rem .25rem; outline: none;
}
.audit-field input::placeholder { color: #7482a8; }
@media (max-width: 520px) {
  .audit-field { flex-direction: column; }
  .audit-field .prefix { display: none; }
  .audit-field input { padding: .7rem .6rem; }
}
.assurances { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: 16px; font-size: .9rem; color: #aab6d4; list-style: none; padding: 0; }
.assurances li { display: inline-flex; align-items: center; gap: .4rem; }
.assurances svg, .check-list svg { color: var(--mint-bright); flex: none; }
.form-error {
  margin-top: 14px; padding: .75rem 1rem; border-radius: 10px; font-size: .95rem;
  background: rgba(255, 122, 128, .12); border: 1px solid rgba(255, 122, 128, .45); color: #ffd3d5;
}

/* Example report card in the hero */
.preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; padding: 22px;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
}
.preview-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: .85rem; color: #aab6d4; }
.preview-head b { color: #fff; font-size: 1rem; }
.preview-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: #8391b5; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: .15rem .55rem; }
.preview-score { display: flex; align-items: center; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.preview .donut { width: 96px; height: 96px; }
.preview .donut .track { stroke: rgba(255, 255, 255, .12); }
.preview .donut .value { stroke: #f2b24c; }
.preview .donut .label b { font-size: 1.6rem; color: #fff; }
.preview .donut .label span { color: #aab6d4; }
.preview-score .num { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; }
.preview-issues { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 10px; }
.preview-issues li { display: flex; justify-content: space-between; align-items: center; font-size: .92rem; color: #d7def0; }
.pill { font: 700 .78rem/1 var(--font); padding: .35rem .6rem; border-radius: 999px; }
.pill.red { background: rgba(255, 122, 128, .16); color: #ff9da2; }
.pill.amber { background: rgba(242, 178, 76, .16); color: #f7c878; }
.pill.mint { background: rgba(46, 230, 176, .14); color: var(--mint-bright); }

/* ---------- Sections ------------------------------------------------------ */
.section { padding: 88px 0 0; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head .kicker { color: var(--brand); font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.section-head h2 { margin: 10px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.feature .icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: 16px;
}
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .95rem; }
.why .card { border-top: 3px solid var(--red); }
.why .card:nth-child(2) { border-top-color: var(--amber); }
.why .card:nth-child(3) { border-top-color: var(--brand); }
.why .stat { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }

.steps { counter-reset: step; }
.step { position: relative; padding-top: 56px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 20px; left: 24px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
  background: var(--navy-900); color: var(--mint-bright);
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; }

/* Pricing */
.pricing { max-width: 860px; margin: 0 auto; }
.plan { display: flex; flex-direction: column; gap: 18px; }
.plan .price { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; }
.plan .price small { font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan.featured { border: 2px solid var(--brand); position: relative; }
.plan .badge-top {
  position: absolute; top: -13px; left: 24px; background: var(--brand); color: #fff;
  font-size: .75rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; }
.check-list svg { color: var(--mint); margin-top: 4px; }
.plan .btn { margin-top: auto; }

/* Trust */
.trust { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: #dfe6f6; border-radius: 22px; padding: 44px; }
.trust h2 { color: #fff; }
.trust .grid { margin-top: 30px; }
.trust-item { display: flex; gap: 14px; }
.trust-item .icon { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(46, 230, 176, .12); color: var(--mint-bright); }
.trust-item h3 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.trust-item p { color: #aab6d4; font-size: .92rem; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 0 22px; }
.faq summary { cursor: pointer; font-weight: 650; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding-bottom: 18px; }

.cta-band {
  margin-top: 88px; border-radius: 22px; padding: 48px; text-align: center; color: #fff;
  background:
    radial-gradient(600px 300px at 100% 0, rgba(46, 230, 176, .25), transparent 60%),
    linear-gradient(135deg, var(--brand), var(--navy-800));
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #d5defa; margin-bottom: 24px; }

/* ---------- App pages ----------------------------------------------------- */
.page { padding-top: 36px; }
.page .card + .card, .stack > * + * { margin-top: 20px; }
.alert { padding: .8rem 1rem; border-radius: 10px; margin-top: 16px; border: 1px solid var(--border); background: var(--surface-2); }
.alert.error { background: var(--red-soft); border-color: var(--red); }
.alert.info { background: var(--brand-soft); border-color: var(--brand); }

.badge { display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .65rem; border-radius: 999px; font-size: .78rem; font-weight: 700; text-transform: capitalize; background: var(--surface-2); color: var(--muted); }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge.big { font-size: .88rem; padding: .35rem .85rem; }
.badge.running { background: var(--brand-soft); color: var(--brand); }
.badge.running::before { animation: pulse 1.2s ease-in-out infinite; }
.badge.completed, .badge.paid { background: var(--mint-soft); color: var(--mint); }
.badge.failed { background: var(--red-soft); color: var(--red); }
@keyframes pulse { 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .badge.running::before { animation: none; } html { scroll-behavior: auto; } }

.crawl-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.crawl-head h1 { font-size: 1.7rem; }
.crawl-head .muted { margin-top: 4px; font-size: .92rem; overflow-wrap: anywhere; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin: 22px 0 16px; }
.stats div { background: var(--surface-2); border-radius: 11px; padding: .75rem .95rem; }
.stats dt { color: var(--muted); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.stats dd { margin: 2px 0 0; font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
progress.progress { width: 100%; height: 8px; border: 0; border-radius: 99px; overflow: hidden; background: var(--surface-2); accent-color: var(--brand); }
progress.progress::-webkit-progress-bar { background: var(--surface-2); }
progress.progress::-webkit-progress-value { background: linear-gradient(90deg, var(--brand), var(--mint)); border-radius: 99px; }
progress.progress::-moz-progress-bar { background: linear-gradient(90deg, var(--brand), var(--mint)); }
.phase { margin-top: 8px; }

.section-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 18px; }
.section-bar h2 { font-size: 1.3rem; }

/* Health overview */
.health { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
@media (max-width: 640px) { .health { grid-template-columns: 1fr; justify-items: start; } }
.donut { width: 132px; height: 132px; position: relative; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut .track { stroke: var(--surface-2); }
.donut .value { stroke: var(--mint); transition: stroke-dasharray .4s ease; }
.donut.mid .value { stroke: var(--amber); }
.donut.low .value { stroke: var(--red); }
.donut .label { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.donut .label b { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; display: block; }
.donut .label span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.health h3 { font-size: 1.25rem; margin-bottom: 6px; }

.issues { display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); gap: 12px; margin-top: 22px; }
.issue { border-radius: 12px; padding: 14px 16px; background: var(--surface-2); border: 1px solid transparent; }
.issue b { display: block; font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.issue span { font-size: .85rem; color: var(--muted); }
.issue.bad { background: var(--red-soft); border-color: color-mix(in srgb, var(--red) 35%, transparent); }
.issue.bad b { color: var(--red); }
.issue.warn { background: var(--amber-soft); border-color: color-mix(in srgb, var(--amber) 35%, transparent); }
.issue.warn b { color: var(--amber); }
.issue.ok b { color: var(--mint); }

.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.detail-grid h3 { margin-bottom: 10px; font-size: .95rem; }
.detail-grid h3 + p, .detail-grid ul + h3, .detail-grid ol + h3 { margin-top: 12px; }
.chips { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-wrap: wrap; gap: .4rem; }
.chip { border-radius: 8px; padding: .25rem .6rem; font-size: .85rem; background: var(--surface-2); font-variant-numeric: tabular-nums; }
.chip.s2 { background: var(--mint-soft); color: var(--mint); }
.chip.s3 { background: var(--amber-soft); color: var(--amber); }
.chip.s4, .chip.s5, .chip.sF { background: var(--red-soft); color: var(--red); }
.compact { margin: 0; padding-left: 1.2rem; font-size: .88rem; }
.compact li { overflow-wrap: anywhere; margin-bottom: .3rem; }
.compact .num { font-weight: 700; font-variant-numeric: tabular-nums; }
.count { color: var(--muted); font-weight: 500; }

/* Unlock callout */
.unlock {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #dfe6f6;
  border: 0; border-radius: var(--radius); padding: 26px 28px;
}
@media (max-width: 720px) { .unlock { grid-template-columns: 1fr; } }
.unlock h2 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.unlock .check-list { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); font-size: .92rem; }
.unlock .check-list svg { color: var(--mint-bright); }
.unlock .fine { font-size: .8rem; color: #97a3c2; text-align: center; margin-top: 8px; }

/* Report table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
table { border-collapse: collapse; width: 100%; }
table.list td, table.list th { text-align: left; padding: .7rem .6rem; border-bottom: 1px solid var(--border); font-size: .92rem; }
table.list th { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
table.list tr:last-child td { border-bottom: 0; }
table.report { font-size: .8rem; }
table.report th, table.report td { padding: .55rem .6rem; border-bottom: 1px solid var(--border); vertical-align: top; text-align: left; }
table.report th {
  position: sticky; top: 0; background: var(--surface-2); white-space: nowrap;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
}
table.report tbody tr:hover { background: color-mix(in srgb, var(--brand) 4%, transparent); }
table.report td.url { min-width: 220px; max-width: 320px; overflow-wrap: anywhere; }
table.report td.text { min-width: 170px; max-width: 260px; }
.clamp { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
td.warn, .warn { color: var(--amber); font-weight: 700; }
.code { display: inline-block; font-weight: 800; padding: .1rem .45rem; border-radius: 6px; font-variant-numeric: tabular-nums; }
.code.c2 { color: var(--mint); background: var(--mint-soft); }
.code.c3 { color: var(--amber); background: var(--amber-soft); }
.code.c4, .code.c5, .code.cerr { color: var(--red); background: var(--red-soft); }
.hop { color: var(--muted); display: inline; }
.err { color: var(--red); font-size: .9em; }
tr.state-failed, tr.state-skipped { background: color-mix(in srgb, var(--red) 5%, transparent); }

.pager { display: flex; gap: 1rem; justify-content: center; align-items: center; margin-top: 18px; font-size: .92rem; }

.locked { position: relative; margin-top: 18px; border-radius: 12px; overflow: hidden; border: 1px dashed var(--border); min-height: 240px; }
.blurred { filter: blur(5px); user-select: none; pointer-events: none; opacity: .55; }
.locked-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .6rem; text-align: center; padding: 1rem;
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.locked-overlay .lock { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--navy-900); color: var(--mint-bright); }
.locked-overlay p { margin: 0; }

/* Crawl list on home (signed in) */
.recent { margin-top: -40px; position: relative; z-index: 2; }
.recent .card { padding: 22px 24px; }

/* Error page */
.error-card { max-width: 560px; margin: 60px auto 0; text-align: center; }
.error-card h1 { font-size: 1.6rem; margin-bottom: 10px; }
.error-card p { color: var(--muted); margin-bottom: 20px; }

/* Legal pages */
.legal { max-width: 760px; margin: 40px auto 0; }
.legal h1 { font-size: 2rem; margin-bottom: 6px; }
.legal h2 { font-size: 1.2rem; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--text); margin-bottom: 10px; }
.legal ul { padding-left: 1.3rem; }
.legal .updated { color: var(--muted); margin-bottom: 24px; }
