/* =========================================================================
   SetupTeam — Shared Editorial Blog Template (extracted 2026-06-04)
   Single source of truth for the .st-blog-root editorial resource-page design.
   Scoping: every rule is prefixed with .st-blog-root or body.blog-paper, so this
   stylesheet only affects pages that opt in (main.st-blog-root + body.blog-paper).
   Pull in via:  <link rel="stylesheet" href="/assets/css/blog-editorial.css?v=...">
   Fonts (Playfair Display + Plus Jakarta Sans) come from /assets/css/fonts.css.
   ========================================================================= */

/* =============================================================
   SONOS BLOG — EDITORIAL TEMPLATE (light warm-paper)
   Premium magazine system: warm paper · deep navy ink · antique gold.
   Ported from the Claude Design "Sonos Disconnecting" blog template.
   Google-font families (Newsreader / Hanken / Spline Mono) are mapped
   to the site's self-hosted Playfair Display + Plus Jakarta Sans and a
   system mono stack — no Google Fonts CDN, no new dependencies.
   All selectors are blog-scoped; the reusable site header/footer keep
   their own styling.
   ============================================================= */

/* ---- Tokens ---- */
.st-blog-root {
  --paper:        oklch(0.987 0.004 85);
  --paper-2:      oklch(0.965 0.006 85);
  --surface:      oklch(0.998 0.002 85);
  --ink:          oklch(0.255 0.035 262);
  --ink-soft:     oklch(0.40 0.028 262);
  --ink-mute:     oklch(0.55 0.020 262);
  --ink-faint:    oklch(0.70 0.014 262);
  --hair:         oklch(0.90 0.006 80);
  --hair-strong:  oklch(0.84 0.010 80);

  --navy:         oklch(0.255 0.038 262);
  --navy-line:    oklch(0.40 0.035 262);
  --on-navy:      oklch(0.93 0.010 85);
  --on-navy-mute: oklch(0.74 0.018 85);

  --accent:       oklch(0.745 0.095 80);
  --accent-deep:  oklch(0.62 0.085 70);
  --accent-soft:  oklch(0.93 0.045 85);
  --accent-ink:   oklch(0.30 0.05 70);

  --measure: 48rem;
  --wide:    58rem;
  --gutter:  clamp(1.25rem, 5vw, 3rem);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --mono:  ui-monospace, 'SF Mono', 'Cascadia Code', Consolas, 'Courier New', monospace;

  --radius: 14px;
  --shadow-card: 0 1px 2px oklch(0.4 0.03 262 / 0.04), 0 8px 30px oklch(0.4 0.03 262 / 0.06);
}

/* Light paper canvas for the article only (header/footer keep their own bg) */
.st-blog-root {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.2rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.003em;
}
.st-blog-root *, .st-blog-root *::before, .st-blog-root *::after { box-sizing: border-box; }
.st-blog-root ::selection { background: var(--accent-soft); color: var(--accent-ink); }
.st-blog-root img { max-width: 100%; height: auto; display: block; }

/* ---- Reading progress bar ---- */
.st-blog-root .progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  z-index: 95; transition: width 0.08s linear;
}

/* ---- Layout ---- */
.st-blog-root .wrap { padding-inline: var(--gutter); }
.st-blog-root .col { max-width: var(--measure); margin-inline: auto; }
.st-blog-root .col-wide { max-width: var(--wide); margin-inline: auto; }
/* No bottom padding: the final CTA band is the last child and must sit flush
   against the site footer — a paper-coloured gap here reads as a stray line
   between the navy CTA and the navy footer. */
.st-blog-root article { padding-bottom: 0; }

/* Page-scoped header treatment (the reusable header stays ACTIVE & functional).
   Scoped via body.blog-paper — a class set only on this page — and this rule
   lives only in this page's <style>; the reusable header/footer files are NOT
   modified. Root cause being corrected: on desktop the header's top state is
   `background:transparent` (built to sit over a dark hero image); over this
   page's warm-paper background that left the light header text floating with no
   readable backing. We restore a translucent-navy bar at the top state so the
   existing light text/logo/CTA stay legible. The scrolled `.is-pill` state keeps
   the header's own border/shadow/blur (we only normalise its background). */
