:root {
  color-scheme: light;
  --bg:          #ffffff;
  --bg-alt:      #faf6f9;
  --surface:     #ffffff;
  --surface-2:   #f6f2f6;
  --ink:         #17203d;
  --ink-2:       #48527045;
  --ink-body:    #414c6b;
  --muted:       #6f7893;
  --line:        #e7e1e9;
  --line-2:      #d2cbd6;
  --brand:       #d14894;
  --brand-deep:  #bf2a7d;
  --brand-wash:  #fdeff7;
  --navy:        #1b3d8b;
  --navy-wash:   #eaeffb;
  --pos:         #12854f;
  --score-lo:    #b06a00;
  --score-mid:   #75901c;
  --score-hi:    #12854f;
  --ring-track:  #ece7ee;
  --shadow-s:    0 1px 2px rgba(23,32,61,.05), 0 2px 8px -4px rgba(23,32,61,.12);
  --shadow-m:    0 2px 4px rgba(23,32,61,.04), 0 14px 34px -18px rgba(23,32,61,.28);
  --shadow-l:    0 4px 8px rgba(23,32,61,.05), 0 30px 60px -28px rgba(23,32,61,.34);
  --f-dis:  "Outfit", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --r-s: 8px; --r-m: 14px; --r-l: 22px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg:         #131019;
    --bg-alt:     #191521;
    --surface:    #1d1926;
    --surface-2:  #251f30;
    --ink:        #f3f0f6;
    --ink-body:   #c7c1d3;
    --muted:      #968fa6;
    --line:       #2e2839;
    --line-2:     #3c3549;
    --brand:      #ea84bc;
    --brand-deep: #f6acd5;
    --brand-wash: #4b2239;
    --navy:       #82a5f2;
    --navy-wash:  #1b2441;
    --pos:        #45c187;
    --score-lo:   #d5a054;
    --score-mid:  #a8c44a;
    --score-hi:   #45c187;
    --ring-track: #2e2839;
    --shadow-s:   0 1px 2px rgba(0,0,0,.4), 0 2px 8px -4px rgba(0,0,0,.5);
    --shadow-m:   0 2px 4px rgba(0,0,0,.4), 0 14px 34px -18px rgba(0,0,0,.7);
    --shadow-l:   0 4px 8px rgba(0,0,0,.45), 0 30px 60px -28px rgba(0,0,0,.8);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg:         #131019;
  --bg-alt:     #191521;
  --surface:    #1d1926;
  --surface-2:  #251f30;
  --ink:        #f3f0f6;
  --ink-body:   #c7c1d3;
  --muted:      #968fa6;
  --line:       #2e2839;
  --line-2:     #3c3549;
  --brand:      #e26daa;
  --brand-deep: #f193c6;
  --brand-wash: #351a2a;
  --navy:       #82a5f2;
  --navy-wash:  #1b2441;
  --pos:        #45c187;
  --score-lo:   #d5a054;
  --score-mid:  #a8c44a;
  --score-hi:   #45c187;
  --ring-track: #2e2839;
  --shadow-s:   0 1px 2px rgba(0,0,0,.4), 0 2px 8px -4px rgba(0,0,0,.5);
  --shadow-m:   0 2px 4px rgba(0,0,0,.4), 0 14px 34px -18px rgba(0,0,0,.7);
  --shadow-l:   0 4px 8px rgba(0,0,0,.45), 0 30px 60px -28px rgba(0,0,0,.8);
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--f-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.shell { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4 { font-family: var(--f-dis); margin: 0; letter-spacing: -.025em; line-height: 1.08; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.eyebrow {
  font-family: var(--f-mono); font-size: 13.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
}
.num { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-dis); font-weight: 600; font-size: 16px; letter-spacing: -.006em;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .16s cubic-bezier(.34,1.4,.64,1), box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn-p { background: var(--brand); color: #fff; box-shadow: 0 3px 14px -4px rgba(196,55,127,.6); }
.btn-p:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: 0 8px 22px -6px rgba(196,55,127,.65); }
.btn-p:active { transform: translateY(0); }
:root[data-theme="dark"] .btn-p, :root:not([data-theme="light"]) .btn-p { color: #1a0d14; }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) .btn-p { color: #fff; } }
.btn-s { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.btn-s:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 19px 36px; font-size: 18.5px; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.hdr.stuck { border-bottom-color: var(--line); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--f-dis); font-weight: 700; font-size: 19px; letter-spacing: -.03em; text-decoration: none; }
.logo-mark { width: 34px; height: 34px; flex: none; }
.hdr .logo { gap: 13px; font-size: 22px; }
.hdr .logo-mark { width: 46px; height: 46px; }
.hdr-nav { display: flex; align-items: center; gap: 28px; }
.hdr-nav a.lnk { font-size: 15.5px; color: var(--ink-body); text-decoration: none; transition: color .15s ease; }
.hdr-nav a.lnk:hover { color: var(--brand); }
@media (max-width: 860px) { .hdr-nav .lnk { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 84px; }
.hero::before {
  content: ""; position: absolute; inset: -320px -30% -120px -30%; z-index: 0;
  background:
    radial-gradient(closest-side circle at 26% 44%, color-mix(in srgb, var(--brand) 17%, transparent), transparent 100%),
    radial-gradient(closest-side circle at 74% 30%, color-mix(in srgb, var(--navy) 14%, transparent), transparent 100%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.02fr); gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 42px; } .hero { padding: 44px 0 60px; } }

.hero h1 { font-size: clamp(38px, 5.6vw, 62px); font-weight: 800; margin: 18px 0 20px; }
.hero h1 .hl { color: var(--brand); }
.hero-sub { font-size: clamp(17.5px, 2.1vw, 20px); line-height: 1.55; color: var(--ink-body); max-width: 48ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
.hero-fine { font-size: 14.5px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 18px; }
.hero-fine span { display: inline-flex; align-items: center; gap: 7px; }
.tick { width: 15px; height: 15px; flex: none; color: var(--pos); }

/* ---------- cockpit ---------- */
.cockpit {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l);
  box-shadow: var(--shadow-l); overflow: hidden;
}
.ck-head { padding: 18px 22px 16px; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ck-head h3 { font-size: 17px; font-weight: 700; }
.ck-head .hint { font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; color: var(--muted); }
.ck-body { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .ck-body { grid-template-columns: 1fr; } }
.ck-pane { padding: 18px 20px 20px; }
.ck-pane + .ck-pane { border-left: 1px solid var(--line); }
@media (max-width: 620px) { .ck-pane + .ck-pane { border-left: 0; border-top: 1px solid var(--line); } }
.ck-lab { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }

.sld { display: grid; gap: 11px; }
.sld-row { display: grid; grid-template-columns: 1fr 34px; gap: 4px 10px; align-items: center; }
.sld-row label { grid-column: 1; font-size: 13px; color: var(--ink-body); line-height: 1.25; }
.sld-row .v { grid-column: 2; font-family: var(--f-mono); font-size: 12px; color: var(--brand); text-align: right; font-variant-numeric: tabular-nums; }
.sld-row input { grid-column: 1 / -1; }
input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 18px; background: transparent; cursor: grab; margin: 0;
}
input[type=range]:active { cursor: grabbing; }
input[type=range]::-webkit-slider-runnable-track { height: 5px; border-radius: 3px; background: var(--surface-2); border: 1px solid var(--line); }
input[type=range]::-moz-range-track { height: 5px; border-radius: 3px; background: var(--surface-2); border: 1px solid var(--line); }
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--brand);
  border: 2px solid var(--surface); box-shadow: 0 1px 5px rgba(0,0,0,.28); margin-top: -7px;
  transition: transform .14s ease;
}
input[type=range]::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%; background: var(--brand); border: 2px solid var(--surface); box-shadow: 0 1px 5px rgba(0,0,0,.28);
}
input[type=range]:hover::-webkit-slider-thumb { transform: scale(1.15); }

.rank { position: relative; }
.rk {
  position: absolute; left: 0; right: 0; height: 62px;
  display: grid; grid-template-columns: 46px 1fr auto; gap: 12px; align-items: center;
  padding: 0 4px; border-radius: var(--r-m);
  transition: transform .5s cubic-bezier(.32,.72,0,1), background .3s ease;
}
.rk.moved { background: var(--brand-wash); }
.rk-name { min-width: 0; }
.rk-name b { display: block; font-family: var(--f-dis); font-weight: 600; font-size: 15px; letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rk-name span { font-family: var(--f-mono); font-size: 10.5px; color: var(--muted); letter-spacing: .04em; }
.rk-pos { font-family: var(--f-mono); font-size: 12px; color: var(--muted); text-align: right; padding-right: 2px; }
.ring { position: relative; width: 46px; height: 46px; }
.ring svg { transform: rotate(-90deg); display: block; }
.ring .val {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--f-dis); font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums;
}
.ck-foot { padding: 12px 22px 16px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); line-height: 1.5; display: flex; gap: 12px; align-items: flex-start; }
.ck-foot button {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; color: var(--brand);
  background: none; border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 11px; cursor: pointer; white-space: nowrap;
  transition: border-color .15s ease, background .15s ease;
}
.ck-foot button:hover { border-color: var(--brand); background: var(--brand-wash); }

