/* ============================================================
   Penny Pincher — Social Security Disability Plain-English Guide
   ============================================================ */

:root {
  --bg: #f7f4ec;
  --bg-warm: #efe9dc;
  --paper: #fffefb;
  --surface: #ffffff;
  --surface-soft: #faf7ef;
  --border: rgba(15, 23, 42, 0.10);
  --border-strong: rgba(15, 23, 42, 0.18);
  --rule: rgba(15, 23, 42, 0.08);
  --text: #0f172a;
  --text-muted: #475569;
  --text-subtle: #6b7280;
  --text-faint: #94a3b8;

  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: #eff4ff;
  --primary-fg: #ffffff;
  --accent: #0f172a;
  --gold: #d4a017;
  --gold-soft: #fdf6e3;
  --leaf: #15803d;
  --leaf-soft: #ecfdf5;
  --rose: #b91c1c;
  --rose-soft: #fef2f2;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04);
  --shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 6px 24px rgba(15, 23, 42, .06);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, .14);
  --ring: 0 0 0 4px color-mix(in srgb, var(--primary) 22%, transparent);
  --ease: cubic-bezier(.32, .72, 0, 1);

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font: 17px/1.65 var(--font-sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  background-image:
    radial-gradient(1200px 600px at 12% -5%, rgba(37,99,235,.06), transparent 60%),
    radial-gradient(900px 500px at 95% 10%, rgba(212,160,23,.08), transparent 60%);
  background-attachment: fixed;
  padding-bottom: 96px; /* room for sticky call bar */
}

img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.read-progress-track { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: transparent; z-index: 100; pointer-events: none; }
.read-progress { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), var(--gold)); transition: width 80ms linear; }

