/* ============================================================
   PaycheckExplained — site.css
   Single source of truth for tokens, chrome, and components.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --sidebar-bg: #FAFAFA;

  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.16);
  --border-input: rgba(0,0,0,0.12);
  --divider: rgba(0,0,0,0.06);
  --row-sep: rgba(0,0,0,0.05);

  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --blue-soft: #EFF6FF;
  --blue-ring: rgba(37,99,235,0.12);
  --blue-border: rgba(37,99,235,0.15);

  --navy: #1E3A5F;

  --ink: #0A0A0F;
  --ink-soft: #52525B;
  --muted: #A1A1AA;
  --disabled: #D4D4D8;

  --pos: #16A34A;
  --pos-soft: #F0F9F0;
  --warn: #D97706;
  --neg: #DC2626;

  --field-bg: #F4F4F5;
  --track: #E4E4E7;

  --font: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", Roboto, sans-serif;

  --sidebar-w: 240px;
  --content-max: 1100px;

  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-pill: 999px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
p { color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; }
input, select, textarea { font-family: inherit; }
ul { padding: 0; list-style: none; }

/* ---------- APP SHELL ---------- */
.pc-app { min-height: 100vh; }
.pc-content {
  margin-left: var(--sidebar-w);
  padding: 0 40px 64px;
}
.pc-section { max-width: var(--content-max); margin: 0 auto; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.pc-sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 40;
}
.pc-brand {
  display: block;
  padding: 22px 24px 18px;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.pc-brand .wm-light { font-weight: 400; }
.pc-brand .wm-bold { font-weight: 700; }

.pc-nav {
  flex: 1;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.pc-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-md);
  border-left: 3px solid transparent;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.12s ease, color 0.12s ease;
}
.pc-nav a svg { width: 18px; height: 18px; color: var(--muted); flex: none; transition: color 0.12s ease; }
.pc-nav a:hover { background: #F5F5F5; }
.pc-nav a.active {
  color: var(--blue);
  background: var(--blue-soft);
  border-left-color: var(--blue);
  font-weight: 600;
}
.pc-nav a.active svg { color: var(--blue); }

.pc-trust {
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin: 12px 12px 16px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pc-trust .chk { color: var(--blue); font-weight: 700; line-height: 1.4; flex: none; }
.pc-trust span.txt { color: var(--ink-soft); font-size: 11px; font-weight: 500; line-height: 1.45; }

/* ============================================================
   MOBILE CHROME (hidden on desktop)
   ============================================================ */
.pc-topbar, .pc-tabbar { display: none; }

@media (max-width: 768px) {
  .pc-sidebar { display: none; }
  .pc-content { margin-left: 0; padding: 64px 16px 80px; }

  .pc-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 52px;
    padding: 0 16px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 50;
  }
  .pc-topbar .pc-brand { padding: 0; font-size: 17px; }
  .pc-topbar .share-btn {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    background: none; border: none; color: var(--blue);
  }
  .pc-topbar .share-btn svg { width: 20px; height: 20px; }

  .pc-tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 56px;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 50;
  }
  .pc-tabbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
  }
  .pc-tabbar a svg { width: 20px; height: 20px; }
  .pc-tabbar a.active { color: var(--blue); }
}

/* ============================================================
   AD SLOTS
   ============================================================ */
.ad-slot {
  background: var(--sidebar-bg);
  border: 1px solid var(--divider);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  margin: 0 auto;
}
.ad-slot .ad-label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.ad-slot .ad-dim { font-size: 11px; color: var(--disabled); }
.ad-lead { width: 100%; max-width: 728px; height: 90px; }
.ad-rect-med { width: 300px; height: 250px; max-width: 100%; }
.ad-rect-lg { width: 336px; height: 280px; max-width: 100%; }
@media (max-width: 768px) {
  .ad-lead { max-width: 320px; height: 100px; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.h1 { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; color: var(--ink); }
.h2 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.h3 { font-size: 16px; font-weight: 600; color: var(--ink); }
.eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue);
}
.caption { font-size: 12px; color: var(--muted); }
.lead { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }

.pc-hero-sub { color: var(--ink-soft); }
.pc-section-sub { color: var(--ink-soft); }
.pc-step-body { color: var(--ink-soft); }
.pc-section p { color: var(--ink-soft); }

.section-label {
  font-size: 11px; text-transform: uppercase; font-weight: 600;
  letter-spacing: 0.06em; color: var(--muted);
  border-bottom: 1px solid var(--divider);
  padding-bottom: 8px; margin-bottom: 16px;
}

/* ============================================================
   FORM CONTROLS
   ============================================================ */
.field-label {
  display: block;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 6px;
}
.input, select.input {
  width: 100%;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border-input);
  border-radius: var(--r-md);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
  appearance: none;
  font-variant-numeric: tabular-nums;
}
.input::placeholder { color: var(--muted); }
/* hide native number spinners so $/% adornments don't collide */
.input[type="number"]::-webkit-outer-spin-button,
.input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.input[type="number"] { -moz-appearance: textfield; }
.input:focus, select.input:focus, textarea.input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-ring);
}
textarea.input { height: auto; padding: 10px 12px; line-height: 1.5; resize: vertical; }