/* ---------- sections ---------- */
section { padding: 86px 0; }
section[id] { scroll-margin-top: 84px; }
section.alt { background: var(--bg-alt); }
.sec-top { max-width: 62ch; margin-bottom: 42px; }
.sec-top h2 { font-size: clamp(29px, 4vw, 42px); font-weight: 700; margin: 14px 0 16px; max-width: 19ch; }
.sec-top h2.brk2 { max-width: 40ch; }
.sec-top h2.brk2 .nobrk { white-space: nowrap; }
@media (max-width: 480px) { .sec-top h2.brk2 .nobrk { white-space: normal; } }
.sec-top p { font-size: 18px; color: var(--ink-body); }

.cards3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px,1fr)); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l); padding: 26px 26px 28px; box-shadow: var(--shadow-s); display: grid; gap: 11px; align-content: start; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.card.us { border-color: var(--brand); border-width: 2px; padding: 25px 25px 27px; }
.card .tag { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.card.us .tag { color: var(--brand); }
.card h3 { font-size: 21px; font-weight: 700; }
.card p { font-size: 15.5px; color: var(--ink-body); line-height: 1.55; }

/* proof band */
.proof { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l); box-shadow: var(--shadow-m); overflow: hidden; }
.proof-grid { display: grid; grid-template-columns: minmax(240px,.85fr) minmax(0,1.15fr); }
@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-l { padding: 32px 30px; border-right: 1px solid var(--line); }
@media (max-width: 860px) { .proof-l { border-right: 0; border-bottom: 1px solid var(--line); } }
.proof-big { font-family: var(--f-dis); font-weight: 800; font-size: clamp(46px,7vw,66px); line-height: 1; letter-spacing: -.04em; color: var(--pos); font-variant-numeric: tabular-nums; }
.proof-l .sub { font-size: 15px; color: var(--ink-body); margin-top: 10px; }
.proof-r { padding: 26px 30px 22px; display: grid; align-content: center; gap: 16px; }
.proof-facts { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 18px 22px; }
.pf .k { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
.pf .v { font-family: var(--f-dis); font-weight: 600; font-size: 19px; letter-spacing: -.015em; margin-top: 3px; font-variant-numeric: tabular-nums; }
.risk-note { font-size: 13px; line-height: 1.5; color: var(--muted); border-top: 1px dashed var(--line-2); padding-top: 13px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 22px; counter-reset: st; }
.step { display: grid; gap: 10px; align-content: start; counter-increment: st; }
.step::before {
  content: counter(st); font-family: var(--f-dis); font-weight: 700; font-size: 14px;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand-wash); color: var(--brand); border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent);
}
.step h3 { font-size: 19px; font-weight: 700; }
.step p { font-size: 15.5px; color: var(--ink-body); line-height: 1.55; }