/* ===== STICKY BOTTOM CALL BAR ===== */
.sticky-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 80;
  box-shadow: 0 -8px 32px rgba(15, 23, 42, .25);
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  padding-left: 16px;
}
.sticky-call-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.sticky-call-msg {
  display: flex; flex-direction: column; line-height: 1.2;
  color: #fff; min-width: 0; flex: 1;
}
.sticky-call-msg .label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 2px;
}
.sticky-call-msg .text {
  font-size: 14px; color: rgba(255,255,255,.85); font-weight: 500;
}
.sticky-call-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #0f172a !important;
  font-weight: 800; font-size: 17px; font-variant-numeric: tabular-nums;
  padding: 14px 22px; border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(212,160,23,.4);
  transition: all 160ms var(--ease);
  white-space: nowrap;
}
.sticky-call-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,160,23,.55); color: #0f172a !important; }
.sticky-call-btn:active { transform: translateY(0); }
.sticky-call-btn svg { width: 18px; height: 18px; }
.sticky-call-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.6);
  animation: callPulse 1.6s var(--ease) infinite;
  margin-right: 4px;
}
@keyframes callPulse {
  70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
@media (max-width: 640px) {
  .sticky-call-inner { gap: 12px; padding: 0 4px; }
  .sticky-call-msg .text { display: none; }
  .sticky-call-msg .label { font-size: 10px; }
  .sticky-call-btn { padding: 12px 18px; font-size: 16px; flex-shrink: 0; }
  body { padding-bottom: 80px; }
}

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--border); }
.site-header-inner { max-width: 1240px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 16px; }
.brand-mark { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: -.01em; }
.brand-mark img { width: 26px; height: 26px; border-radius: 6px; }
.brand-mark span { font-size: 16px; }
.brand-tag { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); padding: 6px 10px; border: 1px solid var(--border); border-radius: 999px; background: var(--paper); font-weight: 600; }
.header-spacer { flex: 1; }
.header-cta,
.header-cta:link,
.header-cta:visited {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border-radius: 999px; font-weight: 700; font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
  transition: background-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.header-cta:hover,
.header-cta:focus,
.header-cta:active {
  background-color: #0f172a !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15,23,42,.35);
}
.header-cta:hover svg,
.header-cta:focus svg { color: #ffffff !important; }
.header-cta svg { width: 14px; height: 14px; }
.toc-toggle { display: none; align-items: center; gap: 6px; background: var(--paper); border: 1px solid var(--border); color: var(--text); padding: 8px 12px; border-radius: 10px; font: 600 13px var(--font-sans); cursor: pointer; }
@media (max-width: 1100px) { .toc-toggle { display: inline-flex; } }
@media (max-width: 720px) { .brand-tag { display: none; } .header-cta .label-long { display: none; } .header-cta { padding: 10px 14px; } }

.layout { max-width: 1240px; margin: 0 auto; padding: 56px 28px 80px; display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }
@media (max-width: 1100px) { .layout { grid-template-columns: 1fr; gap: 32px; padding: 36px 20px 80px; } }

.toc { position: sticky; top: 96px; max-height: calc(100vh - 120px); overflow-y: auto; padding-right: 8px; font-size: 14px; }
.toc-title { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--text-faint); font-weight: 700; margin: 0 0 14px; }
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 12px; align-items: baseline; padding: 7px 10px; border-radius: 8px; color: var(--text-muted); line-height: 1.35; transition: color 140ms var(--ease), background 140ms var(--ease); font-weight: 500; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-size: 11px; font-weight: 700; color: var(--text-faint); letter-spacing: .04em; font-variant-numeric: tabular-nums; flex-shrink: 0; width: 22px; }
.toc a:hover { color: var(--text); background: var(--surface-soft); }
.toc a.is-active { color: var(--text); background: var(--paper); box-shadow: inset 2px 0 0 var(--primary); }
.toc a.is-active::before { color: var(--primary); }
.toc-cta,
.toc-cta:link,
.toc-cta:visited {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 18px; padding: 12px 14px;
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border-radius: 10px; font-weight: 700; font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(37,99,235,.25);
  transition: background-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.toc-cta::before { content: none !important; }
.toc-cta:hover,
.toc-cta:focus,
.toc-cta:active {
  background-color: #0f172a !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15,23,42,.35);
}
.toc-cta:hover svg,
.toc-cta:focus svg { color: #ffffff !important; }
.toc-cta svg { width: 14px; height: 14px; }
@media (max-width: 1100px) { .toc { position: fixed; top: 64px; left: 0; right: 0; max-height: 70vh; background: var(--paper); border-bottom: 1px solid var(--border); padding: 20px 24px; z-index: 49; transform: translateY(-110%); transition: transform 280ms var(--ease); box-shadow: 0 20px 40px rgba(15,23,42,.12); } .toc.is-open { transform: translateY(0); } }

.article { max-width: 720px; min-width: 0; }

/* ===== HERO COVER ===== */
.cover { background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0f172a 100%); color: #fff; border-radius: var(--radius-lg); padding: 56px 48px 52px; margin-bottom: 36px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cover::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% -10%, rgba(212,160,23,.18), transparent 60%), radial-gradient(500px 400px at -10% 110%, rgba(37,99,235,.22), transparent 60%); pointer-events: none; }
.cover-eyebrow { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 28px; }
.cover-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,160,23,.25); }
.cover h1 { position: relative; font-family: var(--font-serif); font-weight: 700; font-size: clamp(38px, 5.5vw, 60px); line-height: 1.02; letter-spacing: -0.025em; margin: 0 0 22px; color: #fff; }
.cover h1 em { font-style: italic; font-weight: 500; color: var(--gold); }
.cover-sub { position: relative; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.82) !important; max-width: 580px; margin: 0; }
.cover-meta { position: relative; margin-top: 34px; display: flex; flex-wrap: wrap; gap: 20px 28px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.7); }
.cover-meta strong { color: #fff; font-weight: 600; }

/* Hero CTAs */
.cover-actions {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.cover-actions .btn-call,
.cover-actions .btn-quiz {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 17px;
  padding: 16px 26px; border-radius: 999px;
  text-decoration: none !important;
  transition: all 160ms var(--ease);
}
.cover-actions .btn-call {
  background: var(--gold); color: #0f172a !important;
  box-shadow: 0 6px 22px rgba(212,160,23,.35);
}
.cover-actions .btn-call:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,160,23,.5); color: #0f172a !important; }
.cover-actions .btn-call svg { width: 18px; height: 18px; }
.cover-actions .btn-call .num { font-variant-numeric: tabular-nums; }
.cover-actions .btn-quiz {
  background: rgba(255,255,255,.08); color: #fff !important;
  border: 1px solid rgba(255,255,255,.2);
}
.cover-actions .btn-quiz:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); color: #fff !important; }
.cover-actions .btn-quiz svg { width: 16px; height: 16px; }
@media (max-width: 640px) { .cover { padding: 40px 28px 36px; } .cover-actions .btn-call, .cover-actions .btn-quiz { width: 100%; justify-content: center; } }

