/* FaceGUID design system */

:root {
  --bg: #080e0c;
  --bg-grad: radial-gradient(1200px 700px at 20% -10%, rgba(52,211,153,0.08), transparent 60%),
             radial-gradient(900px 600px at 100% 0%, rgba(16,185,129,0.05), transparent 55%);
  --panel: #0e1714;
  --panel-2: #121e19;
  --panel-3: #16241d;
  --line: #1e3129;
  --line-2: #274036;
  --green: #34d399;
  --green-dim: #10b981;
  --green-deep: #059669;
  --green-soft: rgba(52,211,153,0.12);
  --text: #e7f2ec;
  --muted: #8fa89c;
  --muted-2: #647a70;
  --amber: #fbbf24;
  --amber-soft: rgba(251,191,36,0.12);
  --red: #f87171;
  --red-soft: rgba(248,113,113,0.12);
  --blue: #60a5fa;
  --mono: "SF Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(0,0,0,0.4), 0 8px 30px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  background-image: var(--bg-grad);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- layout ------------------------------------------------------------ */
.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 760px; }
main { padding: 28px 0 80px; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(8,14,12,0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar .inner { display: flex; align-items: center; gap: 20px; min-height: 58px; flex-wrap: wrap; }
.brand { font-size: 16px; font-weight: 650; letter-spacing: -0.01em; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand span { color: var(--green); }
.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--muted); font-size: 13.5px; font-weight: 500;
  padding: 7px 11px; border-radius: 8px;
}
.nav a:hover { color: var(--text); background: var(--panel-2); text-decoration: none; }
.nav a.active { color: var(--green); background: var(--green-soft); }

/* ---- typography -------------------------------------------------------- */
h1 { font-size: 30px; font-weight: 660; letter-spacing: -0.022em; line-height: 1.2; }
h2 { font-size: 20px; font-weight: 620; letter-spacing: -0.015em; }
h3 { font-size: 16px; font-weight: 600; }
.eyebrow {
  font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted-2);
}
.lead { color: var(--muted); font-size: 16px; line-height: 1.6; }
.dim { color: var(--muted); }
.dimmer { color: var(--muted-2); }
.small { font-size: 13px; }
.tiny { font-size: 12px; }
code, .mono { font-family: var(--mono); font-size: 0.92em; }

/* ---- panels ------------------------------------------------------------ */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.panel + .panel { margin-top: 16px; }
.panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 14px;
}
.panel-title {
  font-size: 11px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--muted-2);
}
.grid { display: grid; gap: 16px; }
/* minmax(0,…) not 1fr: a bare `1fr` track cannot shrink below its content's
   min-content width, so a single long line in a <pre> widens the whole grid and
   pushes the page sideways. The floor of 0 lets the <pre> scroll instead. */
.grid-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid > * { min-width: 0; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 18px; align-items: start; }
@media (max-width: 900px) { .split, .grid-2, .grid-3 { grid-template-columns: minmax(0, 1fr); } }

.stack { display: flex; flex-direction: column; gap: 12px; }
.row { display: flex; align-items: center; gap: 10px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wrap-row { flex-wrap: wrap; }
.spacer { flex: 1; }

/* ---- camera ------------------------------------------------------------ */
.cam {
  position: relative; width: 100%; aspect-ratio: 4/3;
  background: #050908; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line);
}
.cam video, .cam canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scaleX(-1);
}
.cam .overlay-msg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13.5px; text-align: center; padding: 20px; z-index: 2;
}
.challenge-banner {
  position: absolute; left: 0; right: 0; top: 0; z-index: 3;
  background: rgba(5,9,8,0.9); backdrop-filter: blur(6px);
  padding: 14px; text-align: center; display: none;
  border-bottom: 1px solid var(--line);
}
.challenge-banner.show { display: block; }
.challenge-banner .say {
  font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em;
}
.challenge-banner .digits {
  font-family: var(--mono); font-size: 36px; font-weight: 700; color: var(--amber);
  letter-spacing: 0.32em; margin: 2px 0 0; text-indent: 0.32em;
}
.challenge-banner .hint { font-size: 12px; color: var(--muted); }
.challenge-banner .heard {
  font-family: var(--mono); font-size: 12px; color: var(--green);
  min-height: 17px; margin-top: 3px; letter-spacing: 0.2em;
}
.phase-strip { display: flex; gap: 5px; margin-top: 10px; }
.phase-strip .p {
  flex: 1; height: 3px; border-radius: 2px; background: var(--line);
  transition: background 0.25s;
}
.phase-strip .p.done { background: var(--green-deep); }
.phase-strip .p.active { background: var(--amber); }

