/*
  PDFCarry preview site.
  Same identity as the application: a deep blue-slate frame, a light working ground, status inks
  that mean something, a grotesk for wayfinding and a serif for anything quoted from a document.
  The check ledger is the one bold element and appears in the hero, the example and the legend.
*/

:root {
  --frame: #151e28;
  --frame-2: #1d2833;
  --frame-3: #27333f;
  --frame-line: #31404f;
  --frame-text: #eaf0f6;
  --frame-muted: #a9b6c3;
  --frame-accent: #6fb1ff;
  --frame-accent-ink: #0c1723;

  --ground: #e3e8ee;
  --panel: #ffffff;
  --panel-alt: #f3f5f8;
  --line: #d7dee6;
  --line-strong: #97a5b3;
  --ink: #16212c;
  --ink-soft: #55636f;
  --action: #1d5fb0;
  --action-strong: #164a8a;
  --action-tint: #e4eefb;

  --holds: #1f8a54;
  --holds-text: #1b6b43;
  --holds-tint: #e3f3ea;
  --reopened: #e6902f;
  --reopened-text: #8f4a00;
  --reopened-tint: #fdf0dd;
  --pending: #6b7884;

  --font-display: "Bahnschrift", "Avenir Next", "Segoe UI Variable Display", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --font-ui: "Segoe UI Variable Text", "Segoe UI", -apple-system, "Helvetica Neue", system-ui, sans-serif;
  --font-doc: "Cambria", "Iowan Old Style", "Georgia", "Times New Roman", serif;
  --font-code: "Cascadia Mono", "Consolas", "Menlo", monospace;

  --radius-s: 7px;
  --radius-m: 12px;
  --radius-l: 18px;
  --shadow-1: 0 1px 2px rgba(16, 24, 32, 0.08), 0 4px 14px rgba(16, 24, 32, 0.07);
  --shadow-2: 0 2px 6px rgba(16, 24, 32, 0.16), 0 14px 36px rgba(16, 24, 32, 0.14);
  --focus: var(--action);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--panel);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.008em; line-height: 1.15; }
p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--action); }
button, input { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
::selection { background: rgba(111, 177, 255, 0.35); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 760px; }
.small { font-size: 0.9rem; }
.muted { color: var(--ink-soft); }

.skip { position: absolute; left: 16px; top: -60px; padding: 8px 12px; background: var(--frame-accent); color: var(--frame-accent-ink); border-radius: var(--radius-s); z-index: 50; font-weight: 600; }
.skip:focus { top: 12px; }

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-s);
  background: var(--panel);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}