/* ===== HEADS-UP NOTE ===== */
.heads-up { background: var(--gold-soft); border: 1px solid #f0d68a; border-left: 4px solid var(--gold); padding: 24px 28px; border-radius: var(--radius); margin: 0 0 56px; }
.heads-up h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.015em; color: #2d2204; }
.heads-up p { margin: 0 0 12px; color: #4a3a08 !important; line-height: 1.65; }
.heads-up p:last-child { margin-bottom: 0; }
.heads-up strong { color: #2d2204; }
.heads-up a { color: #6b4a05 !important; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ===== ARTICLE TYPOGRAPHY ===== */
.article h2.section-h { font-family: var(--font-serif); font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin: 72px 0 8px; color: var(--text); }
.article h2.section-h .num { display: block; font-family: var(--font-sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--primary); margin-bottom: 14px; }
.article .section-rule { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: 0 0 28px; }
.article h3 { font-family: var(--font-sans); font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin: 36px 0 12px; color: var(--text); }
.article h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin: 28px 0 10px; }
.article p { margin: 0 0 18px; color: var(--text); line-height: 1.7; }
.article p strong { color: var(--text); font-weight: 700; }
.article ul, .article ol { padding-left: 22px; margin: 0 0 22px; line-height: 1.7; }
.article ul li, .article ol li { margin: 0 0 8px; color: var(--text); }
.article ul li::marker { color: var(--primary); }

.article a:not(.btn-call):not(.btn-ghost):not(.btn-quiz):not(.tel-link):not(.faq-item summary):not(.toc-cta):not(.sticky-call-btn):not(.header-cta) {
  color: var(--primary); text-decoration: underline;
  text-decoration-thickness: 1.5px; text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--primary) 40%, transparent);
  font-weight: 600;
  transition: color 140ms var(--ease), text-decoration-color 140ms var(--ease), background 140ms var(--ease);
}
.article a:not(.btn-call):not(.btn-ghost):not(.btn-quiz):not(.tel-link):not(.faq-item summary):not(.toc-cta):not(.sticky-call-btn):not(.header-cta):hover {
  color: var(--primary-hover); text-decoration-color: var(--primary); background: var(--primary-soft);
}

/* Inline call link inside prose */
.article a.tel-link,
.article a.tel-link:link,
.article a.tel-link:visited {
  display: inline-flex; align-items: center; gap: 6px;
  background-color: #0f172a !important;
  color: #ffffff !important;
  font-weight: 800; font-variant-numeric: tabular-nums;
  padding: 4px 12px 4px 8px; border-radius: 999px;
  text-decoration: none !important;
  vertical-align: -2px; margin: 0 2px;
  box-shadow: 0 1px 2px rgba(15,23,42,.1), 0 4px 12px rgba(15,23,42,.18);
  transition: background-color 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.article a.tel-link::before {
  content: ''; width: 18px; height: 18px; border-radius: 999px;
  background: var(--gold) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/11px no-repeat;
  flex-shrink: 0;
}
.article a.tel-link:hover,
.article a.tel-link:focus,
.article a.tel-link:active {
  background-color: #1e293b !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(15,23,42,.15), 0 8px 20px rgba(15,23,42,.25);
}

.article blockquote { font-family: var(--font-serif); font-size: 21px; font-style: italic; font-weight: 500; color: var(--text); border-left: 3px solid var(--gold); margin: 24px 0; padding: 6px 0 6px 20px; line-height: 1.45; }

.lead { font-size: 19px; line-height: 1.55; color: var(--text-muted); margin-bottom: 24px; }

/* ===== TABLES ===== */
.tbl-wrap { margin: 22px 0 28px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); }
.tbl-wrap table { width: 100%; border-collapse: collapse; font-size: 15px; }
.tbl-wrap th { text-align: left; padding: 14px 18px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); background: var(--surface-soft); border-bottom: 1px solid var(--border); }
.tbl-wrap td { padding: 13px 18px; border-bottom: 1px solid var(--rule); color: var(--text); font-variant-numeric: tabular-nums; }
.tbl-wrap tr:last-child td { border-bottom: none; }
.tbl-wrap tr:hover td { background: var(--surface-soft); }
.tbl-wrap td:first-child, .tbl-wrap th:first-child { padding-left: 22px; }
.tbl-wrap td:last-child, .tbl-wrap th:last-child { padding-right: 22px; }
@media (max-width: 640px) { .tbl-wrap { font-size: 14px; overflow-x: auto; } .tbl-wrap th, .tbl-wrap td { padding: 12px 14px; } }