/* dollar prefix */
.input-money { position: relative; }
.input-money::before {
  content: "$";
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 14px; pointer-events: none;
}
.input-money .input { padding-left: 24px; }
.input-pct { position: relative; }
.input-pct::after {
  content: "%";
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 14px; pointer-events: none;
}
.input-pct .input { padding-right: 26px; }

/* select chevron */
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute; right: 14px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select.input { padding-right: 34px; }

/* segmented control */
.segmented {
  display: inline-flex;
  background: var(--field-bg);
  border-radius: var(--r-md);
  padding: 3px;
  gap: 2px;
}
.segmented.full { display: flex; width: 100%; }
.segmented button {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: all 0.15s ease;
}
.segmented button.active {
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

/* slider */
.range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: var(--track); outline: none; cursor: pointer;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.range::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* toggle */
.toggle {
  position: relative;
  width: 40px; height: 24px;
  background: var(--track);
  border-radius: 999px; border: none;
  transition: background 0.2s ease;
  flex: none;
}
.toggle::after {
  content: "";
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.toggle.on { background: var(--blue); }
.toggle.on::after { transform: translateX(16px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--r-pill);
  padding: 10px 20px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }
.btn-ghost { background: #fff; border-color: var(--blue); color: var(--blue); }
.btn-ghost:hover { background: var(--blue-soft); }
.btn-block { display: flex; width: 100%; }

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.pill {
  display: inline-flex; align-items: center;
  border-radius: var(--r-pill);
  padding: 2px 10px;
  font-size: 11px; font-weight: 600;
}
.pill-pretax { background: var(--blue-soft); color: var(--blue); }
.pill-posttax { background: var(--pos-soft); color: var(--pos); }
.pill-soon { background: var(--blue-soft); color: var(--blue); padding: 3px 9px; font-size: 10px; letter-spacing: 0.04em; }
.pill-cat-tax { background: var(--blue-soft); color: var(--blue); }
.pill-cat-salary { background: var(--pos-soft); color: var(--pos); }
.pill-cat-planning { background: #FEF3E2; color: var(--warn); }

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.acc-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.acc-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left;
  padding: 16px 20px;
  background: none; border: none;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.acc-head .chev {
  width: 18px; height: 18px; flex: none; color: var(--muted);
  transition: transform 0.2s ease, color 0.2s ease;
}
.acc-item.open .acc-head .chev { transform: rotate(180deg); color: var(--blue); }
.acc-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.acc-body-inner p {
  padding: 0 20px 18px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pc-footer {
  border-top: 1px solid var(--divider);
  margin-top: 48px;
  padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: center;
}
.pc-footer .foot-links { display: flex; flex-wrap: wrap; gap: 20px; }
.pc-footer a { font-size: 13px; color: var(--ink-soft); }
.pc-footer a:hover { color: var(--blue); }
.pc-footer .foot-copy { font-size: 12px; color: var(--muted); }

/* ============================================================
   UTILITIES
   ============================================================ */
.stack-8 > * + * { margin-top: 8px; }
.stack-12 > * + * { margin-top: 12px; }
.stack-16 > * + * { margin-top: 16px; }
.stack-24 > * + * { margin-top: 24px; }
.stack-32 > * + * { margin-top: 32px; }
.stack-48 > * + * { margin-top: 48px; }
.text-pos { color: var(--pos); }
.text-neg { color: var(--neg); }
.text-soft { color: var(--ink-soft); }
.text-muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }

/* ============================================================
   CALCULATOR — layout
   ============================================================ */
.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.calc-col-right { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 24px; }
@media (max-width: 980px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-col-right { position: static; }
}

.form-block + .form-block { margin-top: 28px; }
.field-row { display: grid; gap: 14px; }
.field-row.cols-2 { grid-template-columns: 1fr 1fr; }
.field-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 480px) { .field-row.cols-2, .field-row.cols-3 { grid-template-columns: 1fr; } }

.toggle-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 0;
}
.toggle-row .tr-text .tr-title { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.toggle-row .tr-text .tr-sub { font-size: 12px; color: var(--muted); }

.k401-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.k401-num { width: 76px; }
.k401-num .input { text-align: right; }

/* ============================================================
   RESULTS TABLE
   ============================================================ */
.results-card { padding: 0; overflow: hidden; }
.results-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 24px; border-bottom: 1px solid var(--divider);
}
.results-head .rh-title { font-size: 16px; font-weight: 600; color: var(--ink); }
.results-head .rh-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500; color: var(--ink-soft);
}
.results-head .rh-badge .chk { color: var(--blue); font-weight: 700; }

.res-table { padding: 4px 0 0; }
.res-shead {
  font-size: 11px; text-transform: uppercase; font-weight: 600;
  letter-spacing: 0.06em; color: var(--muted);
  background: var(--sidebar-bg);
  height: 32px; display: flex; align-items: center;
  padding: 0 24px;
}
.res-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 44px; padding: 7px 24px;
  border-bottom: 1px solid var(--row-sep);
}
.res-row.res-big { min-height: 52px; }
.res-row.res-sub { background: var(--sidebar-bg); }
.res-label { font-size: 14px; font-weight: 400; color: var(--ink); }
.res-big .res-label { font-weight: 700; font-size: 15px; }
.res-vals { text-align: right; }
.res-per { font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }
.res-big .res-per { font-size: 16px; font-weight: 700; }
.res-ann { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; margin-top: 1px; }