body.blog-paper .st6-hdr { background: rgba(11,28,51,0.92); }
body.blog-paper .st6-hdr:not(.is-pill) {
  box-shadow: 0 6px 24px rgba(11,28,51,0.16);
  border-color: rgba(176,141,87,0.18);
}
/* Reserve space for the fixed header so the article's first element (the
   back/share toolbar, then the hero) clears it. The header sets
   body{padding-top:0}, so the article reserves the clearance itself. */
body.blog-paper .st-blog-root article { padding-top: 84px; }
@media (min-width: 1025px) { body.blog-paper .st-blog-root article { padding-top: 104px; } }

/* ---- Hero ---- */
.st-blog-root .hero { padding-top: clamp(1rem, 2.2vw, 1.7rem); }
.st-blog-root .eyebrow {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.st-blog-root .eyebrow::before {
  content: ""; width: 1.6rem; height: 1px; background: var(--accent); display: inline-block;
}
.st-blog-root h1.title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.06;
  letter-spacing: -0.02em; margin: 1.1rem 0 0; text-wrap: pretty; color: var(--ink);
}
.st-blog-root h1.title em { font-style: italic; font-weight: 600; color: var(--accent-deep); }
.st-blog-root .standfirst {
  font-family: var(--serif); font-size: clamp(1.28rem, 2.7vw, 1.58rem);
  line-height: 1.5; font-weight: 400; color: var(--ink-soft);
  margin: 1.4rem 0 0; max-width: 36rem; text-wrap: pretty;
}

/* byline / meta — single source-of-truth metadata row */
.st-blog-root .meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.4rem;
  margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--hair);
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.04em;
  color: var(--ink-mute); text-transform: uppercase;
}
.st-blog-root .meta .dot { color: var(--accent); }
.st-blog-root .meta strong { color: var(--ink); font-weight: 600; }
.st-blog-root .meta time { color: var(--ink); font-weight: 600; }
.st-blog-root .meta .badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.7rem; border: 1px solid var(--hair-strong); border-radius: 999px;
  color: var(--ink-soft);
}
.st-blog-root .meta .badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

/* hero CTA row */
.st-blog-root .hero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }

/* hero figure */
.st-blog-root figure.hero-fig { margin: 2.6rem auto 0; }
.st-blog-root figure.hero-fig img {
  width: 100%; height: auto; display: block; border-radius: var(--radius);
  box-shadow: var(--shadow-card); aspect-ratio: 16/9; object-fit: cover; background: var(--paper-2);
}
.st-blog-root figcaption {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.02em;
  color: var(--ink-mute); margin-top: 0.85rem; line-height: 1.5; display: flex; gap: 0.6rem;
}
.st-blog-root figcaption::before { content: "\25B8"; color: var(--accent); flex: none; }

/* ---- Prose ---- */
/* max-width:none overrides global.css `.prose{max-width:72ch}` (which lacks
   auto margins and would otherwise pin the whole article body to the left).
   The .prose block is a full-width wrapper; its direct children center at the
   reading measure via the rule below. */
/* font-size/line-height/color set explicitly to override global.css
   `.prose{font-size:clamp(15px,1.6vw,17px); color:rgba(255,255,255,.85)}`, which
   otherwise caps body copy small and leaks white text onto the paper background
   (e.g. the symptom checklist) because .prose children inherit from .prose. */
.st-blog-root .prose { margin-top: 2.8rem; max-width: none; color: var(--ink); font-size: 1.18rem; line-height: 1.74; }
.st-blog-root .prose > * { max-width: var(--measure); margin-inline: auto; }

/* Centering safety net — guarantees the wide media/feature blocks fill their
   max-width and stay centered, overriding any margin shorthand or intrinsic
   (shrink-to-content) sizing edge case. Blog-scoped only. */