/* ===== CALLOUTS ===== */
.callout { margin: 28px 0; padding: 22px 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--paper); display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.callout svg { width: 22px; height: 22px; }
.callout p { margin: 0; line-height: 1.65; color: inherit; }
.callout p + p { margin-top: 10px; }
.callout strong { color: inherit; font-weight: 700; }
.callout--info { background: var(--primary-soft); border-color: #c7d8fb; color: #1e3a8a; }
.callout--info svg { color: var(--primary); }
.callout--warn { background: var(--rose-soft); border-color: #fecaca; color: #7f1d1d; }
.callout--warn svg { color: var(--rose); }
.callout--good { background: var(--leaf-soft); border-color: #bbf7d0; color: #14532d; }
.callout--good svg { color: var(--leaf); }
.callout--tip { background: var(--gold-soft); border-color: #f1d785; color: #5a4309; }
.callout--tip svg { color: var(--gold); }

/* ===== NUMBERED CARDS ===== */
.numbered { margin: 28px 0; display: grid; gap: 14px; }
.numbered .step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; transition: border-color 160ms var(--ease), transform 160ms var(--ease); }
.numbered .step:hover { border-color: var(--border-strong); transform: translateY(-1px); }
.numbered .step .n { width: 36px; height: 36px; border-radius: 10px; background: var(--accent); color: #fff; font-family: var(--font-serif); font-weight: 700; font-size: 16px; display: grid; place-items: center; flex-shrink: 0; }
.numbered .step h3 { margin: 0 0 6px; font-size: 17px; }
.numbered .step p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.numbered .step p + p { margin-top: 8px; }

/* ===== WORKED EXAMPLE ===== */
.example { margin: 28px 0; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.example-head { background: var(--accent); color: #fff; padding: 14px 22px; display: flex; align-items: center; gap: 10px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.example-head svg { width: 16px; height: 16px; color: var(--gold); }
.example-body { padding: 22px 24px; }
.example-body p { margin: 0 0 14px; }
.calc-line { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dashed var(--rule); font-variant-numeric: tabular-nums; font-size: 15px; }
.calc-line:last-child { border-bottom: none; }
.calc-line .lbl { color: var(--text-muted); }
.calc-line .val { font-weight: 600; }
.calc-line.total { padding-top: 14px; margin-top: 6px; border-top: 2px solid var(--text); border-bottom: none; }
.calc-line.total .lbl, .calc-line.total .val { font-weight: 700; color: var(--text); font-size: 16px; }

/* ===== STAT BAND ===== */
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.stat { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; }
.stat .stat-num { font-family: var(--font-serif); font-size: 36px; font-weight: 700; letter-spacing: -.02em; line-height: 1; color: var(--text); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.stat .stat-num em { font-style: normal; color: var(--primary); }
.stat .stat-label { font-size: 13px; line-height: 1.5; color: var(--text-muted); }
.stat .stat-source { display: block; font-size: 11px; color: var(--text-faint); margin-top: 6px; letter-spacing: .02em; }
@media (max-width: 640px) { .stat-band { grid-template-columns: 1fr; } }

/* ===== CTA BLOCKS (PITCH) ===== */
.pitch {
  margin: 56px -16px;
  background: linear-gradient(140deg, #0b1220 0%, #1e293b 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pitch::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(380px 200px at 90% 0%, rgba(212,160,23,.22), transparent 60%),
    radial-gradient(360px 240px at -10% 110%, rgba(37,99,235,.22), transparent 60%);
  pointer-events: none;
}
.pitch-eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); font-weight: 700; margin-bottom: 12px;
}
.pitch-eyebrow svg { width: 14px; height: 14px; }
.pitch h3 {
  position: relative;
  font-family: var(--font-serif); font-size: clamp(24px, 3vw, 30px);
  font-weight: 700; line-height: 1.15; letter-spacing: -.02em;
  margin: 0 0 10px; color: #fff;
}
.pitch h3 em { color: var(--gold); font-style: italic; font-weight: 500; }
.pitch p {
  position: relative;
  color: rgba(255,255,255,.82);
  margin: 0 0 22px;
  font-size: 16px; line-height: 1.55;
  max-width: 560px;
}
.pitch-actions {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.btn-call {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: #0f172a !important;
  font-weight: 800; font-size: 17px; letter-spacing: -.01em;
  padding: 16px 26px; border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 6px 22px rgba(212,160,23,.4);
  transition: all 160ms var(--ease);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,160,23,.55); color: #0f172a !important; }
.btn-call:active { transform: translateY(0); }
.btn-call svg { width: 18px; height: 18px; }
.btn-call .n { font-variant-numeric: tabular-nums; }
.btn-quiz {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); color: #fff !important;
  font-weight: 700; font-size: 15px;
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  text-decoration: none !important;
  transition: all 160ms var(--ease);
}
.btn-quiz:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); color: #fff !important; transform: translateY(-1px); }
.btn-quiz svg { width: 14px; height: 14px; }
.pitch-meta {
  position: relative;
  margin: 18px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}
@media (max-width: 640px) { .pitch { margin: 48px 0; padding: 28px 22px; } .btn-call, .btn-quiz { width: 100%; justify-content: center; } }

/* Inline pitch (lighter, in-flow) */
.pitch--inline {
  margin: 32px 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, #fffdf5 0%, #fdf6e3 100%);
  border: 1px solid #f1d785; border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  display: grid; grid-template-columns: 1fr auto;
  gap: 22px; align-items: center;
}
.pitch--inline h4 {
  margin: 0 0 4px; color: var(--text); font-size: 17px;
  font-weight: 700; letter-spacing: -.005em; text-transform: none; font-family: var(--font-sans);
}
.pitch--inline p { margin: 0; color: #4a3a08; font-size: 14.5px; line-height: 1.55; }
.pitch--inline .btn-quiz-light,
.pitch--inline .btn-quiz-light:link,
.pitch--inline .btn-quiz-light:visited {
  display: inline-flex; align-items: center; gap: 8px;
  background-color: var(--primary) !important;
  color: #ffffff !important;
  font-weight: 700; font-size: 14.5px;
  padding: 12px 20px; border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
  transition: background-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
  white-space: nowrap;
}
.pitch--inline .btn-quiz-light:hover,
.pitch--inline .btn-quiz-light:focus,
.pitch--inline .btn-quiz-light:active {
  background-color: #0f172a !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15,23,42,.35);
}
.pitch--inline .btn-quiz-light:hover svg,
.pitch--inline .btn-quiz-light:focus svg { color: #ffffff !important; }
.pitch--inline .btn-quiz-light svg { width: 14px; height: 14px; }
@media (max-width: 640px) { .pitch--inline { grid-template-columns: 1fr; gap: 14px; } .pitch--inline .btn-quiz-light { justify-self: start; } }

/* ===== SOURCES ===== */
.sources { margin: 32px 0; padding: 22px 24px; background: var(--surface-soft); border: 1px dashed var(--border-strong); border-radius: var(--radius); font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.sources h4 { margin: 0 0 10px; color: var(--text); font-size: 12px; }
.sources ol { padding-left: 20px; margin: 0; }
.sources ol li { margin: 0 0 6px; color: var(--text-muted); font-size: 13.5px; }
.sources a { color: var(--primary); word-break: break-word; }

/* ===== FAQ ===== */
.faq-list { margin: 22px 0 0; display: grid; gap: 10px; }
.faq-item { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 160ms var(--ease); }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-weight: 600; font-size: 16px; cursor: pointer; list-style: none; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; width: 14px; height: 14px; border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted); transform: rotate(45deg); transition: transform 200ms var(--ease); flex-shrink: 0; margin-right: 4px; }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-muted); line-height: 1.65; }
.faq-item .faq-body p { margin: 0 0 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ===== FOOTER ===== */
.site-footer { background: #0f172a; color: rgba(255,255,255,.7); padding: 56px 28px 40px; margin-top: 40px; }
.site-footer-inner { max-width: 1240px; margin: 0 auto; display: grid; gap: 32px; }
.foot-cta {
  background: linear-gradient(140deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: grid; grid-template-columns: 1fr auto auto; gap: 20px;
  align-items: center;
}
.foot-cta h3 { margin: 0 0 4px; font-family: var(--font-serif); font-size: 24px; font-weight: 700; letter-spacing: -.015em; color: #fff; }
.foot-cta p { margin: 0; color: rgba(255,255,255,.7); font-size: 14.5px; }
@media (max-width: 800px) { .foot-cta { grid-template-columns: 1fr; } .foot-cta .btn-call, .foot-cta .btn-quiz { justify-self: stretch; justify-content: center; } }

.foot-disclaimers { font-size: 13px; line-height: 1.6; }
.foot-disclaimers p { margin: 0 0 12px; color: rgba(255,255,255,.6); }
.foot-disclaimers strong { color: rgba(255,255,255,.85); }
.foot-disclaimers a { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 3px; }
.foot-meta { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.5); }
.foot-meta a { color: rgba(255,255,255,.7); }
.foot-meta a:hover { color: #fff; }
.foot-mark { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; }
.foot-mark img { width: 22px; height: 22px; border-radius: 5px; }
.foot-links { display: inline-flex; gap: 16px; flex-wrap: wrap; align-items: center; }