/* ============================================================
   NET PAY HERO
   ============================================================ */
.net-hero {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(30,58,95,0.30);
  color: #fff;
  margin: 16px 24px 0;
}
.net-hero .nh-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.78); font-weight: 600;
}
.net-hero .nh-amount-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-top: 6px;
}
.net-hero .nh-amount {
  font-size: 42px; font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.net-hero .nh-amount .nh-dec { font-size: 24px; opacity: 0.7; font-weight: 600; }
.net-hero .nh-rate {
  background: rgba(255,255,255,0.15); color: #fff;
  border-radius: var(--r-pill); padding: 5px 12px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.net-hero .nh-keep { font-size: 12px; color: rgba(255,255,255,0.82); margin-top: 8px; }

.net-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 24px 0;
}
.net-actions a.link { color: var(--blue); font-size: 13px; font-weight: 500; }
.net-actions a.link:hover { text-decoration: underline; }
.net-pdf-wrap { padding: 12px 24px 24px; }

/* ============================================================
   STEP / TOOL / EDITORIAL CARDS
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 860px) { .grid-4 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .grid-4 { grid-template-columns: 1fr; } }

.step-num { font-size: 11px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.06em; color: var(--blue); }
.step-card .step-title { font-size: 16px; font-weight: 600; margin-top: 8px; }
.step-card .step-body { font-size: 14px; color: var(--ink-soft); margin-top: 6px; line-height: 1.55; }

.tool-card { position: relative; display: flex; flex-direction: column; gap: 10px; }
.tool-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
}
.tool-icon svg { width: 20px; height: 20px; }
.tool-card .pill-soon { position: absolute; top: 0; right: 0; }
.tool-card .tool-title { font-size: 15px; font-weight: 600; }
.tool-card .tool-body { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.tool-card .tool-link { color: var(--blue); font-size: 13px; font-weight: 500; margin-top: auto; }

.guide-box .guide-links { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.guide-box .guide-links a { color: var(--blue); font-size: 14px; font-weight: 500; }
.guide-box .guide-links a:hover { text-decoration: underline; }

.deduction-cards .ded-card .ded-list { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.deduction-cards .ded-card .ded-list li { font-size: 14px; color: var(--ink-soft); display: flex; gap: 8px; }
.deduction-cards .ded-card .ded-list li::before { content: "—"; color: var(--muted); }

/* hero */
.page-hero { padding: 40px 0 32px; }
.page-hero .h1 { max-width: 760px; }
.page-hero .lead { max-width: 680px; margin-top: 12px; }

/* article / blog */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .article-grid { grid-template-columns: 1fr; } }
.article-card { display: flex; flex-direction: column; gap: 10px; }
.article-card .ac-title { font-size: 16px; font-weight: 600; color: var(--ink); }
.article-card:hover .ac-title { color: var(--blue); }
.article-card .ac-excerpt { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
.article-card .ac-read { color: var(--blue); font-size: 13px; font-weight: 500; margin-top: auto; }

.cta-band {
  border-left: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}

/* post layout */
.post-layout { display: grid; grid-template-columns: minmax(0, 65%) minmax(0, 35%); gap: 40px; align-items: start; }
@media (max-width: 900px) { .post-layout { grid-template-columns: 1fr; } }
.post-rail { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) { .post-rail { position: static; } }
.rail-widget { border-top: 3px solid var(--blue); }
.prose { max-width: 100%; }
.prose p { font-size: 15px; line-height: 1.75; color: var(--ink); margin: 16px 0; }
.prose h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 36px 0 12px; }
.prose h3 { font-size: 17px; font-weight: 600; margin: 26px 0 8px; }
.prose ul { margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.prose ul li { font-size: 15px; line-height: 1.6; color: var(--ink); padding-left: 20px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.prose th, .prose td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.prose th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 600; }
.prose td.r, .prose th.r { text-align: right; font-variant-numeric: tabular-nums; }
.byline { font-size: 13px; color: var(--muted); margin: 8px 0 24px; }

/* supporting page prose width */
.support { max-width: 680px; margin: 0 auto; }
.support .prose p { font-size: 15px; }

/* form (contact) */
.form-field + .form-field { margin-top: 16px; }
.success-banner {
  background: var(--pos-soft); border: 1px solid rgba(22,163,74,0.2);
  color: var(--pos); border-radius: var(--r-md); padding: 12px 16px;
  font-size: 14px; font-weight: 500; margin-bottom: 20px;
  display: flex; gap: 8px; align-items: center;
}
