/* Spondeo — server-rendered UI stylesheet.
   A confident, trustworthy identity aesthetic: deep ink + a single warm accent,
   real typographic hierarchy, generous spacing, rounded cards, clear focus.
   Mobile-first, safe-area aware, AA contrast, >=44px tap targets. */

:root {
  /* color system — deep ink + a single signal accent */
  --ink-900: #0c1326;   /* near-black navy, primary text on light */
  --ink-800: #16203a;
  --ink-700: #243152;
  --ink-500: #4b587a;   /* muted text */
  --ink-400: #66718f;   /* muted-er text — ≥4.5:1 on white (#6b779a was 4.43) */
  --ink-300: #9aa4c0;

  --paper: #f6f7fb;     /* page background */
  --surface: #ffffff;   /* card surface */
  --surface-2: #eef1f8; /* inset / subtle fill */
  --line: #e1e6f0;      /* hairline borders */

  --accent: #3b5bdb;    /* primary signal blue */
  --accent-600: #324dc0;
  --accent-700: #2a41a3;
  --accent-tint: #eaeefc;
  --accent-on-tint: #2a41a3; /* accent text ON accent-tint — WCAG AA in light mode */
  --btn-bg: #3b5bdb;         /* primary-button bg: keeps #fff text ≥4.5:1 in BOTH modes */
  --btn-bg-hover: #324dc0;

  --good: #147a42;      /* verified green — ≥4.5:1 as text on --good-tint (was #157f4a @ 4.45) */
  --good-strong: #157f4a; /* green bg for #fff text — AA in both modes (dark --good is too light) */
  --good-tint: #e4f5ec;
  --warn: #9a5b00;
  --warn-tint: #fdf1de;
  --bad: #b3261e;
  --bad-tint: #fbe9e7;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(12, 19, 38, 0.06), 0 1px 3px rgba(12, 19, 38, 0.05);
  --shadow: 0 6px 20px rgba(12, 19, 38, 0.08), 0 2px 6px rgba(12, 19, 38, 0.05);
  --shadow-lg: 0 18px 50px rgba(12, 19, 38, 0.14);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --maxw: 880px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink-900: #eef1f8;
    --ink-800: #dde3f0;
    --ink-700: #c4ccde;
    --ink-500: #9aa4c0;
    --ink-400: #7c87a6;
    --ink-300: #5c688a;

    --paper: #0a0f1c;
    --surface: #121a2e;
    --surface-2: #1a2440;
    --line: #25304a;

    --accent: #7b93ff;
    --accent-600: #6a83fb;
    --accent-700: #5b75f5;
    --accent-tint: #1a2547;
    --accent-on-tint: #aebbff; /* lighter accent text on the dark tint — WCAG AA */
    /* --btn-bg / --btn-bg-hover intentionally NOT lightened: #3b5bdb keeps white
       button text at ~5.6:1 on the dark page; the lightened --accent fails at 2.8:1. */

    --good: #4ed18a;
    --good-tint: #12321f;
    --warn: #e6b15a;
    --warn-tint: #3a2c12;
    --bad: #ff8a82;
    --bad-tint: #3a1714;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.55);
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 85% -10%, var(--accent-tint), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── layout scaffolding ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  /* Solid fallback first (browsers without color-mix / backdrop-filter keep an
     opaque header so content never bleeds through while scrolling). */
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
/* Where backdrop-filter is unsupported, force a fully opaque header background. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: var(--surface); }
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-decoration: none;
  font-size: 1.12rem;
  margin-right: auto;
  min-height: 44px;
}
.brand .mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--accent), var(--accent-700));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-500);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.14s, color 0.14s;
}
.nav-links a:hover { color: var(--ink-900); background: var(--surface-2); }
.nav-links a[aria-current="page"] { color: var(--accent); background: var(--accent-tint); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
  font-size: 0.85rem;
}
.lang-switch a,
.lang-switch .lang-active {
  padding: 6px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink-500);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.lang-switch a:hover { color: var(--ink-900); background: var(--surface-2); }
.lang-switch .lang-active { color: var(--accent); font-weight: 600; }

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 16px 48px;
  padding-left: calc(16px + env(safe-area-inset-left));
  padding-right: calc(16px + env(safe-area-inset-right));
}

.site-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--line);
  color: var(--ink-400);
  font-size: 0.85rem;
  background: var(--surface);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.site-footer .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}
.site-footer a { color: var(--ink-500); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }

/* ── typography ─────────────────────────────────────────────────────────── */
h1, h2, h3 { color: var(--ink-900); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 0.4em; }
h1 { font-size: clamp(1.85rem, 5vw, 2.7rem); font-weight: 800; }
h2 { font-size: clamp(1.3rem, 3.5vw, 1.6rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 650; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.05rem, 2.5vw, 1.22rem); color: var(--ink-700); line-height: 1.5; }
.muted { color: var(--ink-500); }
.small { font-size: 0.85rem; }
a { color: var(--accent); }

/* ── hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 18px 0 8px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 { max-width: 16ch; }
.hero .tagline { max-width: 32ch; }

/* ── cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}
.card + .card { margin-top: 16px; }
.card-lg { border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }

.note {
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.note .ic { flex: none; font-size: 1.1rem; line-height: 1.4; }
.note-info { background: var(--accent-tint); color: var(--ink-700); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); }
.note-warn { background: var(--warn-tint); color: var(--ink-800); border: 1px solid color-mix(in srgb, var(--warn) 30%, transparent); }

/* ── buttons ────────────────────────────────────────────────────────────── */
.btn, button.btn, a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 12px;
  font: inherit;
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.06s ease, background 0.14s, box-shadow 0.14s, border-color 0.14s;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--btn-bg); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--btn-bg-hover); }
.btn-secondary { background: var(--surface); color: var(--ink-900); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink-300); background: var(--surface-2); }
.btn-ghost { background: transparent; color: var(--accent); }
.btn-ghost:hover { background: var(--accent-tint); }
.btn-danger { background: var(--bad-tint); color: var(--bad); border-color: color-mix(in srgb, var(--bad) 30%, transparent); }
.btn-danger:hover { background: color-mix(in srgb, var(--bad) 16%, var(--surface)); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

/* ── forms ──────────────────────────────────────────────────────────────── */
.field { margin-bottom: 16px; }
label.lbl { display: block; font-weight: 600; font-size: 0.92rem; color: var(--ink-800); margin-bottom: 6px; }
.hint { font-size: 0.83rem; color: var(--ink-500); margin-top: 5px; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  font: inherit;
  color: var(--ink-900);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.14s, box-shadow 0.14s;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234b587a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint); /* solid fallback */
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 28%, transparent);
}
:focus-visible {
  outline: 3px solid var(--accent); /* solid fallback for no color-mix() */
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
  outline-offset: 2px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  margin-bottom: 10px;
  min-height: 44px;
  transition: border-color 0.14s, background 0.14s;
}
.check:hover { border-color: var(--ink-300); }
/* Selected state. `.is-checked` is toggled by JS as a fallback for browsers
   without :has() (Firefox <121, older Safari); the :has() rule keeps it instant
   where supported. Both selectors share the same styling. */