.button:hover { background: var(--panel-alt); border-color: var(--ink); }
.button.is-primary { background: var(--action); border-color: var(--action); color: #fff; }
.button.is-primary:hover { background: var(--action-strong); border-color: var(--action-strong); }
.button.is-small { min-height: 34px; padding: 4px 12px; font-size: 0.9rem; }
.button:disabled { opacity: 0.5; cursor: not-allowed; }

/* Top bar */

.top { background: var(--frame); color: var(--frame-text); --focus: var(--frame-accent); position: sticky; top: 0; z-index: 10; box-shadow: 0 1px 0 var(--frame-line); }
.top-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 64px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; color: var(--frame-text); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.top nav { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.top nav a { color: var(--frame-muted); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; padding: 6px 0; border-bottom: 2px solid transparent; }
.top nav a:hover { color: var(--frame-text); border-bottom-color: var(--frame-accent); }

/* Hero */

.hero { background: var(--frame); color: var(--frame-text); --focus: var(--frame-accent); padding: 72px 0 80px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.02em; line-height: 1.04; max-width: 16ch; }
.hero .lede { margin-top: 22px; font-size: 1.25rem; line-height: 1.45; color: var(--frame-muted); max-width: 46ch; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero .button { background: var(--frame-2); border-color: var(--frame-line); color: var(--frame-text); }
.hero .button:hover { background: var(--frame-3); border-color: var(--frame-muted); }
.hero .button.is-primary { background: var(--frame-accent); border-color: var(--frame-accent); color: var(--frame-accent-ink); }
.hero .button.is-primary:hover { background: #8cc2ff; border-color: #8cc2ff; }
.hero-note { margin-top: 20px; color: var(--frame-muted); font-size: 0.95rem; max-width: 52ch; }
.hero-note a { color: var(--frame-accent); }

.hero-figure { background: var(--frame-2); border: 1px solid var(--frame-line); border-radius: var(--radius-l); padding: 22px 24px 20px; }
.hf-grid { display: grid; gap: 10px; }
.hf-head, .hf-row { display: grid; grid-template-columns: minmax(0, 1.3fr) auto auto; gap: 14px; align-items: center; }
.hf-head span { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--frame-muted); }
.hf-head span + span { text-align: left; }
.hf-name { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.hero-figure figcaption { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--frame-line); color: var(--frame-muted); font-size: 0.95rem; line-height: 1.45; }

/* Ledger cells, shared */

.ledger { display: inline-flex; gap: 3px; padding: 3px; border-radius: 8px; background: rgba(255, 255, 255, 0.07); }
.cell {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.cell.is-holds { background: var(--holds); color: #fff; }
.cell.is-prior { background: rgba(31, 138, 84, 0.22); border-color: #3fb37a; color: #9fe3c0; }
.cell.is-reopened { background: var(--reopened); color: var(--frame-accent-ink); }
.cell.is-pending { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: var(--frame-muted); }
/* On light surfaces */
.demo .ledger, .legend-line .ledger { background: rgba(22, 33, 44, 0.06); }
.demo .cell.is-prior, .legend-line .cell.is-prior { background: var(--holds-tint); border-color: var(--holds); color: var(--holds-text); }
.demo .cell.is-pending { border-color: var(--line-strong); color: var(--pending); }
.legend-line { margin-top: 14px; font-size: 0.9rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.legend-line .cell { width: 20px; height: 20px; font-size: 12px; }

/* Sections */

.section { padding: 72px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); letter-spacing: -0.015em; }
.section-lede { margin-top: 12px; font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }
.section p + p { margin-top: 12px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: start; }
.two-col h2 + p, .two-col h3 + p, .two-col h3 + ul { margin-top: 14px; }
.two-col h3 { font-size: 1.2rem; }
.plain li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.plain li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 9px; height: 9px; border-radius: 2px; background: var(--holds); }
.plain.is-limits li::before { background: var(--reopened); }
.envelope { margin-top: 32px; }
.envelope + p { margin-top: 28px; max-width: 70ch; }
.section .small.muted { max-width: 70ch; }

dl.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px 40px; margin-top: 32px; }
dl.facts div { border-top: 3px solid var(--frame); padding-top: 12px; }
dl.facts dt { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
dl.facts dd { margin: 6px 0 0; color: var(--ink-soft); }

.availability { background: var(--ground); }
.offer { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 28px 32px; box-shadow: var(--shadow-1); }
.offer h3 { font-size: 1.2rem; }
.offer .price { margin-top: 12px; font-family: var(--font-display); font-size: 1.15rem; }
.offer .amount { font-size: 2.6rem; font-weight: 600; letter-spacing: -0.02em; display: block; line-height: 1; margin-bottom: 4px; }
.offer p + p { margin-top: 10px; }

.samples { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.samples + p { margin-top: 16px; }

.foot { background: var(--frame); color: var(--frame-muted); padding: 28px 0; font-size: 0.95rem; }
.foot a { color: var(--frame-accent); }

.prose h1 { font-size: 2.2rem; letter-spacing: -0.02em; }
.prose h2 { font-size: 1.3rem; margin-top: 32px; }
.prose p { margin-top: 12px; max-width: 70ch; }

.notice { margin-top: 16px; padding: 12px 16px; background: var(--reopened-tint); border-left: 4px solid var(--reopened); border-radius: var(--radius-s); }

/* Interactive example */

.demo-section { background: var(--ground); }
.demo { margin-top: 32px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-1); overflow: hidden; }
.demo-controls { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: flex-start; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--line); background: var(--panel-alt); }
.examples { border: 0; padding: 0; margin: 0; min-width: 0; }
.examples legend { font-family: var(--font-display); font-weight: 600; margin-bottom: 8px; padding: 0; }
.examples-list { display: flex; flex-wrap: wrap; gap: 8px; }
.examples-list label { position: relative; }
.examples-list input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.examples-list span { display: block; padding: 7px 14px; border: 1.5px solid var(--line-strong); border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; background: var(--panel); transition: background-color 120ms ease, color 120ms ease; }
.examples-list input:checked + span { background: var(--frame); color: var(--frame-text); border-color: var(--frame); }
.examples-list input:focus-visible + span { outline: 2px solid var(--action); outline-offset: 2px; }

.steps { display: flex; flex-wrap: wrap; gap: 6px; counter-reset: step; }
.steps li { display: flex; align-items: center; }
.steps li + li::before { content: ""; width: 14px; height: 2px; background: var(--line-strong); margin: 0 2px; border-radius: 1px; }
.steps button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease;
}
.steps button .n { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; border-radius: 50%; background: var(--panel-alt); border: 1.5px solid var(--line-strong); font-size: 0.85rem; }
.steps button:hover { border-color: var(--ink); }
.steps button[aria-current="step"] { background: var(--frame); color: var(--frame-text); border-color: var(--frame); }
.steps button[aria-current="step"] .n { background: var(--frame-accent); color: var(--frame-accent-ink); border-color: var(--frame-accent); }

.demo-status { padding: 10px 28px; margin: 0; font-size: 0.95rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); }

.demo-panes { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1.15fr); }
.demo-panes > section { padding: 22px 24px 28px; min-width: 0; }
.demo-panes > section + section { border-left: 1px solid var(--line); }
.demo-panes h3 { font-size: 1.05rem; }
.pane-title-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.version-toggle { display: inline-flex; gap: 4px; padding: 3px; border-radius: var(--radius-s); background: var(--panel-alt); border: 1px solid var(--line); }
.version-toggle button { border: 0; background: transparent; padding: 3px 10px; border-radius: 5px; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--ink-soft); cursor: pointer; }
.version-toggle button[aria-pressed="true"] { background: var(--frame); color: var(--frame-text); }
.version-toggle button:disabled { opacity: 0.45; cursor: not-allowed; }

