/* ==========================================================================
   LeanBurn Drops - leanburnofficial.com
   Theme: "Sapphire Ember" - editorial clinical wellness journal
   Methodology: lb- flat single-hyphen component classes, descendant child
   styling, is-/has- state hooks, lb-wrap/lb-cols layout primitives,
   :root token scales, section-grouped cascade (no @layer), 2-space indent.
   ========================================================================== */

/* -- tokens ---------------------------------------------------------------- */
:root {
  --ink: #16203a;
  --ink-soft: #515b76;
  --ink-faint: #8b93a6;
  --sapphire: #163a8c;
  --sapphire-bright: #2f59df;
  --sapphire-deep: #0e2050;
  --ember: #ef5a1a;
  --ember-soft: #ff7a3c;
  --ember-deep: #c8430c;
  --gold: #e0a23a;
  --paper: #f6f4ef;
  --paper-2: #efece4;
  --card: #ffffff;
  --line: #e3ddd0;
  --line-strong: #cfc7b6;
  --sky: #eaf0fe;
  --ok: #1f8a5b;

  --shadow-sm: 0 1px 2px rgba(20, 32, 58, .06), 0 2px 8px rgba(20, 32, 58, .05);
  --shadow-md: 0 10px 30px rgba(14, 32, 80, .10);
  --shadow-lg: 0 24px 60px rgba(14, 32, 80, .16);

  --r-sm: 7px;
  --r-md: 12px;
  --r-lg: 20px;

  --wrap: 1160px;
  --wrap-tight: 880px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* -- reset ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sapphire-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 600; }
button { font-family: inherit; }

/* -- type ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.06rem; font-family: var(--sans); font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1rem; }
.lb-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember-deep);
}
.lb-eyebrow.is-cool { color: var(--sapphire-bright); }

/* -- layout primitives ----------------------------------------------------- */
.lb-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.lb-wrap.is-tight { max-width: var(--wrap-tight); }
.lb-section { padding: 64px 0; }
.lb-section.is-pad-lg { padding: 86px 0; }
.lb-section.is-paper2 { background: var(--paper-2); }
.lb-cols { display: grid; gap: 26px; }
@media (min-width: 760px) {
  .lb-cols.is-2 { grid-template-columns: 1fr 1fr; }
  .lb-cols.is-3 { grid-template-columns: repeat(3, 1fr); }
  .lb-cols.is-4 { grid-template-columns: repeat(4, 1fr); }
  .lb-cols.is-split { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
}
.lb-center { text-align: center; }
.lb-measure { max-width: 64ch; }
.lb-section-num {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--ember);
  letter-spacing: .04em;
  display: inline-block;
  margin-bottom: 6px;
}

/* -- skip link ------------------------------------------------------------- */
.lb-skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--sapphire-deep); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.lb-skip:focus { left: 0; }

/* -- top ribbon ------------------------------------------------------------ */
.lb-ribbon {
  background: var(--sapphire-deep);
  color: #e7ecfb;
  font-size: .8rem;
  letter-spacing: .01em;
  text-align: center;
  padding: 7px 16px;
}
.lb-ribbon b { color: #fff; font-weight: 600; }

/* -- header / nav ---------------------------------------------------------- */
.lb-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 244, 239, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.lb-head-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 70px; }
.lb-brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); }
.lb-brand img { width: 30px; height: 30px; }
.lb-brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.lb-brand-txt b { font-size: 1.16rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.lb-brand-txt span { font-family: var(--sans); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }
.lb-nav { display: none; align-items: center; gap: 22px; }
.lb-nav a { font-family: var(--sans); font-size: .93rem; font-weight: 500; color: var(--ink); }
.lb-nav a:hover { color: var(--sapphire-bright); text-decoration: none; }
.lb-nav a[aria-current="page"] { color: var(--ember-deep); }
.lb-head-cta { display: none; }
@media (min-width: 1000px) {
  .lb-nav { display: flex; }
  .lb-head-cta { display: inline-flex; }
}
.lb-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: var(--card); border-radius: 9px; cursor: pointer;
}
.lb-burger span, .lb-burger span::before, .lb-burger span::after {
  content: ""; display: block; width: 19px; height: 2px; background: var(--ink); position: relative;
}
.lb-burger span::before { position: absolute; top: -6px; }
.lb-burger span::after { position: absolute; top: 6px; }
@media (min-width: 1000px) { .lb-burger { display: none; } }
.lb-mobile { display: none; border-top: 1px solid var(--line); background: var(--card); }
.lb-mobile.is-open { display: block; }
.lb-mobile nav { display: flex; flex-direction: column; padding: 10px 0; }
.lb-mobile a { padding: 12px 22px; font-size: 1rem; color: var(--ink); border-bottom: 1px solid var(--paper-2); }
.lb-mobile .lb-btn { margin: 14px 22px 18px; }