.st-blog-root figure.hero-fig,
.st-blog-root .case,
.st-blog-root .table-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.st-blog-root .prose p { margin: 0 auto 1.4rem; text-wrap: pretty; color: var(--ink); }
.st-blog-root .prose p a, .st-blog-root .inline-link {
  color: var(--ink); text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 100% 1.5px; background-repeat: no-repeat; background-position: 0 1.15em;
  transition: background-position 0.15s, color 0.15s; padding-bottom: 1px;
}
.st-blog-root .prose p a:hover, .st-blog-root .inline-link:hover {
  color: var(--accent-deep); background-position: 0 1.25em;
}
.st-blog-root .prose .lead { font-size: 1.36rem; line-height: 1.62; color: var(--ink); }
.st-blog-root .prose .lead::first-letter {
  font-family: var(--serif); font-weight: 700;
  float: left; font-size: 3.9rem; line-height: 0.78; padding: 0.3rem 0.7rem 0 0; color: var(--accent-deep);
}
.st-blog-root .prose h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.25rem); line-height: 1.14; letter-spacing: -0.015em;
  margin: 3.4rem auto 0.3rem; scroll-margin-top: 5rem; text-wrap: pretty; color: var(--ink);
}
.st-blog-root .prose h3 {
  font-family: var(--sans); font-weight: 700; font-size: 1.18rem; line-height: 1.35;
  letter-spacing: -0.01em; color: var(--ink-soft); margin: 2.2rem auto 1.3rem; max-width: var(--measure);
}
.st-blog-root .prose h2 + h3 { margin-top: 0.9rem; }
.st-blog-root .prose strong { font-weight: 700; color: var(--ink); }
.st-blog-root .prose em { font-style: italic; }

/* heading anchor affordance */
.st-blog-root .h-anchor {
  opacity: 0; margin-left: 0.5rem; color: var(--ink-faint); text-decoration: none;
  font-family: var(--sans); font-weight: 400; font-size: 0.7em; transition: opacity 0.15s, color 0.15s;
}
.st-blog-root .prose h2:hover .h-anchor { opacity: 1; }
.st-blog-root .h-anchor:hover { color: var(--accent-deep); }

/* ---- The Short Answer (TL;DR) ---- */
.st-blog-root .tldr {
  max-width: var(--measure); margin: 2.8rem auto 0;
  background: var(--navy); color: var(--on-navy); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.3rem); position: relative; overflow: hidden; box-shadow: var(--shadow-card);
}
.st-blog-root .tldr::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, oklch(0.4 0.06 80 / 0.22), transparent 55%); pointer-events: none;
}
.st-blog-root .tldr .label {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem;
}
.st-blog-root .tldr .label::before {
  content: ""; width: 9px; height: 9px; border: 2px solid var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 3px oklch(0.745 0.095 80 / 0.18);
}
.st-blog-root .tldr p {
  font-family: var(--serif); font-size: clamp(1.16rem, 2.3vw, 1.4rem); line-height: 1.5;
  font-weight: 400; margin: 0; color: var(--on-navy); position: relative;
}
.st-blog-root .tldr p strong { color: #fff; font-weight: 600; }
.st-blog-root .tldr p b.key { color: var(--accent); font-weight: 600; font-style: normal; }

/* ---- symptom checklist ---- */
.st-blog-root .checklist { list-style: none; padding: 0; margin: 1.6rem auto; }
.st-blog-root .checklist li {
  position: relative; padding: 0.85rem 0 0.85rem 2.4rem; border-bottom: 1px solid var(--hair); line-height: 1.55;
}
.st-blog-root .checklist li:first-child { border-top: 1px solid var(--hair); }
.st-blog-root .checklist li::before {
  content: ""; position: absolute; left: 0; top: 1.35rem; width: 11px; height: 11px;
  border-radius: 2px; background: var(--accent); transform: rotate(45deg);
}
.st-blog-root .checklist li b { color: var(--ink); font-weight: 700; }

/* ---- pull callout ---- */
.st-blog-root .note {
  max-width: var(--measure); margin: 2rem auto; border-left: 3px solid var(--accent);
  padding: 0.4rem 0 0.4rem 1.5rem; font-family: var(--serif); font-style: italic;
  font-size: 1.18rem; line-height: 1.55; color: var(--ink-soft);
}

/* ---- inline technical tag ---- */
.st-blog-root .tag {
  font-family: var(--mono); font-size: 0.82em; font-weight: 500;
  background: var(--accent-soft); color: var(--accent-ink); padding: 0.08em 0.45em;
  border-radius: 5px; letter-spacing: 0.01em; white-space: nowrap;
}

/* ---- comparison table ---- */
.st-blog-root .table-wrap { max-width: var(--wide); margin: 2.4rem auto; overflow-x: auto; }
.st-blog-root .table-title {
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 0.9rem;
}
.st-blog-root table.cmp { width: 100%; border-collapse: collapse; font-size: 0.98rem; min-width: 540px; }
.st-blog-root table.cmp thead th {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-align: left; color: var(--ink-mute); font-weight: 500; padding: 0 1rem 0.85rem; border-bottom: 1.5px solid var(--ink);
}
.st-blog-root table.cmp thead th.col-yes, .st-blog-root table.cmp thead th.col-no { text-align: center; width: 24%; }
.st-blog-root table.cmp tbody td {
  padding: 0.95rem 1rem; border-bottom: 1px solid var(--hair); vertical-align: middle; color: var(--ink-soft); line-height: 1.4;
}
.st-blog-root table.cmp tbody td:first-child { color: var(--ink); font-weight: 600; }
.st-blog-root table.cmp tbody tr:hover td { background: var(--paper-2); }
.st-blog-root table.cmp td.cell-yes, .st-blog-root table.cmp td.cell-no { text-align: center; font-size: 0.9rem; }
.st-blog-root .yes { color: var(--accent-deep); font-weight: 600; }
.st-blog-root .yes::before { content: "\2713 "; }
.st-blog-root .no { color: var(--ink-mute); }

/* ---- figures inside prose ---- */
.st-blog-root figure.inline-fig { max-width: var(--wide); margin: 2.8rem auto; }
.st-blog-root figure.inline-fig img {
  width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow-card); background: var(--paper-2);
}
.st-blog-root figure.inline-fig.portrait { max-width: 22rem; }
.st-blog-root figure.inline-fig.portrait img { aspect-ratio: 3/4; object-fit: cover; }
/* Theatre section — controlled editorial layout. The portrait sits INSIDE the
   reading column, floated right and close to the text (not at the far viewport
   edge as the previous full-width-prose float did). .theatre-wrap is a flow-root
   BFC so the float is contained and cannot bleed into the centered case-study
   block below. On mobile the image stacks above the text, full width, no overflow. */