.paper { margin-top: 16px; background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow-2); border-radius: 3px; padding: 30px 28px 34px; font-family: var(--font-doc); line-height: 1.6; min-height: 300px; }
.paper h4 { font-family: var(--font-doc); font-weight: 700; font-size: 1.35rem; margin: 0 0 12px; letter-spacing: 0; }
.paper h5 { font-family: var(--font-doc); font-weight: 700; font-size: 1.1rem; margin: 18px 0 8px; letter-spacing: 0; }
.paper p { margin: 0 0 12px; }
.paper .paper-figure { margin: 16px 0 0; }
.paper .paper-image { height: 84px; border: 1.5px dashed var(--line-strong); border-radius: 4px; background: repeating-linear-gradient(135deg, var(--panel-alt) 0 8px, var(--panel) 8px 16px); }
.paper .paper-figure figcaption { margin-top: 6px; font-size: 0.9rem; color: var(--ink-soft); font-family: var(--font-ui); }
.paper mark { background: var(--reopened-tint); color: inherit; box-shadow: inset 0 -2px 0 var(--reopened); padding: 0 2px; }
.paper .paper-version { font-family: var(--font-ui); font-size: 0.85rem; color: var(--ink-soft); margin: -8px 0 14px; }
.paper .is-moved { box-shadow: inset 3px 0 0 var(--reopened); padding-left: 10px; margin-left: -13px; }