/* -- buttons --------------------------------------------------------------- */
.lb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-align: center; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.lb-btn:hover { text-decoration: none; transform: translateY(-1px); }
.lb-btn-ember { background: var(--ember); color: #fff; box-shadow: 0 8px 22px rgba(239, 90, 26, .28); }
.lb-btn-ember:hover { background: var(--ember-deep); color: #fff; }
.lb-btn-sapphire { background: var(--sapphire); color: #fff; }
.lb-btn-sapphire:hover { background: var(--sapphire-deep); color: #fff; }
.lb-btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.lb-btn-ghost:hover { border-color: var(--sapphire); color: var(--sapphire); }
.lb-btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.lb-btn-block { display: flex; width: 100%; }
.lb-btn small { font-weight: 500; opacity: .85; font-size: .82em; }

/* -- badges / pills -------------------------------------------------------- */
.lb-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.lb-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  padding: 6px 13px; border-radius: 999px; background: var(--card);
  border: 1px solid var(--line); color: var(--ink-soft);
}
.lb-pill.is-cool { background: var(--sky); border-color: #d3e0fc; color: var(--sapphire); }
.lb-pill svg { width: 14px; height: 14px; }

/* -- hero ------------------------------------------------------------------ */
.lb-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 90% at 78% 18%, rgba(239, 90, 26, .22), transparent 60%),
    radial-gradient(80% 120% at 10% 0%, #16307f, transparent 55%),
    linear-gradient(165deg, #0e2050 0%, #122a66 52%, #0c1b44 100%);
  color: #eaf0fe;
}
.lb-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(40% 60% at 70% 80%, rgba(239, 90, 26, .14), transparent 70%);
  pointer-events: none;
}
.lb-hero .lb-wrap { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 64px; }
.lb-hero h1 { color: #fff; }
.lb-hero h1 .is-ember { color: var(--ember-soft); }
.lb-hero-lead { font-size: 1.16rem; color: #c9d4f1; margin: 16px 0 26px; max-width: 38ch; }
.lb-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.lb-hero-figure { position: relative; display: flex; justify-content: center; }
.lb-hero-figure img { width: min(320px, 80%); filter: drop-shadow(0 26px 44px rgba(0, 0, 0, .5)); }
.lb-hero-glow {
  position: absolute; inset: auto; width: 78%; aspect-ratio: 1; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(239, 90, 26, .55), rgba(239, 90, 26, 0) 62%);
  filter: blur(8px);
}
.lb-hero-stats { display: flex; flex-wrap: wrap; gap: 22px 34px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); }
.lb-hero-stats div b { font-family: var(--serif); font-size: 1.5rem; color: #fff; display: block; line-height: 1; }
.lb-hero-stats div span { font-size: .82rem; color: #aebbe0; }

/* -- portal sentence ------------------------------------------------------- */
.lb-portal {
  background: var(--sapphire-deep); color: #dfe7fb;
  font-size: 1.02rem; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .08);
}
.lb-portal .lb-wrap { display: flex; gap: 14px; align-items: flex-start; }
.lb-portal svg { flex: none; width: 22px; height: 22px; margin-top: 3px; color: var(--ember-soft); }
.lb-portal b { color: #fff; }

/* -- tl;dr ----------------------------------------------------------------- */
.lb-tldr {
  background: var(--sky); border: 1px solid #d6e1fb; border-left: 4px solid var(--sapphire-bright);
  border-radius: var(--r-md); padding: 22px 26px;
}
.lb-tldr h2 { font-family: var(--sans); font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--sapphire); margin-bottom: 8px; }
.lb-tldr p { font-size: 1.08rem; color: #20305a; margin-bottom: 0; }

/* -- brief highlights (fills space beside Key Facts) ----------------------- */
.lb-brief-extra { margin-top: 26px; padding-left: 4px; }
.lb-highlights { list-style: none; padding: 0; margin: 14px 0 22px; display: grid; gap: 15px; }
.lb-highlights li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.lb-highlights li svg { flex: none; width: 20px; height: 20px; color: var(--ember); margin-top: 3px; }
.lb-highlights li b { color: var(--ink); font-weight: 600; }

/* -- key facts table ------------------------------------------------------- */
.lb-keyfacts { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.lb-keyfacts-head { background: linear-gradient(120deg, var(--sapphire), var(--sapphire-deep)); color: #fff; padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lb-keyfacts-head b { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.lb-keyfacts-head span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #b9c6ee; }
.lb-keyfacts table { width: 100%; border-collapse: collapse; }
.lb-keyfacts th, .lb-keyfacts td { text-align: left; padding: 12px 22px; border-bottom: 1px solid var(--paper-2); font-size: .96rem; vertical-align: top; }
.lb-keyfacts th { width: 42%; font-family: var(--sans); font-weight: 600; color: var(--ink-soft); }
.lb-keyfacts td { color: var(--ink); font-weight: 500; }
.lb-keyfacts tr:last-child th, .lb-keyfacts tr:last-child td { border-bottom: 0; }

/* -- generic cards --------------------------------------------------------- */
.lb-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; box-shadow: var(--shadow-sm); }
.lb-card h3 { margin-bottom: 8px; }
.lb-card.is-flush { padding: 0; overflow: hidden; }
.lb-num-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; }
.lb-num-card .lb-num { font-family: var(--serif); font-size: 2.3rem; color: var(--ember); line-height: 1; display: block; margin-bottom: 10px; }

/* -- pillars / formula ----------------------------------------------------- */
.lb-pillar { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; box-shadow: var(--shadow-sm); }
.lb-pillar .lb-pillar-tag { font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--sapphire-bright); }
.lb-ingredient { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.lb-ingredient:last-child { border-bottom: 0; }
.lb-ingredient b { font-weight: 600; }
.lb-ingredient .lb-dose { font-family: var(--serif); color: var(--ember-deep); white-space: nowrap; font-size: 1.02rem; }

/* -- tables (data) --------------------------------------------------------- */
.lb-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card); }
table.lb-data { width: 100%; border-collapse: collapse; min-width: 520px; }
table.lb-data caption { text-align: left; padding: 14px 18px; font-weight: 700; font-family: var(--sans); border-bottom: 1px solid var(--line); }
table.lb-data th, table.lb-data td { padding: 12px 18px; border-bottom: 1px solid var(--paper-2); text-align: left; font-size: .95rem; vertical-align: top; }
table.lb-data thead th { background: var(--paper-2); font-family: var(--sans); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
table.lb-data tbody tr:last-child td { border-bottom: 0; }
table.lb-data .is-hi { color: var(--ok); font-weight: 600; }

/* -- verify panel ---------------------------------------------------------- */
.lb-verify-grid { display: grid; gap: 0; }
.lb-verify-row { display: grid; grid-template-columns: 1fr; gap: 2px 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 620px) { .lb-verify-row { grid-template-columns: 220px 1fr; } }
.lb-verify-row dt { font-weight: 600; color: var(--ink-soft); font-family: var(--sans); }
.lb-verify-row dd { color: var(--ink); font-weight: 500; }
.lb-verify-row dd code { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; background: var(--sky); color: var(--sapphire); padding: 2px 8px; border-radius: 6px; font-size: .9em; }

.lb-steps { counter-reset: step; display: grid; gap: 16px; }
.lb-step { position: relative; padding-left: 56px; }
.lb-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sapphire); color: #fff; border-radius: 50%; font-family: var(--serif); font-size: 1.1rem;
}
.lb-step h3 { font-size: 1.1rem; margin-bottom: 3px; }

/* -- pricing --------------------------------------------------------------- */
.lb-prices { display: grid; gap: 22px; align-items: stretch; }
@media (min-width: 880px) { .lb-prices { grid-template-columns: repeat(3, 1fr); } }
.lb-price {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.lb-price.is-popular { border: 2px solid var(--ember); box-shadow: var(--shadow-md); }
@media (min-width: 880px) { .lb-price.is-popular { transform: translateY(-12px); } }
.lb-price-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ember); color: #fff; font-family: var(--sans); font-weight: 800;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.lb-price h3 { font-size: 1.18rem; }
.lb-price-qty { font-family: var(--sans); font-weight: 700; font-size: .9rem; color: var(--sapphire-bright); letter-spacing: .04em; text-transform: uppercase; }
.lb-price-img { display: flex; justify-content: center; align-items: center; min-height: 176px; margin: 10px 0 16px; }
.lb-price-img img { max-height: 158px; max-width: 94%; width: auto; height: auto; filter: drop-shadow(0 10px 16px rgba(14, 32, 80, .22)); }
.lb-price.is-popular .lb-price-img img { max-height: 178px; }
.lb-price-bottle { display: flex; }
.lb-price-cost { font-family: var(--serif); font-size: 3rem; color: var(--ink); line-height: 1; }
.lb-price-cost sup { font-size: 1.2rem; top: -1rem; }
.lb-price-cost small { font-family: var(--sans); font-size: .8rem; font-weight: 600; color: var(--ink-soft); }
.lb-price-was { color: var(--ink-faint); }
.lb-price-was s { color: var(--ink-faint); }
.lb-price ul { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 9px; }
.lb-price li { display: flex; gap: 9px; font-size: .93rem; align-items: flex-start; }
.lb-price li svg { flex: none; width: 17px; height: 17px; color: var(--ok); margin-top: 3px; }
.lb-price .lb-btn { margin-top: auto; }
.lb-price-save { display: inline-block; background: #fff1e8; color: var(--ember-deep); font-weight: 700; font-size: .82rem; padding: 4px 11px; border-radius: 7px; }
.lb-pay { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 14px; opacity: .8; font-size: .72rem; color: var(--ink-faint); flex-wrap: wrap; }

/* -- testimonials ---------------------------------------------------------- */
.lb-rating-big { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
.lb-rating-big .lb-score { font-family: var(--serif); font-size: 3.4rem; color: var(--ink); line-height: 1; }
.lb-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.lb-quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.lb-quote p { margin: 0; }
.lb-quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.lb-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--sapphire), var(--sapphire-bright)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--sans); flex: none; }
.lb-quote-who b { display: block; font-size: .95rem; }
.lb-quote-who span { font-size: .82rem; color: var(--ink-faint); }
.lb-verified { font-size: .72rem; color: var(--ok); font-weight: 700; letter-spacing: .03em; }

/* -- star distribution / bars --------------------------------------------- */
.lb-bars { display: grid; gap: 10px; }
.lb-bar { display: grid; grid-template-columns: 64px 1fr 46px; gap: 12px; align-items: center; font-size: .88rem; }
.lb-bar-track { height: 9px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.lb-bar-fill { height: 100%; background: linear-gradient(90deg, var(--ember-soft), var(--ember)); border-radius: 999px; }
.lb-bar-fill.is-cool { background: linear-gradient(90deg, var(--sapphire-bright), var(--sapphire)); }

/* -- snapshot stat grid ---------------------------------------------------- */
.lb-stat-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .lb-stat-grid { grid-template-columns: repeat(4, 1fr); } }
.lb-stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; text-align: center; }
.lb-stat b { font-family: var(--serif); font-size: 2rem; color: var(--sapphire); display: block; line-height: 1; }
.lb-stat span { font-size: .82rem; color: var(--ink-soft); display: block; margin-top: 7px; }