.st-blog-root .theatre-wrap { max-width: var(--measure); margin-inline: auto; display: flow-root; }
.st-blog-root .theatre-fig { float: right; width: 14rem; margin: 0.3rem 0 1rem 1.9rem; }
.st-blog-root .theatre-fig img {
  width: 100%; height: auto; display: block; border-radius: var(--radius);
  box-shadow: var(--shadow-card); aspect-ratio: 3/4; object-fit: cover; background: var(--paper-2);
}
@media (max-width: 640px) {
  .st-blog-root .theatre-fig { float: none; width: 100%; max-width: 22rem; margin: 0 auto 1.6rem; }
}

/* ---- case study block ---- */
.st-blog-root .case {
  clear: both; /* drop below the floated portrait figure above so the BFC doesn't shrink/shift beside it */
  max-width: var(--wide); margin: 3.4rem auto; background: var(--navy); color: var(--on-navy);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card);
}
.st-blog-root .case .case-top {
  padding: clamp(1.8rem, 3.5vw, 2.6rem) clamp(1.6rem, 3.5vw, 2.6rem) 1.5rem; border-bottom: 1px solid var(--navy-line);
}
.st-blog-root .case .case-eyebrow {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 0.6rem;
}
.st-blog-root .case .case-eyebrow .pin { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.st-blog-root .case h2.case-h {
  font-family: var(--serif); font-weight: 600; color: var(--on-navy); font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.16; letter-spacing: -0.015em; margin: 0.9rem 0 0; max-width: 30rem; scroll-margin-top: 5rem;
}
.st-blog-root .case .stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--navy-line); }
.st-blog-root .case .stat { padding: 1.4rem clamp(1rem, 2.2vw, 1.6rem); border-right: 1px solid var(--navy-line); }
.st-blog-root .case .stat:last-child { border-right: none; }
.st-blog-root .case .stat .n {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700;
  color: var(--accent); line-height: 1; letter-spacing: -0.01em;
}
.st-blog-root .case .stat .k {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--on-navy-mute); margin-top: 0.55rem; line-height: 1.4;
}
@media (max-width: 640px) {
  .st-blog-root .case .stats { grid-template-columns: repeat(2, 1fr); }
  .st-blog-root .case .stat:nth-child(2) { border-right: none; }
  .st-blog-root .case .stat:nth-child(1), .st-blog-root .case .stat:nth-child(2) { border-bottom: 1px solid var(--navy-line); }
}

