/* Styles for the homepage and the product pages (how-it-works, records, security,
   why-verify, legal-professionals, business, government). Until the redraft of
   September 2026 these rules were inlined in index.html; they moved here unchanged when
   the homepage's detail moved onto its own pages, followed by the rules the new pages add.
   Load order: fonts.css, site.css (header and footer), then this file. */

:root {
  --paper: #FBF8F3;
  --paper-2: #F4EFE6;
  --white: #FFFFFF;
  --ink: #151A2D;
  --ink-soft: #39415A;
  --muted: #646C7E;   /* 4.97:1 on --paper, 4.6:1 on --paper-2 (was #6B7385, 4.49:1; C1-25) */
  --ember: #E4572E;
  --ember-deep: #C7431F;
  --amber: #F2A03D;
  --verify: #1F8A5B;
  --flag: #C23B3B;
  --line: rgba(21, 26, 45, 0.12);
  --line-soft: rgba(21, 26, 45, 0.07);
  --shadow: 0 1px 2px rgba(21,26,45,.04), 0 8px 30px rgba(21,26,45,.06);
  --shadow-lg: 0 2px 6px rgba(21,26,45,.05), 0 24px 60px rgba(21,26,45,.12);
  --maxw: 1120px;
  --grad: linear-gradient(96deg, var(--ember), var(--amber));
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 640px) { body { font-size: 16px; } }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.015em; line-height: 1.1; color: var(--ink); }
p { margin: 0 0 1em; }
a { color: var(--ember-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ember-deep);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--grad); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 15.5px; font-weight: 600;
  padding: 13px 22px; border-radius: 12px; cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(228,87,46,.28); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(228,87,46,.34); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(21,26,45,.04); text-decoration: none; }
.btn-on-dark { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.18); }
.btn-on-dark:hover { background: rgba(255,255,255,.12); text-decoration: none; }

/* Header, mobile menu and footer: /assets/site.css (shared by every page). */

/* ---------- Hero ---------- */
.hero { padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 72px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(38px, 6.2vw, 66px); margin: 20px 0 22px; }
.hero .lede { font-size: clamp(17px, 2.1vw, 20px); color: var(--ink-soft); max-width: 46ch; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.hero-note .dot { margin-top: 7px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--verify); box-shadow: 0 0 0 4px rgba(31,138,91,.15); flex: none; }
.client-line { margin-top: 10px; font-size: 14px; color: var(--muted); padding-left: 15px; }

