/* ============================================================
   The Wellness Digest — independent supplement review site
   Pure CSS, system fonts, no external dependencies.
   Clean clinical-botanical look: mint-white surface, deep teal
   brand, honey-amber accent (echoing the dropper oil).
   ============================================================ */

:root {
  --ink: #182a29;
  --bg: #f1f8f6;           /* page backdrop, soft mint-white */
  --paper: #ffffff;         /* content surface */
  --brand: #12726a;         /* deep teal brand */
  --brand-dark: #0c4f49;
  --mint: #6fa89d;          /* soft secondary */
  --mist: #e7f3ef;          /* pale mint accent surface */
  --mist-dark: #cfe6df;
  --rule: #dce8e4;          /* hairlines */
  --muted: #51635e;
  --accent: #c8842b;        /* honey-amber — used sparingly */

  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1080px;
  --readw: 720px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--brand-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.2rem; }
h3 { font-size: 1.25rem; margin-top: 1.6rem; }

p { margin: 0 0 1.1rem; }
a { color: var(--brand); text-underline-offset: 2px; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.6rem;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.read { max-width: var(--readw); margin: 0 auto; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; white-space: nowrap; flex: 0 0 auto;
}
.brand .mark { width: 30px; height: 30px; flex: 0 0 auto; color: var(--brand); }
.brand .mark svg { width: 100%; height: 100%; display: block; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark .t { font-family: var(--sans); font-weight: 800; font-size: 1.02rem; color: var(--brand-dark); letter-spacing: -0.01em; }
.brand .wordmark .s { font-family: var(--sans); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mint); margin-top: 3px; }
@media (max-width: 720px) { .brand .mark { width: 27px; height: 27px; } .brand .wordmark .t { font-size: 0.96rem; } }

.nav-links { display: flex; gap: 22px; font-family: var(--sans); font-size: 0.92rem; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand-dark); }

@media (max-width: 720px) {
  .nav { flex-direction: column; align-items: center; gap: 12px; padding: 12px 16px; }
  .nav-links { width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px 20px; font-size: 0.9rem; line-height: 1.2; }
  .nav-links a { padding: 2px 0; }
  .footer-links { gap: 10px 16px; font-size: 0.86rem; }
  .hero { padding-top: 32px; }
}

/* ---------- Buttons / CTA ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 13px 24px; border-radius: 10px; text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .18s; cursor: pointer;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 4px 14px rgba(12,79,73,.20); }
.btn-ghost { border: 1.5px solid var(--brand); color: var(--brand-dark); background: transparent; }
.btn-ghost:hover { background: rgba(18,114,106,.06); color: var(--brand-dark); }
.btn .arrow { transition: transform .18s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 28px; }
.hero .lead { font-size: 1.2rem; color: var(--muted); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
@media (max-width: 560px) {
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 0; min-width: 0; justify-content: center; padding: 13px 10px; font-size: 0.9rem; white-space: nowrap; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 14px; padding: 24px; text-decoration: none; color: var(--ink);
  display: block; transition: border-color .18s, box-shadow .18s, transform .18s;
}
a.card:hover { border-color: var(--mint); box-shadow: 0 6px 22px rgba(12,79,73,.08); transform: translateY(-2px); }
.card h3 { margin-top: 0; color: var(--brand-dark); }
.card p { margin-bottom: 0; color: var(--muted); font-size: 0.98rem; }
.card .more { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: var(--brand); margin-top: 12px; display: inline-block; }

/* ---------- Article surface ---------- */
.article {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 16px; padding: 40px; margin-top: 24px;
}
@media (max-width: 640px) { .article { padding: 24px; } }
.article ul, .article ol { margin: 1rem 0; padding-left: 1.3rem; }
.article li { margin: 0.4rem 0; }
.meta { font-family: var(--sans); font-size: 0.82rem; color: var(--muted); }