/* ---- inline CTA card ---- */
.st-blog-root .cta {
  max-width: var(--measure); margin: 3rem auto; background: var(--surface); border: 1px solid var(--hair-strong);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.st-blog-root .cta::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--accent), var(--accent-deep));
}
.st-blog-root .cta .cta-q {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.6rem); font-weight: 600;
  line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 0.6rem; color: var(--ink);
}
.st-blog-root .cta .cta-d { color: var(--ink-soft); font-size: 1.0rem; margin: 0 0 1.4rem; max-width: 34rem; }

/* ---- buttons ---- */
.st-blog-root .btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.st-blog-root .btn {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-weight: 600;
  font-size: 0.95rem; text-decoration: none; padding: 0.72rem 1.3rem; border-radius: 999px;
  transition: transform 0.12s, background 0.15s, color 0.15s; cursor: pointer;
}
.st-blog-root .btn:active { transform: translateY(1px); }
.st-blog-root .btn-primary { background: var(--ink); color: var(--paper); }
.st-blog-root .btn-primary:hover { background: var(--accent-deep); color: #fff; }
.st-blog-root .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--hair-strong); }
.st-blog-root .btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.st-blog-root .btn .arr { transition: transform 0.15s; }
.st-blog-root .btn:hover .arr { transform: translateX(3px); }

/* ---- jump-to-FAQ chip ---- */
.st-blog-root .jump {
  display: inline-flex; align-items: baseline; gap: 0.35rem; font-family: var(--mono); font-size: 0.82em;
  font-weight: 500; color: var(--accent-deep); text-decoration: none; letter-spacing: 0.01em;
  border-bottom: 1px dashed var(--accent); padding-bottom: 1px;
}
.st-blog-root .jump:hover { color: var(--ink); border-bottom-style: solid; }
.st-blog-root .jump::before { content: "\2198"; font-size: 0.9em; }

/* ---- Quick Answers grid ---- */
.st-blog-root .quick-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px;
  background: var(--hair); border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; margin: 1.6rem auto;
}
.st-blog-root .quick-cell { background: var(--surface); padding: 1.5rem; }
.st-blog-root .quick-cell h4 {
  font-family: var(--serif); font-weight: 600; font-size: 1.12rem; line-height: 1.3; margin: 0 0 0.6rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.st-blog-root .quick-cell p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); line-height: 1.55; }