/* ---------- Audit mock card ---------- */
.audit {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 22px; font-size: 14.5px;
}
.audit-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid var(--line-soft); }
.audit-head .t { font-weight: 600; color: var(--ink); font-size: 14px; }
.tag { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px; flex: none; white-space: nowrap; }
.cite { display: flex; gap: 11px; padding: 11px 4px; border-bottom: 1px solid var(--line-soft); align-items: flex-start; }
.cite:last-child { border-bottom: 0; }
.cite .ic { width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center; margin-top: 1px; }
.cite .ic svg { width: 12px; height: 12px; }
.ic.ok { background: rgba(31,138,91,.12); }
.ic.warn { background: rgba(242,160,61,.18); }
.ic.bad { background: rgba(194,59,59,.12); }
.cite .name { font-weight: 600; color: var(--ink); }
.cite .meta { color: var(--muted); font-size: 13px; }
.cite .meta.ok b { color: var(--verify); font-weight: 600; }
.cite .meta.warn b { color: #B87614; font-weight: 600; }
.cite .meta.bad b { color: var(--flag); font-weight: 600; }
.audit-foot { margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- Generic sections ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 16px 0 14px; }
.section-head p { font-size: 18px; color: var(--ink-soft); }
.band-2 { background: var(--paper-2); }

/* Dark band */
.band-dark { background: var(--ink); color: #E7E9F0; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .eyebrow { color: var(--amber); }
.band-dark .section-head p { color: #AEB4C6; }
.band-dark .muted-d { color: #AEB4C6; }

/* ---------- Problem case row ---------- */
.case-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 24px; }
.case-card .cite-ref { font-family: var(--serif); font-size: 20px; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.case-card .court { font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 12px; }
.case-card p { color: #AEB4C6; font-size: 14.5px; margin: 0; }
.case-card em { color: #fff; font-style: italic; }
.case-card b { color: #fff; }
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 18px; margin-bottom: 42px; }
@media (max-width: 560px){ .case-grid { grid-template-columns: 1fr; } }
.prob-sub { font-size: 22px; color: #fff; margin: 8px 0 20px; }
.mini-cases { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 46px; }
.pill { font-size: 13px; color: #C7CBD6; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 8px 12px; }
.pill b { color: #fff; }
.pill em { color: #E7E9F0; font-style: italic; }
.duty { border-top: 1px solid rgba(255,255,255,.12); padding-top: 30px; max-width: 920px; }
.duty h3 { font-size: 24px; margin: 0 0 12px; }
.duty p { color: #C7CBD6; font-size: 16px; }
.duty em { color: #fff; font-style: italic; }
.duty b { color: #fff; }
.duty a { color: #fff; text-decoration: underline; text-decoration-color: rgba(242,160,61,.6); text-underline-offset: 3px; }
.duty .duty-close { font-size: 17px; color: #E7E9F0; margin-top: 12px; margin-bottom: 0; }
.duty .duty-close b { color: var(--amber); }

/* Rules-caught-up strip */
.rules { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-bottom: 46px; }
.rule { border-left: 2px solid rgba(242,160,61,.55); padding: 2px 0 2px 15px; }
.rule .j { font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 6px; }
.rule p { color: #AEB4C6; font-size: 14.5px; margin: 0; }
.rule b { color: #fff; }
/* #problem band only: case links on the dark band; five rule cards with no orphan card */
#problem .court a { color: var(--amber); text-decoration: underline; text-decoration-thickness: 1px; text-decoration-color: rgba(242,160,61,.6); text-underline-offset: 3px; }
#problem .pill a, #problem .rule a { color: #fff; text-decoration: underline; text-decoration-thickness: 1px; text-decoration-color: rgba(242,160,61,.7); text-underline-offset: 3px; }
#problem .court a:hover, #problem .pill a:hover, #problem .rule a:hover { color: #fff; text-decoration-color: #fff; }
#problem a:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 3px; }
@media (max-width: 560px) { #problem .rules { grid-template-columns: minmax(0, 1fr); } }
@media (min-width: 561px) and (max-width: 899px) {
  #problem .rules { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #problem .rules .rule:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  #problem .rules { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  #problem .rules .rule { grid-column: span 2; }
  #problem .rules .rule:nth-child(4):nth-last-child(2), #problem .rules .rule:nth-child(5):nth-last-child(1) { grid-column: span 3; }
}

/* ---------- Product split ---------- */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.products-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .products-3 { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .products { grid-template-columns: 1fr; } }
.product {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 30px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.product::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); }
.product .k { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-deep); }
.product h3 { font-size: 25px; margin: 12px 0 12px; }
.product > p { color: var(--ink-soft); margin-bottom: 18px; }
.feat { list-style: none; padding: 0; margin: 0; }
.feat li { display: flex; gap: 11px; padding: 9px 0; border-top: 1px solid var(--line-soft); font-size: 15px; color: var(--ink-soft); }
.feat li:first-child { border-top: 0; }
.feat .chk { color: var(--ember); flex: none; margin-top: 3px; }
.feat .chk svg { width: 16px; height: 16px; }

/* Inventory strip */
.strip { display: flex; flex-wrap: wrap; gap: 10px 34px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.strip div { font-size: 14.5px; color: var(--muted); }
.strip b { color: var(--ink); font-weight: 600; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .steps-3 { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step .n { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--ember-deep); width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; margin-bottom: 14px; }
.band-dark .step .n { border-color: rgba(255,255,255,.2); color: var(--amber); }
.step h3 { font-size: 18px; margin: 0 0 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.band-dark .step p { color: #AEB4C6; }
code.cmd { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em; background: rgba(228,87,46,.09); color: var(--ember-deep); border-radius: 5px; padding: 1px 6px; white-space: nowrap; }
.band-dark code.cmd { background: rgba(242,160,61,.14); color: var(--amber); }

/* ---------- Record ---------- */
.record-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 940px) { .record-grid { grid-template-columns: 1fr; } }
.rlist { list-style: none; padding: 0; margin: 0; }
.rlist li { padding: 16px 0; border-top: 1px solid var(--line); }
.rlist li:first-child { border-top: 0; padding-top: 0; }
.rlist b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; font-size: 16px; }
.rlist span { color: var(--ink-soft); font-size: 15px; }
.exhibit { background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.exhibit-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px 20px; border-bottom: 1px solid var(--line-soft); }
.exhibit-head .t { font-weight: 600; font-size: 14px; }
.exhibit-body { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .exhibit-body { grid-template-columns: 1fr; } }
.pane { padding: 18px 20px; font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }
.pane + .pane { border-left: 1px solid var(--line-soft); }
@media (max-width: 520px) { .pane + .pane { border-left: 0; border-top: 1px solid var(--line-soft); } }
.pane .lbl { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pane .ln { height: 7px; background: var(--line-soft); border-radius: 4px; margin: 8px 0; }
.pane .ln.s { width: 62%; }
.qt { background: rgba(242,160,61,.22); box-shadow: 0 0 0 2px rgba(242,160,61,.5); border-radius: 3px; padding: 1px 2px; color: var(--ink); }
.exhibit-foot { padding: 13px 20px; border-top: 1px solid var(--line-soft); font-size: 12.5px; color: var(--verify); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.exhibit-foot svg { width: 14px; height: 14px; flex: none; }
.banner { margin-top: 26px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--verify); border-radius: 12px; padding: 20px 22px; }
.banner .lbl { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.banner p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.banner b { color: var(--ink); }

/* ---------- Security features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr; } }
.fcard { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.fcard .fi { width: 42px; height: 42px; border-radius: 11px; background: rgba(228,87,46,.1); display: grid; place-items: center; margin-bottom: 16px; }
.fcard .fi svg { width: 22px; height: 22px; stroke: var(--ember-deep); }
.fcard h3 { font-size: 18.5px; margin: 0 0 9px; }
.fcard p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.pointer {
  position: relative; overflow: hidden; margin-top: 40px; padding: clamp(22px, 3vw, 30px) clamp(22px, 3.4vw, 34px);
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
}
.pointer::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--ember); }
.pointer h3 { font-size: clamp(21px, 2.2vw, 24px); line-height: 1.25; margin: 14px 0 10px; max-width: 760px; }
.pointer p { font-size: 16px; color: var(--ink-soft); margin: 0 0 16px; max-width: 680px; }
.pointer a { font-size: 15.5px; font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.pointer a::after { content: "\2192"; content: "\2192" / ""; display: inline-block; margin-left: 7px; transition: transform .15s ease; }
.pointer a:hover::after { transform: translateX(3px); }
.pointer a:focus-visible { outline: 2px solid var(--ember-deep); outline-offset: 3px; border-radius: 4px; }
@media (min-width: 861px) {
  .pointer { display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 48px; }
  .pointer > * { grid-column: 1; }
  .pointer > a { grid-column: 2; grid-row: 1 / 4; align-self: center; white-space: nowrap; }
  .pointer p { margin-bottom: 0; }
}

/* ---------- Audience ---------- */
.who { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .who { grid-template-columns: 1fr; } }
.who ul { list-style: none; padding: 0; margin: 18px 0 0; }
.who li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.who li:first-child { border-top: 0; }
.who li b { color: var(--ink); }
.who li span { color: var(--ink-soft); }
.who .chk { color: var(--verify); flex: none; margin-top: 3px; }
.who .chk svg { width: 18px; height: 18px; }

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: 88px 1fr; gap: 22px; align-items: start; max-width: 820px; }
@media (max-width: 560px) { .founder { grid-template-columns: 1fr; } }
.founder .avatar { width: 88px; height: 88px; border-radius: 20px; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--serif); font-size: 34px; }
.founder blockquote { margin: 0; font-family: var(--serif); font-size: clamp(20px, 2.6vw, 26px); line-height: 1.35; color: var(--ink); }
.founder .by { margin-top: 16px; font-size: 15px; color: var(--muted); }
.founder .by b { color: var(--ink); font-weight: 600; }

/* ---------- Final CTA ---------- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; }
.cta-final p { font-size: 18px; color: #AEB4C6; max-width: 600px; margin: 0 auto 30px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Added with the September 2026 redraft ---------- */

/* A "more" link: the homepage's bands point to the page that holds the detail. */
.more { display: inline-block; margin-top: 18px; font-size: 15.5px; font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.more::after { content: "\2192"; content: "\2192" / ""; display: inline-block; margin-left: 7px; transition: transform .15s ease; }
.more:hover::after { transform: translateX(3px); }
.band-dark .more { color: #fff; text-decoration-color: rgba(242,160,61,.7); }
.more:focus-visible { outline: 2px solid var(--ember-deep); outline-offset: 3px; border-radius: 4px; }
.band-dark .more:focus-visible { outline-color: var(--amber); }

/* Homepage: who it is for, three cards. */
.aud-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 940px) { .aud-grid { grid-template-columns: 1fr; } }
.aud { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.aud::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); }
.aud h3 { font-size: 24px; margin: 10px 0 8px; }
.aud .who-line { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.aud ul { list-style: none; padding: 0; margin: 0 0 6px; }
.aud li { padding: 8px 0 8px 22px; border-top: 1px solid var(--line-soft); font-size: 15px; color: var(--ink-soft); position: relative; }
.aud li:first-child { border-top: 0; }
.aud li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.aud .more { margin-top: auto; padding-top: 14px; }

/* Homepage: what you get, four tiles. */
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 44px; }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }
.tile { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.band-2 .tile { background: var(--white); }
.tile .k { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-deep); }
.tile h3 { font-size: 18.5px; margin: 8px 0 8px; }
.tile p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.tile a { font-weight: 600; }

/* Homepage: trust, price and founder in one band. */
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-grid .fcard .more { margin-top: 12px; font-size: 14.5px; }
.fcard .quote { font-family: var(--serif); font-size: 18px; line-height: 1.4; color: var(--ink); margin: 0 0 10px; }

/* Product and audience pages: the opening block. */
.page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 44px); }
.page-hero h1 { font-size: clamp(34px, 5.2vw, 56px); margin: 18px 0 18px; max-width: 18ch; }
.page-hero .lede { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 62ch; margin-bottom: 24px; }
.page-hero .hero-cta { margin-top: 8px; }
.page-hero + section { padding-top: clamp(24px, 4vw, 44px); }

/* Audience pages: tasks, each with an example of what someone asks. */
.tasks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 800px) { .tasks { grid-template-columns: 1fr; } }
@media (min-width: 801px) { .task:last-child:nth-child(odd) { grid-column: 1 / -1; } }
.task { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.task h3 { font-size: 19px; margin: 0 0 8px; }
.task p { font-size: 15px; color: var(--ink-soft); margin: 0 0 10px; }
.task .ask { margin: 12px 0 0; padding: 10px 14px; border-left: 2px solid var(--amber); background: var(--paper); border-radius: 0 8px 8px 0; font-size: 14.5px; color: var(--ink); font-style: italic; }
.task .ask::before { content: "Ask: "; font-style: normal; font-weight: 600; color: var(--ember-deep); }

/* Audience pages: two columns of plain lists. */
.cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 48px; }
@media (max-width: 800px) { .cols { grid-template-columns: 1fr; } }
.cols h3 { font-size: 21px; margin: 0 0 10px; }
.plain { margin: 0; padding-left: 1.2em; }
.plain li { margin: 0 0 .5em; color: var(--ink-soft); font-size: 15.5px; }
.plain li b { color: var(--ink); font-weight: 600; }

/* Audience pages: what WarmLoop does not do. */
.limits { max-width: 860px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--ember); border-radius: 12px; padding: 22px 26px; }
.limits h2 { font-size: clamp(22px, 2.6vw, 27px); margin: 0 0 12px; }
.limits p, .limits li { font-size: 15.5px; color: var(--ink-soft); }
.limits ul { margin: 0; padding-left: 1.2em; }
.limits li { margin-bottom: .5em; }
.limits p:last-child, .limits li:last-child { margin-bottom: 0; }

/* A short line of facts under a hero or a band. */
.facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 18px; font-size: 14px; color: var(--muted); }
.facts span { display: inline-flex; align-items: center; gap: 8px; }

/* Product pages made from the homepage's former sections: the first section's heading is
   the page's h1, and the section opens the page. */
.section-head h1 { font-size: clamp(32px, 4.8vw, 50px); margin: 16px 0 14px; }
.band-dark h1 { color: #fff; }
section.page-top { padding-top: clamp(48px, 7vw, 88px); }

/* The address written out in the closing band, for readers with no mail program (September 2026). */
.cta-final p a { color: #fff; text-decoration: underline; text-decoration-color: rgba(242,160,61,.7); text-underline-offset: 3px; }