.check.is-checked,
.check:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); flex: none; }
.check .ctext { display: flex; flex-direction: column; }
.check .ctext b { color: var(--ink-900); font-weight: 600; }
.check .ctext span { font-size: 0.85rem; color: var(--ink-500); }

/* ── grid / cta ─────────────────────────────────────────────────────────── */
.cta-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 22px;
}
@media (min-width: 620px) { .cta-grid { grid-template-columns: repeat(3, 1fr); } }
.cta-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  color: var(--ink-800);
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s, box-shadow 0.16s, border-color 0.16s;
}
.cta-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.cta-card .step { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.cta-card b { color: var(--ink-900); font-size: 1.08rem; }
.cta-card span { color: var(--ink-500); font-size: 0.9rem; }

/* ── verified proof card ────────────────────────────────────────────────── */
.proof {
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--good));
}
.proof.verified { border-color: color-mix(in srgb, var(--good) 35%, var(--line)); }
.proof .badge {
  width: 72px; height: 72px;
  margin: 6px auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 34px; color: #fff;
  background: linear-gradient(150deg, var(--good), #0e6b3d);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--good) 45%, transparent);
}
.proof .badge.neutral { background: linear-gradient(150deg, var(--ink-400), var(--ink-500)); box-shadow: var(--shadow); }
.proof .claims-sentence { font-size: clamp(1.25rem, 4vw, 1.55rem); font-weight: 700; color: var(--ink-900); margin: 0 auto 14px; max-width: 24ch; line-height: 1.3; }
.proof .provenance { color: var(--ink-500); font-size: 0.92rem; max-width: 40ch; margin: 0 auto; }
.proof .provenance b { color: var(--ink-700); font-weight: 600; }
.proof .state-msg { font-size: 1.15rem; font-weight: 600; color: var(--ink-700); margin-bottom: 6px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.pill-good { background: var(--good-tint); color: var(--good); }
.pill-warn { background: var(--warn-tint); color: var(--warn); }
.pill-bad { background: var(--bad-tint); color: var(--bad); }

/* ── lists (wallet / links / mailbox / timeline) ───────────────────────── */
.list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.row .grow { flex: 1; min-width: 0; }
.row .grow b { display: block; color: var(--ink-900); }
.row .grow .sub { font-size: 0.86rem; color: var(--ink-500); }
.tag {
  display: inline-flex; align-items: center;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 3px 9px; border-radius: 7px;
  background: var(--surface-2); color: var(--ink-500); margin-right: 6px;
}
.tag.accent { background: var(--accent-tint); color: var(--accent-on-tint); }

.empty {
  text-align: center; padding: 40px 20px;
  border: 1px dashed var(--line); border-radius: var(--radius);
  color: var(--ink-500); background: var(--surface-2);
}
.empty .ic { font-size: 2rem; display: block; margin-bottom: 8px; }

/* ── stats ──────────────────────────────────────────────────────────────── */
.stat-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); margin: 4px 0 20px; }
@media (min-width: 560px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm);
}
.stat .n { font-size: 1.8rem; font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; line-height: 1.1; }
.stat .k { font-size: 0.8rem; color: var(--ink-500); margin-top: 2px; }