/* ---------- Pros & cons ---------- */
.pc { background: var(--paper); border: 1px solid var(--rule); border-radius: 12px; padding: 22px; }
.pc h4 { font-family: var(--sans); font-size: 1rem; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.pc.good h4 { color: var(--brand-dark); }
.pc.note h4 { color: var(--accent); }
.pc ul { list-style: none; margin: 0; padding: 0; font-size: 0.97rem; }
.pc li { position: relative; padding-left: 20px; margin: 9px 0; }
.pc.good li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.pc.note li::before { content: "•"; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }

/* ---------- FAQ (native details) ---------- */
.faq { margin: 8px 0; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 26px 4px 26px 0;
  font-family: var(--sans); font-weight: 600; color: var(--brand-dark);
  font-size: 1.2rem; line-height: 1.3;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.7rem; font-weight: 400; line-height: 1; transition: transform .2s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 60px 26px 0; color: var(--muted); font-size: 1rem; max-width: 80ch; }
@media (max-width: 720px) {
  .faq summary { padding: 20px 2px 20px 0; font-size: 1.05rem; gap: 16px; }
  .faq summary::after { font-size: 1.5rem; }
  .faq .answer { padding: 0 24px 20px 0; font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .faq summary { padding: 16px 2px 16px 0; font-size: 0.98rem; gap: 12px; }
  .faq summary::after { font-size: 1.4rem; }
  .faq .answer { padding: 0 8px 16px 0; font-size: 0.9rem; }
}
.faq-foot { font-family: var(--sans); font-size: 0.92rem; color: var(--muted); margin-top: 18px; }

/* ---------- Disclosure ---------- */
.disclosure {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 10px;
  padding: 12px 16px; font-family: var(--sans); font-size: 0.82rem; color: var(--muted); margin: 20px 0;
}
.disclosure .i { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--mist); color: var(--accent); font-weight: 700; display: grid; place-items: center; font-size: 0.72rem; }

/* ---------- Section helpers ---------- */
.section { padding: 28px 0; }
.center { text-align: center; }

/* ---------- Comparison table ---------- */
.ctable { width: 100%; border-collapse: collapse; margin: 0; font-size: 0.95rem; background: var(--paper); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
.ctable th, .ctable td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--rule); }
.ctable thead th { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--brand-dark); background: var(--bg); }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable .yes { color: var(--brand); font-weight: 700; }
.ctable .no { color: var(--accent); font-weight: 700; }

/* ---------- Breadcrumb ---------- */
.crumb { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); margin: 22px 0 0; }
.crumb a { color: var(--brand); text-decoration: none; }

/* ---------- Images / media ---------- */
.media { width: 100%; height: auto; display: block; border-radius: 14px; border: 1px solid var(--rule); }
figure { margin: 22px 0; }
figure figcaption { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); margin-top: 8px; text-align: center; }

/* ============================================================
   Home review landing page — scoped components (.lp-*, etc.)
   ============================================================ */
.wrap-lp { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.lp-section { padding: 72px 0; }
.lp-section-tight { padding: 30px 0; }
.lp-section h2, .lp-section-tight h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 0 0 1.1rem; }
.section-head { max-width: 46rem; margin: 0 0 36px; }
.section-head .eyebrow { margin-bottom: 0.5rem; }
.section-head h2 { margin: 0 0 0.6rem; }
.section-head p { color: var(--muted); font-size: 1.04rem; margin: 0; }
.read-wide { max-width: 760px; }
.faq-wide { max-width: none; }