.items { margin-top: 12px; border-top: 1px solid var(--line); }
.items li { border-bottom: 1px solid var(--line); }
.items button.item-row {
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  padding: 12px 10px;
  border-radius: var(--radius-s);
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: background-color 120ms ease;
}
.items button.item-row:hover { background: var(--panel-alt); }
.items button.item-row[aria-pressed="true"] { background: var(--action-tint); box-shadow: inset 3px 0 0 var(--action); }
.items .name { font-family: var(--font-display); font-weight: 600; }
.items .name .where { font-family: var(--font-ui); font-weight: 400; color: var(--ink-soft); font-size: 0.9rem; margin-left: 6px; }
.items .excerpt { font-family: var(--font-doc); color: var(--ink); font-size: 0.98rem; overflow-wrap: anywhere; }
.items .excerpt.is-empty { font-style: italic; color: var(--ink-soft); }
.items .row-status { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 4px; font-size: 0.85rem; color: var(--ink-soft); }

.demo-panel h3:focus { outline: none; }
.demo-panel .panel-lede { margin-top: 10px; color: var(--ink-soft); }
.demo-panel .panel-body { margin-top: 16px; }
.demo-panel p + p { margin-top: 10px; }
.check-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 0.95rem; }
.check-table th, .check-table td { text-align: left; vertical-align: top; padding: 8px 10px 8px 0; border-bottom: 1px solid var(--line); }
.check-table th { font-family: var(--font-display); font-weight: 600; color: var(--ink-soft); font-size: 0.9rem; }
.check-table .cell { margin-right: 6px; vertical-align: middle; }
.check-table .reason { color: var(--ink-soft); font-size: 0.9rem; display: block; margin-top: 2px; }
.changes li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.changes li:first-child { border-top: 1px solid var(--line); }