table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
th { color: var(--ink-500); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
td { color: var(--ink-800); }
.bd-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .bd-grid { grid-template-columns: repeat(3, 1fr); } }

code, .code {
  font-family: var(--mono); font-size: 0.88em;
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 2px 6px; border-radius: 7px; color: var(--ink-800);
  word-break: break-all;
}
.urlbox {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; margin: 10px 0;
}
.urlbox a { font-family: var(--mono); font-size: 0.9rem; word-break: break-all; }

/* ── step wizard ────────────────────────────────────────────────────────── */
.steps { display: flex; gap: 10px; margin-bottom: 22px; }
.steps .s {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--ink-400); font-weight: 600;
}
.steps .s .num {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.82rem;
  background: var(--surface-2); color: var(--ink-400); border: 1px solid var(--line);
}
.steps .s.active { color: var(--accent); }
.steps .s.active .num { background: var(--btn-bg); color: #fff; border-color: var(--btn-bg); }
.steps .s.done .num { background: var(--good-strong); color: #fff; border-color: var(--good-strong); }

.hidden { display: none !important; }

.banner {
  border-radius: 12px; padding: 12px 14px; font-size: 0.93rem; margin: 12px 0;
  display: flex; gap: 10px; align-items: flex-start;
}
.banner-err { background: var(--bad-tint); color: var(--bad); border: 1px solid color-mix(in srgb, var(--bad) 30%, transparent); }
.banner-ok { background: var(--good-tint); color: var(--good); border: 1px solid color-mix(in srgb, var(--good) 30%, transparent); }
.banner.hidden { display: none; }

.divider { height: 1px; background: var(--line); border: 0; margin: 22px 0; }

.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2.5px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.7s linear infinite; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--btn-bg); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Live link preview on /share — mirrors the verified card, calm + reassuring.
   Uses design tokens (not hardcoded hex) so it follows light/dark mode. */
.preview-card {
  margin: 16px 0 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow-sm);
}
.preview-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.preview-sentence { font-size: 1.12rem; font-weight: 650; line-height: 1.35; margin: 6px 0 12px; color: var(--ink-900); }
.preview-sentence.muted { font-weight: 500; color: var(--ink-500); }
.preview-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.preview-nopii { margin: 12px 0 0; font-size: 0.86rem; color: var(--ink-500); background: var(--surface-2); padding: 9px 12px; border-radius: 9px; line-height: 1.5; }

/* ── developers (API reference) page ──────────────────────────────────────── */
.dev-docs h2 { margin-top: 4px; }
.dev-docs h3 { margin: 18px 0 8px; }
.dev-docs p { color: var(--ink-700); }

/* code blocks for copy-paste examples */
.codeblock {
  font-family: var(--mono);
  font-size: 0.86rem;
  line-height: 1.6;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 0 0 12px;
  overflow-x: auto;
  white-space: pre;
  color: var(--ink-800);
}
.codeblock code {
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

/* endpoint table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.ep-table { min-width: 560px; }
.ep-table th, .ep-table td { padding: 12px 14px; vertical-align: top; }
.ep-table td code { word-break: break-word; }
.ep-shape { margin-top: 6px; font-size: 0.84rem; }
.ep-shape code { font-size: 0.82rem; }
.method {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--accent-tint);
  color: var(--accent-on-tint);
}
.method-get { background: var(--good-tint); color: var(--good); }
.method-del { background: var(--bad-tint); color: var(--bad); }

/* API keys section of the profile */
.keys-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.keys-head h2 { margin-bottom: 0; }
#profile-keys { margin: 12px 0 4px; }