.statusline {
  display: flex; align-items: center; gap: 9px; margin-top: 12px;
  font-size: 13.5px; color: var(--muted); min-height: 22px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); flex: none; }
.dot.ok { background: var(--green); box-shadow: 0 0 9px var(--green); }
.dot.warn { background: var(--amber); }
.dot.err { background: var(--red); }
.dot.busy { background: var(--amber); animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ---- buttons ----------------------------------------------------------- */
button, .btn {
  font: inherit; font-size: 14px; font-weight: 600;
  border: 1px solid transparent; border-radius: 9px; padding: 10px 16px;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
  white-space: nowrap;
}
button:disabled, .btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary { background: var(--green-dim); color: #04120c; }
.btn-primary:hover:not(:disabled) { background: var(--green); text-decoration: none; }
.btn-block { width: 100%; }
.btn-lg { padding: 13px 22px; font-size: 15px; }
.btn-ghost {
  background: transparent; color: var(--muted); border-color: var(--line-2); font-weight: 550;
}
.btn-ghost:hover:not(:disabled) { color: var(--text); border-color: var(--muted-2); background: var(--panel-2); text-decoration: none; }
.btn-sm { padding: 6px 11px; font-size: 12.5px; border-radius: 7px; }
.btn-danger { background: transparent; color: var(--red); border-color: rgba(248,113,113,0.3); }
.btn-danger:hover:not(:disabled) { background: var(--red-soft); }
.btn-quiet { background: transparent; color: var(--muted-2); border-color: transparent; padding: 5px 8px; }
.btn-quiet:hover:not(:disabled) { color: var(--text); background: var(--panel-2); }

/* ---- forms ------------------------------------------------------------- */
label.field { display: block; }
.field-label {
  display: block; font-size: 11.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--muted-2); margin-bottom: 6px;
}
input[type=text], input[type=email], input[type=tel], input[type=url],
input[type=password], input[type=search], textarea, select {
  width: 100%; font: inherit; font-size: 14px;
  background: var(--panel-2); color: var(--text);
  border: 1px solid var(--line-2); border-radius: 9px; padding: 10px 12px;
  outline: none; transition: border-color 0.15s, background 0.15s;
}
input:focus, textarea:focus, select:focus { border-color: var(--green-deep); background: var(--panel-3); }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
textarea { resize: vertical; min-height: 76px; font-family: inherit; }
.input-mono { font-family: var(--mono); font-size: 13px; }
.checkbox { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; font-size: 13.5px; color: var(--muted); }
.checkbox input { margin-top: 3px; accent-color: var(--green-dim); flex: none; }

/* ---- the GUID card ----------------------------------------------------- */
.guidcard {
  background: linear-gradient(160deg, var(--panel-3), var(--panel-2));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
.guidcard.placeholder {
  background: var(--panel-2); border-style: dashed; color: var(--muted);
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 168px; font-size: 13.5px; padding: 24px;
}
.guid-value {
  font-family: var(--mono); font-size: 19px; font-weight: 600; color: var(--green);
  word-break: break-all; line-height: 1.5; letter-spacing: -0.01em;
  user-select: all; -webkit-user-select: all;
}
@media (max-width: 620px) { .guid-value { font-size: 15px; } }
.guid-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

/* ---- tags/badges ------------------------------------------------------- */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 650; padding: 3px 9px; border-radius: 999px;
  letter-spacing: 0.02em;
}
.tag-green { background: var(--green-soft); color: var(--green); }
.tag-amber { background: var(--amber-soft); color: var(--amber); }
.tag-red { background: var(--red-soft); color: var(--red); }
.tag-grey { background: var(--panel-3); color: var(--muted); }
.tag-outline { background: transparent; border: 1px solid var(--line-2); color: var(--muted); }

/* ---- lists ------------------------------------------------------------- */
.list { display: flex; flex-direction: column; gap: 9px; }
.item {
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 13px 15px;
  transition: border-color 0.15s;
}
.item:hover { border-color: var(--line-2); }
.item-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.item-title { font-weight: 600; font-size: 14.5px; }
.item-sub { font-size: 12.5px; color: var(--muted-2); margin-top: 2px; }
.item-body { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.empty {
  color: var(--muted-2); font-size: 13.5px; text-align: center;
  padding: 32px 16px; border: 1px dashed var(--line); border-radius: 10px;
}

/* revealed secret rows */
.secret-row {
  display: grid; grid-template-columns: 130px minmax(0,1fr) auto; gap: 10px; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.secret-row:last-child { border-bottom: 0; }
.secret-row .k { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.secret-row .v { font-family: var(--mono); font-size: 13.5px; word-break: break-all; color: var(--text); }
.secret-row .v.masked { color: var(--muted-2); letter-spacing: 0.1em; }
@media (max-width: 620px) { .secret-row { grid-template-columns: 1fr; gap: 3px; } }

/* ---- toast ------------------------------------------------------------- */
#toasts {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center;
  pointer-events: none; width: min(520px, calc(100vw - 32px));
}
.toast {
  background: var(--panel-3); border: 1px solid var(--line-2);
  border-radius: 10px; padding: 11px 16px; font-size: 13.5px;
  box-shadow: var(--shadow); animation: rise 0.2s ease-out;
  max-width: 100%; text-align: center;
}
.toast.ok { border-color: rgba(52,211,153,0.4); color: var(--green); }
.toast.err { border-color: rgba(248,113,113,0.4); color: var(--red); }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- modal ------------------------------------------------------------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(3,6,5,0.75); backdrop-filter: blur(3px);
  z-index: 150; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal {
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 22px; width: min(560px, 100%); box-shadow: var(--shadow);
  max-height: calc(100vh - 40px); overflow-y: auto;
}

/* ---- code blocks ------------------------------------------------------- */
pre {
  background: #060b09; border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; overflow-x: auto; font-family: var(--mono); font-size: 12.5px;
  line-height: 1.65; color: #cfe6db;
}
pre .c { color: var(--muted-2); }
pre .s { color: var(--green); }
pre .k { color: #7dd3fc; }
.codewrap { position: relative; }
.codewrap .copy { position: absolute; top: 8px; right: 8px; }

table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th, td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted-2); font-weight: 650; }
td code { color: var(--green); }
.table-wrap { overflow-x: auto; min-width: 0; }

/* ---- steps ------------------------------------------------------------- */
.steps { counter-reset: s; display: flex; flex-direction: column; gap: 14px; }
.step { display: grid; grid-template-columns: 28px 1fr; gap: 13px; align-items: start; }
.step .n {
  counter-increment: s; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.step .n::before { content: counter(s); }

hr { border: 0; border-top: 1px solid var(--line); margin: 26px 0; }

.footer {
  border-top: 1px solid var(--line); padding: 26px 0 40px;
  color: var(--muted-2); font-size: 13px;
}
.footer .inner { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

.notice {
  border-radius: 10px; padding: 12px 14px; font-size: 13.5px; line-height: 1.55;
  border: 1px solid var(--line-2); background: var(--panel-2); color: var(--muted);
}
.notice.warn { border-color: rgba(251,191,36,0.3); background: var(--amber-soft); color: #e8cf95; }
.notice.err  { border-color: rgba(248,113,113,0.3); background: var(--red-soft); color: #f5b4b4; }
.notice.ok   { border-color: rgba(52,211,153,0.3); background: var(--green-soft); color: #a7e5cc; }
.notice strong { color: inherit; font-weight: 650; }

.hide { display: none !important; }
.spin {
  width: 14px; height: 14px; border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%; animation: spin 0.7s linear infinite; flex: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- utilities (kept so no page needs an inline style attribute) -------- */
.mt-1 { margin-top: 6px; }   .mt-2 { margin-top: 10px; }  .mt-3 { margin-top: 14px; }
.mt-4 { margin-top: 20px; }  .mt-5 { margin-top: 28px; }  .mt-6 { margin-top: 40px; }
.mb-1 { margin-bottom: 6px; } .mb-2 { margin-bottom: 10px; } .mb-3 { margin-bottom: 14px; }
.mb-4 { margin-bottom: 20px; } .mb-5 { margin-bottom: 28px; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.items-start { align-items: flex-start; }
.w-full { width: 100%; }
.grow { flex: 1; min-width: 0; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.offscreen { position: fixed; opacity: 0; pointer-events: none; top: -9999px; }
.nowrap { white-space: nowrap; }
.break { word-break: break-all; }
.col { display: flex; flex-direction: column; }
.gap-1 { gap: 6px; } .gap-2 { gap: 10px; } .gap-3 { gap: 14px; }
.hero { padding: 26px 0 30px; }
.hero h1 { font-size: 38px; max-width: 18ch; }
@media (max-width: 620px) { .hero h1 { font-size: 29px; } }
.hero .lead { max-width: 60ch; margin-top: 12px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.feature { padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); }
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 13.5px; }

/* ---- proof of human, organisations, SDK docs ---------------------------- */

/* The verification popup: no site chrome, no wasted vertical space. */
body.popup main { padding: 16px 0 32px; }
body.popup .topbar .inner { height: 48px; justify-content: space-between; }
.hero-tight { padding: 8px 0 14px; }
.hero-tight h1 { font-size: 24px; }

/* Plan cards on the enterprise page. */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 820px) { .plans { grid-template-columns: minmax(0, 1fr); } }
.plan {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; cursor: pointer; transition: border-color .15s, background .15s;
}
.plan:hover { border-color: var(--line-2); }
.plan.selected { border-color: var(--green-dim); background: var(--panel-2); box-shadow: 0 0 0 1px var(--green-dim) inset; }
.plan .plan-name { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.plan .plan-price { font-size: 26px; font-weight: 700; margin: 6px 0 2px; }
.plan .plan-price span { font-size: 13px; font-weight: 500; color: var(--muted); }
.plan ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.plan li { font-size: 13px; color: var(--muted); padding-left: 18px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }

/* Usage bars: a month of verifications, drawn with divs. */
.usage { display: flex; align-items: stretch; gap: 3px; height: 96px; padding-top: 8px; }
/* Bars are full height and scaled from the bottom: a percentage height on a
   flex item does not resolve the way you would hope, and a scale does. */
.usage .bar {
  flex: 1; min-width: 3px; height: 100%;
  background: var(--green-deep); border-radius: 2px 2px 0 0; opacity: .85;
  transform-origin: bottom; transform: scaleY(0.02);
}
.usage .bar:hover { background: var(--green); opacity: 1; }
.usage .bar.empty { background: var(--line); }
.usage-legend { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted-2); margin-top: 6px; }

.meter { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; margin-top: 8px; }
.meter > i { display: block; height: 100%; background: var(--green-dim); }

/* Big stat readouts for the org dashboard. */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.stat, .plan, .feature { min-width: 0; }
.stat { background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.stat .v { font-size: 24px; font-weight: 700; font-variant-numeric: tabular-nums; }
.stat .k { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-top: 2px; }

/* Documentation: language tabs above a snippet. */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tab {
  font: inherit; font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer;
}
.tab:hover { color: var(--text); border-color: var(--line-2); }
.tab.active { background: var(--green-soft); border-color: var(--green-dim); color: var(--green); }

/* A numbered flow, drawn as a column with a connecting rule. */
.flow { display: grid; gap: 0; }
.flow .fstep { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; padding-bottom: 18px; position: relative; }
.flow .fstep:not(:last-child)::before {
  content: ""; position: absolute; left: 17px; top: 34px; bottom: 0; width: 1px; background: var(--line);
}
.flow .fnum {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--panel-3); border: 1px solid var(--line-2); color: var(--green);
  font-size: 13px; font-weight: 700; font-family: var(--mono); position: relative; z-index: 1;
}
.flow .fbody strong { display: block; margin-bottom: 3px; }
.flow .fbody { font-size: 14px; color: var(--muted); padding-top: 5px; }

/* Eight nav items do not fit a phone: let the bar grow instead of clipping. */
@media (max-width: 900px) {
  .topbar .inner { height: auto; padding: 10px 0; flex-wrap: wrap; gap: 8px 4px; }
  .nav { margin-left: 0; }
}

/* ---- sealed documents --------------------------------------------------- */
.dropzone {
  border: 1.5px dashed var(--line-2); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; color: var(--muted);
  transition: border-color .15s, background .15s;
}
.dropzone.over { border-color: var(--green-dim); background: var(--green-soft); color: var(--text); }
.dropzone .dz-mark { font-size: 26px; color: var(--muted-2); line-height: 1; margin-bottom: 8px; }
.dropzone strong { color: var(--text); }

.progress { height: 8px; border-radius: 4px; background: var(--line); overflow: hidden; }
.progress > i { display: block; height: 100%; background: var(--green-dim); width: 0; transition: width .2s; }

.doc-icon {
  width: 34px; height: 34px; flex: none; border-radius: 8px; display: grid; place-items: center;
  background: var(--panel-3); border: 1px solid var(--line-2);
  font-size: 10px; font-weight: 700; font-family: var(--mono); color: var(--green);
  text-transform: uppercase; letter-spacing: .02em;
}
.seal-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px;
  background: var(--green-soft); color: var(--green);
}
.verdict { border-radius: var(--radius); padding: 16px; border: 1px solid var(--line); }
.verdict.pass { border-color: var(--green-dim); background: var(--green-soft); }
.verdict.fail { border-color: var(--red); background: var(--red-soft); }
.verdict .big { font-size: 19px; font-weight: 680; }
.checkline { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 3px 0; }
.checkline .m { width: 16px; flex: none; text-align: center; font-weight: 700; }
.checkline .m.y { color: var(--green); }
.checkline .m.n { color: var(--red); }

/* Footer: two rows, because the legal and contact links a legitimate service
   carries do not fit on one line beside the product links. */
.footer .foot-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer .foot-note {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
}

/* The consent screens lead with the host, because the host is the part FaceGUID
   has actually verified. Give it the emphasis the eye goes to first. */
.origin-strong { color: var(--green); overflow-wrap: anywhere; }