.field { display: flex; flex-direction: column; gap: 4px; margin-top: 14px; }
.field label { font-family: var(--font-display); font-weight: 600; }
.field input[type="text"] { width: 100%; min-height: 40px; padding: 7px 10px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-s); background: var(--panel); }
.field input[type="text"]:focus-visible { outline: none; border-color: var(--action); box-shadow: 0 0 0 3px var(--action-tint); }
.field .hint { font-size: 0.9rem; color: var(--ink-soft); }
.choice { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; }
.choice input { margin: 4px 0 0; width: 17px; height: 17px; accent-color: var(--action); flex: none; }
.choice .choice-hint { display: block; font-size: 0.9rem; color: var(--ink-soft); }
.field-error { color: #b3212f; font-weight: 600; font-size: 0.95rem; margin-top: 8px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; }

.message { margin-top: 14px; padding: 12px 16px; border-left: 4px solid var(--line-strong); background: var(--panel-alt); border-radius: var(--radius-s); }
.message.is-success { border-left-color: var(--holds); background: var(--holds-tint); }
.message.is-warning { border-left-color: var(--reopened); background: var(--reopened-tint); }
.message.is-info { border-left-color: var(--action); background: var(--action-tint); }
.message p + p { margin-top: 8px; }

.proposal { margin-top: 14px; border: 1px solid var(--reopened); background: var(--reopened-tint); border-radius: var(--radius-s); padding: 12px 16px; }
.proposal .doc-inline { display: block; font-family: var(--font-doc); margin: 4px 0 8px; }

pre.manifest { margin: 14px 0 0; padding: 14px 16px; background: var(--frame); color: var(--frame-text); border-radius: var(--radius-s); font-family: var(--font-code); font-size: 0.8rem; line-height: 1.5; overflow: auto; max-height: 360px; }

.purpose { margin-top: 14px; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 14px 18px; }
.purpose h4 { font-size: 1rem; }
.purpose p { color: var(--ink-soft); margin-top: 6px; font-size: 0.95rem; }
.purpose .button { margin-top: 10px; }

/* Responsive */

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { max-width: none; }
  .demo-panes { grid-template-columns: 1fr; }
  .demo-panes > section + section { border-left: 0; border-top: 1px solid var(--line); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .section { padding: 52px 0; }
  .hero { padding: 48px 0 56px; }
  .top-inner { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 20px; }
  .demo-controls, .demo-status { padding-inline: 18px; }
  .demo-panes > section { padding: 18px; }
  .paper { padding: 22px 18px 26px; }
  .hf-head, .hf-row { grid-template-columns: minmax(0, 1fr) auto auto; gap: 8px; }
  .cell { width: 20px; height: 20px; font-size: 12px; }
  .offer { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .cell, .steps button, .examples-list span, .items button.item-row { transition: none; }
}

/* Equivalent classes for the strict content security policy. */
.panel-item-title { margin-top:18px; }
.space-top-small { margin-top:8px; }
.space-top { margin-top:16px; }
.review-fields { border:0; padding:0; margin:0; }
.review-fields legend { font-family:var(--font-display); font-weight:600; padding:0; }

.vh-step { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
section[id] { scroll-margin-top:88px; }
@media (max-width:640px) { section[id] { scroll-margin-top:160px; } }
[hidden] { display: none !important; }
button:disabled { cursor: not-allowed; opacity: .6; }

/* Billing: standing in the ledger's notation, two distinct codes, one hatched test-mode stripe. */

.billing .section-lede { margin-top: 14px; }
.billing section { margin-top: 40px; }
.billing section + section { padding-top: 32px; border-top: 1px solid var(--line); }
.billing h2 { margin-top: 0; }
.billing h3 { font-size: 1.1rem; }
.billing p + p { margin-top: 12px; }
.billing .actions { margin-top: 18px; }
.billing .message { max-width: 70ch; }
.button.is-danger { color: #b3212f; border-color: #b3212f; }
.button.is-danger:hover { background: #fcebed; border-color: #b3212f; }
.message.is-error { border-left-color: #b3212f; background: #fcebed; }

.testmode { position: relative; margin-top: 24px; padding: 14px 18px 14px 32px; background: var(--reopened-tint); border-radius: var(--radius-s); overflow: hidden; max-width: 70ch; }
.testmode::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 16px; background: repeating-linear-gradient(135deg, var(--reopened) 0 7px, var(--frame) 7px 14px); }
.testmode strong { font-family: var(--font-display); }

.standing { display: flex; align-items: flex-start; gap: 14px; margin-top: 0; font-size: 1.15rem; line-height: 1.45; max-width: 70ch; }
.standing:focus { outline: none; }
.standing .cell { flex: none; width: 34px; height: 34px; border-radius: 8px; font-size: 19px; margin-top: 1px; background: transparent; }
.standing .cell.is-holds { background: var(--holds); color: #fff; }
.standing .cell.is-reopened { background: var(--reopened); color: var(--frame-accent-ink); }
.standing .cell.is-pending { border-color: var(--line-strong); color: var(--pending); }

.credential { margin-top: 22px; padding: 4px 0 4px 20px; border-left: 4px solid var(--frame); max-width: 70ch; }
.credential.is-recovery { border-left-color: var(--reopened); }
.credential h3 + p { margin-top: 6px; color: var(--ink-soft); }
.code-box { margin-top: 12px; padding: 12px 14px; background: var(--panel-alt); border: 1px solid var(--line); border-radius: var(--radius-s); font-family: var(--font-code); font-size: 0.95rem; line-height: 1.5; overflow-wrap: anywhere; user-select: all; }
.code-box code { font-family: inherit; }
.code-box:empty::before { content: "Not issued yet"; color: var(--ink-soft); font-family: var(--font-ui); font-style: italic; user-select: none; }
.credential .actions { margin-top: 10px; }

.billing .field { max-width: 70ch; }
.billing .field input[aria-invalid="true"] { border-color: #b3212f; }
.billing .field-error[hidden] { display: none; }

/* Customer guide */

.guide .prose-lede { margin-top: 14px; font-size: 1.15rem; color: var(--ink-soft); max-width: 62ch; }
.guide ol.sequence { margin-top: 12px; padding-left: 26px; list-style: decimal; max-width: 70ch; }
.guide ol.sequence li { margin-bottom: 8px; padding-left: 4px; }
.guide ol.sequence li::marker { font-family: var(--font-display); font-weight: 700; color: var(--action); }
.guide ul.plain { margin-top: 12px; max-width: 70ch; }
.guide .notice { max-width: 70ch; }