/* dimensions */
.dims { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 14px; }
.dim {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 22px 20px 20px;
  display: grid;
  gap: 8px;
  align-content: start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dim:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
  box-shadow: 0 16px 34px -20px color-mix(in srgb, var(--ink) 35%, transparent);
}
.dim-ico {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  margin-bottom: 2px;
}
.dim-ico svg { width: 21px; height: 21px; }
.dim b { font-family: var(--f-dis); font-weight: 600; font-size: 15.5px; }
.dim span { font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* pricing */
.price-wrap { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.82fr); gap: 48px; align-items: start; }
.price-wrap .sec-top { margin-bottom: 34px; }
@media (max-width: 900px) { .price-wrap { grid-template-columns: 1fr; gap: 32px; } }
.pbox { background: var(--surface); border: 2px solid var(--brand); border-radius: var(--r-l); padding: 30px 30px 32px; box-shadow: var(--shadow-l); display: grid; gap: 16px; }
.pbox .badge { justify-self: start; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--brand); padding: 5px 11px; border-radius: 999px; }
:root[data-theme="dark"] .pbox .badge, :root:not([data-theme="light"]) .pbox .badge { color: #1a0d14; }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) .pbox .badge { color: #fff; } }
.pbox .amt { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pbox .amt b { font-family: var(--f-dis); font-weight: 800; font-size: 50px; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.pbox .amt i { font-style: normal; font-size: 16px; color: var(--muted); }
.pbox .amt s { font-family: var(--f-mono); font-size: 16px; color: var(--muted); }
.plist { display: grid; gap: 9px; margin: 4px 0 2px; }
.plist div { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 15.5px; color: var(--ink-body); align-items: start; }
.plist svg { margin-top: 4px; }
.pnote { font-size: 13.5px; color: var(--muted); }
.compare { display: grid; gap: 14px; }
.compare h3 { font-size: 20px; font-weight: 700; margin-bottom: 2px; }
.cmp-row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.cmp-row:last-of-type { border-bottom: 0; }
.cmp-row b { font-family: var(--f-mono); font-size: 14.5px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.cmp-row.mine { color: var(--brand); font-weight: 600; }

/* faq */
.faq { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; max-width: 800px; }
details { background: var(--surface); }
summary {
  cursor: pointer; list-style: none; padding: 19px 24px; font-family: var(--f-dis); font-weight: 600; font-size: 17px;
  display: flex; justify-content: space-between; gap: 16px; align-items: center; transition: color .15s ease;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--brand); }
summary .chev { flex: none; transition: transform .25s ease; color: var(--muted); }
details[open] summary .chev { transform: rotate(180deg); color: var(--brand); }
details .ans { padding: 0 24px 21px; font-size: 15.5px; color: var(--ink-body); line-height: 1.6; max-width: 62ch; }

/* mid-page CTA strip */
.cta-strip-wrap { padding: 0 0 86px; }
.cta-strip {
  background: var(--brand-wash); border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
  border-radius: var(--r-l); padding: 34px 38px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-strip p { font-family: var(--f-dis); font-weight: 800; font-size: clamp(24px, 3.2vw, 36px); letter-spacing: -.015em; line-height: 1.15; }

/* final CTA (replaces former signup form) */
.signup { position: relative; overflow: hidden; }
.signup::before {
  content: ""; position: absolute; inset: auto -10% -320px -10%; height: 620px; z-index: 0; pointer-events: none;
  background: radial-gradient(44% 50% at 50% 78%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 72%);
}
.cta-final { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.cta-final h2.one-line { white-space: nowrap; }
.cta-final h2 { font-size: clamp(32px,5vw,54px); font-weight: 800; margin-top: 14px; }
.cta-final .lead { font-size: 20px; color: var(--ink-body); margin-top: 18px; }
@media (max-width: 560px) { .cta-final h2.one-line { white-space: normal; } }

/* footer */
footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 46px 0 40px; }
.ft-grid { display: grid; grid-template-columns: minmax(0,1.4fr) repeat(2, minmax(0,1fr)); gap: 32px; margin-bottom: 34px; }
@media (max-width: 760px) { .ft-grid { grid-template-columns: 1fr 1fr; } .ft-grid > div:first-child { grid-column: 1 / -1; } }
.ft-grid h4 { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
.ft-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ft-grid a { font-size: 15px; color: var(--ink-body); text-decoration: none; }
.ft-grid a:hover { color: var(--brand); }
.disclaimer { border-top: 1px solid var(--line); padding-top: 22px; font-size: 12.5px; line-height: 1.62; color: var(--muted); }
.disclaimer strong { color: var(--ink-body); }
.disclaimer p + p { margin-top: 10px; }

/* reveal */
html.js .rv { opacity: 0; transform: translateY(18px); }
html.js .rv.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.22,.68,0,1); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html.js .rv { opacity: 1; transform: none; }
  .rk { transition: none !important; }
}

/* ---------- legal pages ---------- */
.legal-hero { padding: 54px 0 10px; }
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero h1 { font-size: clamp(30px, 4.2vw, 44px); font-weight: 800; }
.legal-hero .updated { font-size: 14px; color: var(--muted); margin-top: 14px; }
.legal-body { padding: 40px 0 90px; }
.legal-body .prose { max-width: 74ch; display: grid; gap: 18px; }
.legal-body .prose h2 { font-size: 22px; font-weight: 700; margin-top: 8px; }
.legal-body .prose h3 { font-size: 18px; font-weight: 700; }
.legal-body .prose h4 { font-size: 15px; font-weight: 700; color: var(--ink-body); }
.legal-body .prose p { font-size: 16px; line-height: 1.7; color: var(--ink-body); }
.legal-body .prose ul, .legal-body .prose ol { margin: 0; padding-left: 22px; display: grid; gap: 8px; font-size: 16px; line-height: 1.7; color: var(--ink-body); }
.legal-body .prose ul ul, .legal-body .prose ol ul { margin-top: 8px; padding-left: 20px; }
.legal-body .prose li > p { margin: 0; }
.legal-body .prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.legal-body .prose strong { color: var(--ink); }
.legal-body .prose .lead { font-size: 17px; color: var(--ink); }
.pending-note {
  background: var(--brand-wash); border: 1px dashed color-mix(in srgb, var(--brand) 45%, transparent);
  border-radius: var(--r-m); padding: 18px 20px; font-size: 14.5px; line-height: 1.6; color: var(--ink-body);
}
.pending-note strong { color: var(--brand); }
.back-lnk { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; color: var(--muted); text-decoration: none; margin-bottom: 26px; }
.back-lnk:hover { color: var(--brand); }