/* hero */
.lp-hero { padding: 64px 0 36px; }
.lp-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.05rem); }
.hero-grid { display: grid; gap: 40px; align-items: center; grid-template-columns: 1.02fr 0.98fr; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; gap: 26px; } }
.hero-meta { font-family: var(--sans); font-size: 0.82rem; color: var(--muted); margin-top: 18px; }
.hero-figure {
  background: radial-gradient(120% 120% at 50% 18%, #ffffff 0%, var(--mist) 92%);
  border: 1px solid var(--rule); border-radius: 24px; padding: 16px;
  box-shadow: 0 18px 44px rgba(12,79,73,.10);
}
.hero-figure img { display: block; width: 100%; height: auto; max-height: 470px; object-fit: contain; }

/* benefit strip */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 880px) { .benefits { grid-template-columns: 1fr 1fr; } }
.benefit { background: var(--mist); border: 1px solid var(--mist-dark); border-radius: 16px; padding: 22px 22px; }
.benefit .ic { width: 28px; height: 28px; color: var(--brand); margin-bottom: 12px; }
.benefit h3 { font-family: var(--sans); font-size: 1rem; margin: 0 0 6px; color: var(--brand-dark); }
.benefit p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* verdict */
.verdict-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 860px) { .verdict-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } .verdict-main { grid-column: 1 / -1; } }
.verdict-main h2 { margin: 0 0 0.7rem; }
.verdict-lead { font-size: 1.05rem; color: var(--ink); margin-bottom: 20px; }
.score-card { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; background: var(--paper); border: 1px solid var(--rule); border-radius: 14px; padding: 18px 20px; }
.score-card .sc-label { flex: 1 0 100%; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 2px; }
.score-card .sc-score { font-family: var(--sans); font-size: 2.1rem; font-weight: 800; color: var(--brand-dark); line-height: 1; }
.score-card .sc-score span { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.score-card .stars { font-size: 1.2rem; letter-spacing: 2px; color: var(--accent); }
.score-card .stars .empty { color: var(--mist-dark); }
.verdict-grid .pc.good { background: #eaf5f1; border-color: #cfe6df; }
.verdict-grid .pc.note { background: #fbf3e8; border-color: #f0e2c9; }
.verdict-grid .pc h4 { font-size: 1.05rem; color: var(--brand-dark); }
.verdict-grid .pc.note h4 { color: #b5762a; }
.verdict-grid .pc li { padding-left: 30px; margin: 11px 0; }
.verdict-grid .pc li::before { position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; }
.verdict-grid .pc.good li::before { content: "✓"; background: var(--brand); }
.verdict-grid .pc.note li::before { content: "!"; background: var(--accent); }
@media (max-width: 560px) {
  .verdict-grid { gap: 12px; }
  .verdict-grid .pc { padding: 14px; }
  .verdict-grid .pc h4 { font-size: 0.95rem; margin: 0 0 10px; }
  .verdict-grid .pc ul { font-size: 0.8rem; }
  .verdict-grid .pc li { padding-left: 23px; margin: 8px 0; line-height: 1.32; }
  .verdict-grid .pc li::before { width: 17px; height: 17px; font-size: 10px; top: 1px; }
}

/* what's in the formula — icon cards */
.formula { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .formula { grid-template-columns: 1fr 1fr; } }
.f-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 16px; padding: 22px; }
.f-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--mist); color: var(--brand); display: grid; place-items: center; margin-bottom: 14px; }
.f-ic svg { width: 24px; height: 24px; }
.f-card .n { font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--mint); }
.f-card h3 { font-family: var(--sans); font-size: 1.04rem; margin: 4px 0 8px; color: var(--brand-dark); }
.f-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }
@media (max-width: 520px) {
  .formula { grid-template-columns: 1fr 1fr; gap: 12px; }
  .f-card { padding: 14px; border-radius: 14px; }
  .f-ic { width: 40px; height: 40px; border-radius: 11px; margin-bottom: 10px; }
  .f-card .n { font-size: 0.62rem; }
  .f-card h3 { font-size: 0.9rem; margin: 3px 0 5px; line-height: 1.2; }
  .f-card p { font-size: 0.8rem; line-height: 1.35; }
}