/* -- takeaways / callouts -------------------------------------------------- */
.lb-takeaways { background: linear-gradient(160deg, #122a66, #0e2050); color: #e7ecfb; border-radius: var(--r-lg); padding: 34px; }
.lb-takeaways h2 { color: #fff; font-size: .82rem; font-family: var(--sans); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.lb-takeaways ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.lb-takeaways li { display: flex; gap: 12px; }
.lb-takeaways li svg { flex: none; width: 20px; height: 20px; color: var(--ember-soft); margin-top: 2px; }

.lb-note { background: #fff8f2; border: 1px solid #f3d8c4; border-radius: var(--r-md); padding: 18px 22px; font-size: .95rem; color: #6a4a36; }
.lb-callout { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--ember); border-radius: var(--r-md); padding: 20px 24px; }

/* -- Q&A ------------------------------------------------------------------- */
.lb-qa { display: grid; gap: 14px; }
.lb-qa h3 { font-family: var(--sans); font-size: 1.08rem; font-weight: 700; color: var(--ink); }
.lb-qa .lb-qa-block { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 24px; }
.lb-qa .lb-qa-block p { margin-bottom: 0; }
.lb-qa .lb-qa-block p + p { margin-top: 10px; }
details.lb-faq { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 4px 22px; }
details.lb-faq + details.lb-faq { margin-top: 12px; }
details.lb-faq summary { cursor: pointer; list-style: none; font-weight: 600; padding: 16px 0; display: flex; justify-content: space-between; gap: 14px; }
details.lb-faq summary::-webkit-details-marker { display: none; }
details.lb-faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.5rem; color: var(--ember); line-height: 1; }
details.lb-faq[open] summary::after { content: "\2013"; }
details.lb-faq .lb-faq-body { padding: 0 0 18px; color: var(--ink-soft); }

/* -- byline ---------------------------------------------------------------- */
.lb-byline { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: .86rem; color: var(--ink-faint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 0; margin: 18px 0 0; }
.lb-byline b { color: var(--ink-soft); font-weight: 600; }

/* -- breadcrumb ------------------------------------------------------------ */
.lb-crumb { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.lb-crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 11px 0; margin: 0; font-size: .84rem; color: var(--ink-faint); }
.lb-crumb li { display: flex; gap: 8px; align-items: center; }
.lb-crumb li::after { content: "\203A"; color: var(--ink-faint); }
.lb-crumb li:last-child::after { content: ""; }
.lb-crumb a { color: var(--ink-soft); }

/* -- page header ----------------------------------------------------------- */
.lb-page-head { background: linear-gradient(160deg, #f1f3fb, var(--paper)); border-bottom: 1px solid var(--line); padding: 48px 0; }
.lb-page-head h1 { max-width: 22ch; }
.lb-page-head p { color: var(--ink-soft); max-width: 60ch; margin-top: 12px; font-size: 1.08rem; }

/* -- prose ----------------------------------------------------------------- */
.lb-prose h2 { margin: 40px 0 14px; }
.lb-prose h3 { margin: 28px 0 10px; }
.lb-prose p { margin-bottom: 1rem; color: #2a3550; }
.lb-prose ul, .lb-prose ol { margin: 0 0 1.2rem; padding-left: 1.3rem; color: #2a3550; }
.lb-prose li { margin-bottom: .5rem; }
.lb-prose blockquote { border-left: 4px solid var(--ember); padding: 6px 0 6px 20px; margin: 24px 0; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.lb-glossary dt { font-weight: 700; margin-top: 14px; color: var(--ink); }
.lb-glossary dd { margin: 4px 0 0; color: var(--ink-soft); }

/* -- compare table --------------------------------------------------------- */
.lb-compare td.is-yes { color: var(--ok); font-weight: 600; }
.lb-compare td.is-no { color: var(--ink-faint); }

/* -- contact form ---------------------------------------------------------- */
.lb-form { display: grid; gap: 16px; }
.lb-field { display: grid; gap: 6px; }
.lb-field label { font-weight: 600; font-size: .9rem; }
.lb-field input, .lb-field select, .lb-field textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); background: var(--card); color: var(--ink);
}
.lb-field input:focus, .lb-field select:focus, .lb-field textarea:focus { outline: 2px solid var(--sapphire-bright); outline-offset: 1px; border-color: var(--sapphire-bright); }

/* -- final cta band -------------------------------------------------------- */
.lb-cta-band {
  background:
    radial-gradient(50% 80% at 85% 20%, rgba(239, 90, 26, .25), transparent 60%),
    linear-gradient(160deg, #122a66, #0e2050);
  color: #eaf0fe; border-radius: var(--r-lg); padding: 48px 40px; text-align: center;
}
.lb-cta-band h2 { color: #fff; }
.lb-cta-band p { color: #c4d0ef; max-width: 56ch; margin-inline: auto; }
.lb-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; margin-top: 22px; font-size: .82rem; color: #aebbe0; }
.lb-trust-row span { display: inline-flex; align-items: center; gap: 7px; }

/* -- footer ---------------------------------------------------------------- */
.lb-foot { background: #0c1830; color: #aeb9d4; font-size: .92rem; padding: 56px 0 30px; }
.lb-foot a { color: #c7d2ec; }
.lb-foot-top { display: grid; gap: 34px; }
@media (min-width: 760px) { .lb-foot-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.lb-foot h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.lb-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.lb-foot-brand b { font-family: var(--serif); font-size: 1.3rem; color: #fff; }
.lb-foot-brand p { margin-top: 12px; max-width: 38ch; color: #93a0c2; }
.lb-foot-contact { margin-top: 14px; display: grid; gap: 4px; font-size: .86rem; color: #93a0c2; }
.lb-foot-disc { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 36px; padding-top: 24px; font-size: .8rem; color: #7c89ab; display: grid; gap: 12px; }
.lb-foot-disc p { margin: 0; }
.lb-foot-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 12px; }
.lb-updated { font-size: .8rem; color: var(--ink-faint); }

/* -- helpers --------------------------------------------------------------- */
.lb-mt-0 { margin-top: 0; }
.lb-mb-0 { margin-bottom: 0; }
.lb-hide { display: none; }
:focus-visible { outline: 2px solid var(--sapphire-bright); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