/* ---- FAQ ---- */
.st-blog-root .faq-section { max-width: var(--wide); margin: 4rem auto 0; }
.st-blog-root .faq-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  border-bottom: 1.5px solid var(--ink); padding-bottom: 1rem; margin-bottom: 0.5rem;
}
.st-blog-root .faq-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  letter-spacing: -0.015em; margin: 0; scroll-margin-top: 5rem; color: var(--ink);
}
.st-blog-root .faq-head .count {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute); white-space: nowrap;
}
.st-blog-root .faq-item { border-bottom: 1px solid var(--hair); }
.st-blog-root .faq-q {
  display: flex; align-items: flex-start; gap: 1rem; width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1.25rem 0; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.28rem); line-height: 1.35; color: var(--ink); letter-spacing: -0.01em;
}
.st-blog-root .faq-q:hover { color: var(--accent-deep); }
.st-blog-root .faq-q .ico {
  flex: none; width: 24px; height: 24px; margin-top: 0.2rem; position: relative;
  border: 1.5px solid var(--hair-strong); border-radius: 50%; transition: border-color 0.2s, transform 0.25s;
}
.st-blog-root .faq-q .ico::before, .st-blog-root .faq-q .ico::after {
  content: ""; position: absolute; background: var(--accent-deep); top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.st-blog-root .faq-q .ico::before { width: 10px; height: 1.5px; }
.st-blog-root .faq-q .ico::after  { width: 1.5px; height: 10px; transition: transform 0.25s; }
.st-blog-root .faq-q[aria-expanded="true"] .ico { border-color: var(--accent); transform: rotate(90deg); }
.st-blog-root .faq-q[aria-expanded="true"] .ico::after { transform: translate(-50%, -50%) scaleY(0); }
.st-blog-root .faq-a { overflow: hidden; max-height: 0; transition: max-height 0.32s cubic-bezier(.4,0,.2,1); }
.st-blog-root .faq-a-inner { padding: 0 0 1.5rem 2.5rem; color: var(--ink-soft); }
.st-blog-root .faq-a-inner p { margin: 0 0 1rem; font-size: 1.0rem; line-height: 1.7; }
.st-blog-root .faq-a-inner p:last-child { margin: 0; }
@media (max-width: 600px) { .st-blog-root .faq-a-inner { padding-left: 0; } }

/* ---- final CTA band ---- */
.st-blog-root .final-cta {
  margin-top: 4.5rem; background: var(--navy); color: var(--on-navy);
  padding: clamp(3rem, 7vw, 5rem) var(--gutter); text-align: center; position: relative; overflow: hidden;
}
.st-blog-root .final-cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% -10%, oklch(0.5 0.07 80 / 0.16), transparent 60%); pointer-events: none;
}
.st-blog-root .final-cta .inner { position: relative; max-width: 40rem; margin: 0 auto; }
.st-blog-root .final-cta .eyebrow { color: var(--accent); justify-content: center; }
.st-blog-root .final-cta h2 {
  font-family: var(--serif); font-weight: 600; color: var(--on-navy); font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.08; letter-spacing: -0.02em; margin: 1.1rem 0 0;
}
.st-blog-root .final-cta p { color: var(--on-navy-mute); margin: 1.1rem auto 2rem; max-width: 34rem; }
.st-blog-root .final-cta .btn-row { justify-content: center; }
.st-blog-root .final-cta .btn-primary { background: var(--accent); color: #2a2208; }
.st-blog-root .final-cta .btn-primary:hover { background: #fff; color: var(--navy); }
.st-blog-root .final-cta .btn-ghost { color: var(--on-navy); border-color: var(--navy-line); }
.st-blog-root .final-cta .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .st-blog-root .progress { transition: none; }
}

/* ---- Optional pricing-table + category helpers (cost/pricing pages) ---- */
.st-blog-root .cat-title {
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--ink); max-width: var(--measure); margin: 2.6rem auto 0.7rem;
}
.st-blog-root table.cmp th.price-col, .st-blog-root table.cmp td.price { text-align: right; }
.st-blog-root table.cmp td.price {
  font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700; color: var(--ink);
}
.st-blog-root .price-was {
  display: block; margin-top: 3px; font-size: 0.85rem; font-weight: 400;
  color: var(--ink-mute); text-decoration: line-through;
}
.st-blog-root .savings { color: var(--accent-deep); font-weight: 700; }

/* final-CTA inline link (e.g. cost/pricing pages that link out from the closing band) */
.st-blog-root .final-cta a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.st-blog-root .final-cta a:hover { color: #fff; }

/* ---- Blog toolbar: back-to-resources + share (top of every editorial article) ---- */
.st-blog-root .blog-toolbar-wrap { margin-top: 0.6rem; }
.st-blog-root .blog-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: 0.9rem; border-bottom: 1px solid var(--hair);
}
.st-blog-root .blog-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute); text-decoration: none; transition: color 0.15s;
}
.st-blog-root .blog-back:hover { color: var(--accent-deep); }
.st-blog-root .blog-back .blog-back-ico { transition: transform 0.15s; }
.st-blog-root .blog-back:hover .blog-back-ico { transform: translateX(-3px); }
.st-blog-root .blog-share {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 0.8rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--hair-strong); border-radius: 999px;
  padding: 0.5rem 1.05rem; transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.st-blog-root .blog-share:hover { border-color: var(--accent); color: var(--accent-deep); }
.st-blog-root .blog-share .blog-share-ico { color: var(--accent-deep); transition: color 0.15s; }
.st-blog-root .blog-share.is-copied { border-color: var(--accent); color: var(--accent-deep); }