/* who is it for */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.aud-col { border-radius: 18px; padding: 26px; border: 1px solid var(--rule); }
.aud-best { background: #eaf5f1; border-color: #cfe6df; }
.aud-not { background: #fbf3e8; border-color: #f0e2c9; }
.aud-col h3 { font-family: var(--sans); font-size: 1.06rem; margin: 0 0 14px; }
.aud-best h3 { color: var(--brand-dark); }
.aud-not h3 { color: #a5701f; }
.aud-col ul { list-style: none; margin: 0; padding: 0; }
.aud-col li { position: relative; padding-left: 26px; margin: 11px 0; font-size: 0.97rem; color: var(--ink); }
.aud-best li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.aud-not li::before { content: "—"; position: absolute; left: 0; color: #c39a55; font-weight: 700; }
@media (max-width: 560px) {
  .audience { gap: 12px; }
  .aud-col { padding: 16px; border-radius: 14px; }
  .aud-col h3 { font-size: 0.95rem; margin: 0 0 10px; }
  .aud-col li { padding-left: 19px; margin: 8px 0; font-size: 0.82rem; line-height: 1.34; }
}

/* compare */
.compare-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 30px; align-items: stretch; }
@media (max-width: 820px) { .compare-grid { grid-template-columns: 1fr; gap: 22px; } }
.compare-facts { background: var(--brand); color: #eaf5f1; border-radius: 18px; padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.compare-facts .eyebrow { color: #bfe3d8; }
.compare-facts h3 { color: #fff; font-family: var(--sans); font-size: 1.16rem; margin: 0 0 16px; }
.compare-facts ul { list-style: none; margin: 0; padding: 0; }
.compare-facts li { display: flex; gap: 11px; align-items: flex-start; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.15); font-family: var(--sans); font-size: 0.92rem; line-height: 1.45; }
.compare-facts li:first-of-type { border-top: 0; }
.compare-facts li svg { width: 18px; height: 18px; flex: 0 0 auto; color: #bfe3d8; margin-top: 3px; }
.bottomline { background: var(--brand); border-radius: 18px; padding: 24px 28px; margin-top: 24px; }
.bottomline .eyebrow { color: #bcd6c9; }
.bottomline p { color: #eaf2ed; font-family: var(--sans); font-size: 0.98rem; margin: 0 0 16px; }
.bottomline .btn-primary { background: #fff; color: var(--brand-dark); }
.bottomline .btn-primary:hover { background: #eaf5f1; color: var(--brand-dark); box-shadow: 0 4px 14px rgba(0,0,0,.18); }

/* comparison table → cards on small screens */
@media (max-width: 560px) {
  .ctable, .ctable tbody { display: block; width: 100%; }
  .ctable thead { position: absolute; left: -9999px; }
  .ctable { border: 0; background: transparent; }
  .ctable tr { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; background: var(--paper); border: 1px solid var(--rule); border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; }
  .ctable td { display: block; border: 0; padding: 0; }
  .ctable td.feat { grid-column: 1 / -1; font-family: var(--sans); font-weight: 700; color: var(--brand-dark); font-size: 0.98rem; padding-bottom: 7px; margin-bottom: 5px; border-bottom: 1px solid var(--rule); }
  .ctable td:not(.feat) { font-size: 0.82rem; line-height: 1.3; }
  .ctable td:not(.feat)::before { content: attr(data-label); display: block; font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mint); font-weight: 700; margin-bottom: 2px; }
}

/* final CTA */
.final-cta { background: var(--mist); border: 1px solid var(--mist-dark); border-radius: 24px; padding: 52px 40px; text-align: center; }
.final-badge { max-width: 132px; margin: 0 auto 22px; }
.final-badge img { width: 100%; height: auto; display: block; }
.final-cta h2 { margin: 0 0 0.6rem; }
.final-cta .sub { color: var(--muted); max-width: 38rem; margin: 0 auto 26px; font-size: 1.04rem; }
.trust-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin: 28px 0 16px; }
.trust-point { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 0.86rem; color: var(--brand-dark); font-weight: 600; }
.trust-point svg { width: 18px; height: 18px; color: var(--brand); flex: 0 0 auto; }
.cta-disclosure { font-family: var(--sans); font-size: 0.72rem; color: var(--muted); opacity: 0.75; max-width: 40rem; margin: 16px auto 0; }
@media (max-width: 560px) { .final-cta { padding: 38px 22px; } }

/* ---------- Footer ---------- */
.site-footer { margin-top: 64px; background: var(--brand-dark); color: #d8e2db; }
.site-footer .wrap-lp { padding-top: 50px; padding-bottom: 40px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px 30px; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; gap: 22px; } }
.foot-brand .flogo { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.foot-brand .flogo .mark { width: 30px; height: 30px; color: #7fd0c4; }
.foot-brand .flogo .mark svg { width: 100%; height: 100%; display: block; }
.foot-brand .flogo .t { font-family: var(--sans); font-weight: 800; font-size: 1.05rem; color: #fff; }
.site-footer .foot-tag { color: rgba(216,226,219,0.7); font-family: var(--sans); font-size: 0.92rem; line-height: 1.55; margin: 0; max-width: 32ch; }
.foot-col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(216,226,219,0.65); margin: 0 0 12px; }
.foot-col a { display: block; color: rgba(216,226,219,0.9); text-decoration: none; font-family: var(--sans); font-size: 0.9rem; margin: 8px 0; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 34px; padding-top: 20px; }
.foot-bottom .small { margin: 0 0 8px; font-size: 0.78rem; color: rgba(216,226,219,0.6); }
.site-footer .footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin: 18px 0; font-family: var(--sans); font-size: 0.9rem; }
.site-footer .footer-links a { color: rgba(216,226,219,0.9); text-decoration: none; }
.site-footer .footer-links a:hover { color: #fff; }

/* ---------- Legal / content pages ---------- */
.page-hero { padding: 48px 0 8px; }
.page-hero h1 { margin: 0 0 0.4rem; }
.page-hero .sub { color: var(--muted); font-size: 1.06rem; margin: 0; }
.prose { max-width: var(--readw); }
.prose h2 { font-size: 1.4rem; }
.prose h3 { font-size: 1.14rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin: 0.4rem 0; }
.prose .updated { font-family: var(--sans); font-size: 0.82rem; color: var(--muted); }

/* mobile sticky CTA */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.96); border-top: 1px solid var(--rule);
    backdrop-filter: blur(8px);
  }
  .sticky-cta .btn { width: 100%; justify-content: center; }
  body { padding-bottom: 78px; }
}
