/* ─── Design tokens ──────────────────────────────────────── */
:root {
  --ink: #111318; --muted: #616976; --paper: #f4f1ea; --panel: #ffffff;
  --line: rgba(17,19,24,.14); --navy: #091423; --gold: #b89552;
  --gold-d: #d6bd83; --slate: #202938; --ice: #e7edf3;
  --shadow: 0 24px 70px rgba(9,20,35,.16);
}

/* ─── Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.5; width: 100%; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ─── Grain texture ──────────────────────────────────────── */
.grain { position: fixed; inset: 0; pointer-events: none; opacity: .22; background-image: radial-gradient(rgba(0,0,0,.12) .6px, transparent .6px); background-size: 4px 4px; mix-blend-mode: multiply; z-index: 0; }

/* ─── Site header ────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 28px; padding: 18px 5vw; border-bottom: 1px solid transparent; background: rgba(244,241,234,.84); backdrop-filter: blur(18px); transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 28px rgba(17,19,24,.06); }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; margin-right: auto; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; background: var(--navy); color: #fff; font-family: 'Instrument Serif', serif; font-size: 20px; flex-shrink: 0; }
.nav { display: flex; gap: 24px; font-size: 14px; font-weight: 600; color: #333b48; list-style: none; margin: 0; padding: 0; }
.nav a, .nav li a { color: #333b48; }
.nav a:hover, .nav li a:hover, .footer-links a:hover { color: var(--gold); }
.header-cta { padding: 11px 16px; border: 1px solid var(--ink); font-weight: 700; font-size: 14px; cursor: pointer; }
.header-cta:hover { background: var(--ink); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; }

/* ─── Sections ───────────────────────────────────────────── */
.section { padding: 92px 5vw; }

/* ─── Eyebrows & headings ────────────────────────────────── */
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; color: var(--gold); margin: 0 0 16px; }
h1, h2, h3 { margin: 0; letter-spacing: -.045em; line-height: .96; }
h1 { font-size: clamp(48px, 7.2vw, 104px); max-width: 11ch; overflow-wrap: break-word; }
h2 { font-size: clamp(36px, 4.8vw, 68px); }
h3 { font-size: 24px; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero.section-grid { padding: 104px 5vw 76px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, 420px); gap: 56px; align-items: end; width: 100%; overflow: hidden; }
.hero.section-grid > .eyebrow, .hero.section-grid > h1, .hero.section-grid > .hero-copy, .hero.section-grid > .hero-actions { grid-column: 1; }
.hero.section-grid > .hero-card { grid-column: 2; grid-row: 1 / span 4; align-self: end; }
.hero-copy { max-width: 720px; font-size: 22px; color: #374151; margin: 28px 0; min-width: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card { background: var(--navy); color: #fff; padding: 32px; box-shadow: var(--shadow); border-top: 4px solid var(--gold); min-width: 0; }
.hero-card h2 { font-size: 30px; margin: 10px 0 16px; color: #fff; }
.hero-card p { color: #ccd5df; }
.card-topline, .brief-meta { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: #d6bd83; font-weight: 800; }
.brief-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* ─── Buttons ────────────────────────────────────────────── */
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; font-weight: 800; border: 1px solid var(--ink); cursor: pointer; font-family: inherit; font-size: 14px; transition: .15s; text-decoration: none; }
.button.primary { background: var(--ink); color: #fff; }
.button.primary:hover { background: #1e2330; }
.button.ghost-btn { background: transparent; }
.button.ghost-btn:hover { background: rgba(17,19,24,.06); }

/* ─── Ticker ─────────────────────────────────────────────── */
.ticker { display: flex; gap: 12px; overflow: hidden; padding: 18px 5vw; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }


/* ─── Two-col ────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.prose { font-size: 20px; color: #343c49; }

/* ─── Pillars ────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); padding-top: 0; }
.pillars article { background: var(--paper); padding: 36px; }
.pillars span { display: block; font-weight: 800; color: var(--gold); margin-bottom: 40px; }

/* ─── Editorial / article grid ───────────────────────────── */
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { background: #fff; min-height: 320px; padding: 24px; display: flex; flex-direction: column; border: 1px solid rgba(17,19,24,.08); transition: .25s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-kicker { display: flex; justify-content: space-between; gap: 10px; color: var(--gold); font-size: 12px; text-transform: uppercase; font-weight: 900; letter-spacing: .1em; }
.article-card h3 { font-size: 22px; margin: 28px 0 14px; line-height: 1.1; }
.article-card h3 a { color: var(--ink); }
.article-card h3 a:hover { color: var(--gold); }
.article-card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.5; flex: 1; }
.read-link { margin-top: 20px; align-self: flex-start; background: none; border: 0; border-bottom: 2px solid var(--ink); padding: 0 0 4px; font-weight: 900; cursor: pointer; font-size: 14px; color: var(--ink); text-decoration: none; display: inline-block; }
.read-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.locked { background: linear-gradient(140deg, #fff, #e9edf1); }

/* ─── Intelligence strip ─────────────────────────────────── */
.intelligence-strip { background: var(--navy); color: #fff; }

/* ─── Audience ───────────────────────────────────────────── */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.audience-grid div { background: #fff; padding: 26px; border: 1px solid rgba(17,19,24,.08); }
.audience-grid p { color: var(--muted); }

/* ─────────────────────────────────────────────────────────── */
/* PRICING / MEMBERSHIP                                        */
/* ─────────────────────────────────────────────────────────── */
.pricing-section { background: var(--navy); color: #fff; padding: 92px 5vw; }
.pricing-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.pricing-header h2 { color: #fff; }
.pricing-header .eyebrow { color: var(--gold-d); }
.pricing-sub { font-size: 18px; color: rgba(255,255,255,.55); margin: 20px 0 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
.pricing-card { background: var(--slate); padding: 36px; border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; position: relative; }
.pricing-card.featured { border-color: rgba(184,149,82,.45); border-top: 3px solid var(--gold); }
.pricing-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 4px 10px; margin-bottom: 18px; align-self: flex-start; }
.pricing-tier-label { font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 12px; }
.pricing-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing-price { font-size: 48px; font-weight: 800; letter-spacing: -.05em; color: #fff; line-height: 1; }
.pricing-per { font-size: 18px; font-weight: 400; color: rgba(255,255,255,.45); }
.pricing-cadence { font-size: 13px; color: rgba(255,255,255,.45); margin: 0 0 28px; }
.pricing-cadence strong { color: rgba(255,255,255,.75); }
.pricing-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li { font-size: 15px; color: rgba(255,255,255,.72); padding-left: 20px; position: relative; line-height: 1.4; }
.pricing-features li::before { content: '–'; position: absolute; left: 0; color: var(--gold-d); font-weight: 700; }
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 28px 0; }
.pricing-card .form-row { display: flex; gap: 8px; }
.pricing-card .form-row input { flex: 1; min-height: 46px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: #fff; padding: 0 14px; font: inherit; font-size: 14px; }
.pricing-card .form-row input::placeholder { color: rgba(255,255,255,.35); }
.pricing-card .form-row input:focus { outline: none; border-color: var(--gold); }
.pricing-card .button.primary { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; font-size: 13px; white-space: nowrap; min-height: 46px; }
.pricing-card .button.primary:hover { background: rgba(255,255,255,.22); }
.form-note { font-size: 12px; color: rgba(255,255,255,.35); margin: 10px 0 0; }
.pricing-cta-primary { width: 100%; background: var(--gold); border: 1px solid var(--gold); color: var(--navy); font-size: 13px; font-weight: 800; min-height: 48px; margin-bottom: 8px; font-family: inherit; cursor: pointer; letter-spacing: -.01em; }
.pricing-cta-primary:hover { background: #c9a460; }
.pricing-cta-secondary { width: 100%; background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8); font-size: 13px; font-weight: 700; min-height: 48px; font-family: inherit; cursor: pointer; }
.pricing-cta-secondary:hover { background: rgba(255,255,255,.08); }
.secure-note { font-size: 11px; color: rgba(255,255,255,.35); margin: 14px 0 0; letter-spacing: .02em; }
.pricing-footer-note { text-align: center; font-size: 13px; color: rgba(255,255,255,.3); max-width: 600px; margin: 36px auto 0; }

/* ─── Koenig card widths (required by Ghost GScan) ─────── */
.kg-width-wide{position:relative;width:85vw;min-width:100%;margin:32px calc(50% - 42.5vw)}
.kg-width-full{position:relative;width:100vw;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}
.kg-image{max-width:100%;height:auto;display:block}
.kg-gallery-container{display:flex;flex-direction:column}
.kg-gallery-row{display:flex;flex-direction:row;justify-content:center}
.kg-gallery-image img{display:block;width:100%;height:100%;object-fit:cover}

/* ─── Article page ───────────────────────────────────────── */
.sb-main { background: var(--paper); }
.sb-article { max-width: 100%; }
.sb-article-header { border-bottom: 1px solid var(--line); padding-bottom: 32px; margin-bottom: 0; }
.article-wrap { max-width: 740px; margin: 0 auto; padding: 0 5vw; }
.sb-article-header .article-wrap { padding-top: 60px; padding-bottom: 32px; }
.sb-article-title { font-size: clamp(32px, 5vw, 60px); font-weight: 800; letter-spacing: -.045em; line-height: .96; margin: 0 0 20px; }
.sb-article-excerpt { font-size: 20px; color: var(--muted); border-left: 3px solid var(--gold); padding-left: 16px; margin: 0 0 24px; line-height: 1.5; }
.byline { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: flex; gap: 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line); }
.sb-article-image-wrap { max-width: 100%; margin: 0; }
.sb-article-image { width: 100%; max-height: 520px; object-fit: cover; display: block; }
.sb-content { font-size: 19px; line-height: 1.65; color: var(--ink); padding: 48px 0 80px; }
.sb-content h2, .sb-content h3 { margin-top: 48px; margin-bottom: 16px; }
.sb-content h2 { font-size: 32px; }
.sb-content h3 { font-size: 24px; }
.sb-content p { margin: 0 0 24px; }
.sb-content a { color: var(--gold); text-decoration: underline; }
.sb-content a:hover { color: #9a7c42; }
.sb-content sup a { color: var(--gold); text-decoration: none; font-size: 13px; }
.sb-content ol, .sb-content ul { margin: 0 0 24px; padding-left: 28px; }
.sb-content li { margin-bottom: 8px; }
.sb-content hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.sb-content blockquote { border-left: 3px solid var(--gold); margin: 32px 0; padding: 4px 0 4px 24px; }
.sb-content blockquote p { color: var(--muted); font-size: 22px; font-style: italic; margin: 0; }

/* Paywall CTA on article page */
.sb-paywall-cta { background: var(--navy); margin: 0; padding: 80px 5vw; }
.sb-paywall-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; border-top: 4px solid var(--gold); padding-top: 48px; }
.sb-paywall-cta-inner h2 { color: #fff; font-size: clamp(28px, 4vw, 48px); margin: 16px 0 16px; }
.sb-paywall-cta-inner p { color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.5; margin: 0 0 32px; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta-actions .pricing-cta-primary { width: auto; min-width: 200px; }
.cta-actions .pricing-cta-secondary { width: auto; min-width: 200px; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 5vw; background: #080d14; color: #fff; font-size: 13px; }
.footer p { color: #aab3c2; font-size: 13px; margin: 4px 0 0; }
.footer strong { font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--gold-d); }

/* ─────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                   */
/* ─────────────────────────────────────────────────────────── */

/* ─── Ticker — linked tag chips ─────────────────────────── */
.ticker a { white-space: nowrap; padding: 9px 14px; background: var(--ice); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); text-decoration: none; transition: .15s; }
.ticker a:hover { background: var(--navy); color: #fff; }

/* ─── Hero — split-panel visual treatment ────────────────── */
.hero.section-grid { position: relative; }
.hero.section-grid::before { content: ''; position: absolute; top: 0; right: 0; width: 38%; height: 100%; background: linear-gradient(160deg, rgba(9,20,35,.04) 0%, rgba(9,20,35,.09) 100%); pointer-events: none; z-index: 0; }
.hero.section-grid > * { position: relative; z-index: 1; }
.hero-card { border-left: 1px solid rgba(9,20,35,.1); margin-left: -1px; }

/* ─── Nav — remove any Subscribe link injected via Ghost navigation ── */
.nav a[href*="membership"], .nav a[href*="subscribe"], .nav li a[href*="membership"] { display: none; }

@media (max-width: 1180px) {
  .hero.section-grid { grid-template-columns: 1fr; align-items: start; }
  .hero.section-grid > .eyebrow, .hero.section-grid > h1, .hero.section-grid > .hero-copy, .hero.section-grid > .hero-actions, .hero.section-grid > .hero-card { grid-column: 1; }
  .hero.section-grid > .hero-card { grid-row: auto; width: 100%; }
  h1 { max-width: 12ch; }
}

@media (max-width: 950px) {
  .nav, .header-cta { display: none; }
  .nav.open { display: flex; position: absolute; inset: 74px 5vw auto; background: #fff; padding: 20px; flex-direction: column; box-shadow: var(--shadow); z-index: 30; }
  .nav-toggle { display: block; }
  .two-col, .intelligence-strip { grid-template-columns: 1fr; }
  .article-grid, .pillars, .audience-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .footer { display: block; }
  .footer-links { margin-top: 20px; }
}

@media (max-width: 680px) {
  .site-header { gap: 14px; padding-inline: 20px; }
  .brand span:last-child { max-width: 190px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .section, .section-grid, .pricing-section { padding-inline: 20px; }
  h1 { font-size: clamp(40px, 13vw, 64px); max-width: 10.5ch; overflow-wrap: anywhere; }
  .hero-copy { font-size: 18px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-price { font-size: 40px; }
  .pricing-card .form-row { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .cta-actions .pricing-cta-primary, .cta-actions .pricing-cta-secondary { width: 100%; }
}

/* ─── Member / sign-in nav link ─────────────────────────── */
.member-link { font-size: 14px !important; font-weight: 600; color: #333b48 !important; text-decoration: none; }
.member-link:hover { color: var(--gold) !important; }

/* ─── Hero card \u2014 block link ─────────────────────────────── */
a.hero-card { display: block; text-decoration: none; color: #fff; cursor: pointer; }
a.hero-card:hover { border-top-color: #c9a460; }
a.hero-card h2 { color: #fff; } a.hero-card p { color: #ccd5df; }

/* ─── Nav: suppress Ghost's default "Sign up" link ──────── */
/* Remove this rule once cleaned from Ghost Admin \u2192 Navigation */
.nav a[href*="signup"], .nav a[href*="sign-up"],
.nav li a[href*="signup"], .nav li a[href*="sign-up"],
.nav a[href="#/portal/signup"] { display: none; }

/* ─── Article content (rebuilt) ─────────────────────────── */
.sb-wrap { max-width: 740px; margin: 0 auto; padding: 0 5vw; }
.sb-article-content { font-size: 19px; line-height: 1.65; color: var(--ink); padding: 48px 0 80px; }
.sb-article-content h2 { font-size: 32px; margin: 48px 0 16px; }
.sb-article-content h3 { font-size: 24px; margin: 40px 0 12px; }
.sb-article-content p { margin: 0 0 24px; }
.sb-article-content a { color: var(--gold); text-decoration: underline; }
.sb-article-content strong { font-weight: 700; }
.sb-paywall { background: var(--navy); color: #fff; }
.sb-paywall-inner { max-width: 740px; margin: 0 auto; padding: 64px 5vw; text-align: center; }
.sb-paywall-inner h2 { font-size: clamp(28px, 4vw, 46px); color: #fff; margin: 12px 0 16px; }
.sb-paywall-inner p { color: rgba(255,255,255,.7); max-width: 52ch; margin: 0 auto 28px; }
.sb-paywall-inner::before { content: ''; display: block; width: 64px; height: 2px; background: var(--gold); margin: 0 auto 32px; }
.sb-paywall-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.secure-note { font-size: 13px; color: rgba(255,255,255,.4) !important; }
.sb-paywall-inline-inner .secure-note { font-size: 9px !important; letter-spacing: .02em; }

/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGE — rebuilt post layout
   ═══════════════════════════════════════════════════════════ */

/* ─── Hero image with text overlay ──────────────────────── */
.sb-article-hero { position: relative; background: var(--navy); max-height: 600px; overflow: hidden; }
.sb-hero-img-wrap { position: relative; width: 100%; }
.sb-hero-img-wrap img { width: 100%; max-height: 600px; object-fit: cover; display: block; opacity: .72; }
.sb-hero-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; background: linear-gradient(to top, rgba(9,20,35,.92) 40%, rgba(9,20,35,.2) 100%); }
.sb-hero-overlay .sb-wrap { padding-bottom: 48px; padding-top: 120px; width: 80%; max-width: 1200px; margin: 0 auto; padding-left: 5vw; padding-right: 5vw; }
.sb-hero-overlay .eyebrow { color: var(--gold); }
.sb-hero-overlay .sb-article-title { color: #fff; max-width: none; }
.sb-hero-overlay .sb-article-standfirst { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.25); margin-top: 20px; }
.sb-hero-overlay .sb-byline { color: rgba(255,255,255,.45); }

/* ─── No-image header (plain) ────────────────────────────── */
.sb-article-header { border-bottom: 1px solid var(--line); }
.sb-article-header .sb-wrap { padding-top: 72px; padding-bottom: 36px; }
.sb-article-title--plain { max-width: 28ch; }

/* ─── Article title (shared) ─────────────────────────────── */
.sb-article-title { font-size: clamp(32px, 5vw, 60px); font-weight: 800; letter-spacing: -.04em; line-height: .96; margin: 12px 0 0; }
.sb-article-standfirst { font-size: 20px; color: var(--muted); border-left: 3px solid var(--gold); padding-left: 16px; margin: 20px 0 0; line-height: 1.5; }
.sb-byline { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 20px; letter-spacing: .02em; text-transform: uppercase; }

/* ─── Two-column article layout ──────────────────────────── */
.sb-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 56px; padding-top: 56px; padding-bottom: 80px; align-items: start; }
.sb-article-body { min-width: 0; }

/* ─── Sidebar ─────────────────────────────────────────────── */
.sb-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 36px; padding-top: 0; }
.sb-sidebar-section { padding: 24px; border: 1px solid var(--line); background: #fff; margin-top: 0; }
.sb-sidebar-heading { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin: 0 0 18px; }
.sb-related-post { display: block; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line); }
.sb-related-post:last-child { border-bottom: none; }
.sb-related-kicker { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 6px; }
.sb-related-title { display: block; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; letter-spacing: -.02em; }
.sb-related-post:hover .sb-related-title { color: var(--gold); }
.sb-sidebar-subscribe p:not(.eyebrow) { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
.sb-sidebar-cta-btn { width: 100%; margin-bottom: 8px; font-size: 13px; min-height: 44px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media(max-width: 900px) {
  .sb-article-layout { grid-template-columns: 1fr; }
  .sb-sidebar { position: static; }
  .sb-article-hero { max-height: 460px; }
  .sb-hero-overlay .sb-article-title { font-size: clamp(28px, 8vw, 48px); }
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE LAYOUT — overrides / corrections (v7)
   ═══════════════════════════════════════════════════════════ */

/* Wide layout wrapper for two-column article page */
.sb-layout-wrap { max-width: 1120px; margin: 0 auto; padding: 0 5vw; }

/* Article grid — body takes remaining space, sidebar fixed 260px */
.sb-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

/* Body prose — correct font size and max comfortable reading width */
.sb-article-content { font-size: 16px; line-height: 1.7; color: var(--ink); }
.sb-article-content h2 { font-size: 26px; font-weight: 800; margin: 40px 0 14px; letter-spacing: -.03em; }
.sb-article-content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 10px; }
.sb-article-content p { margin: 0 0 20px; }
.sb-article-content a { color: var(--gold); text-decoration: underline; }
.sb-article-content strong { font-weight: 700; }
.sb-article-content p:last-child { margin-bottom: 0; }

/* Hero overlay standfirst — smaller, 3-line max */
.sb-hero-overlay .sb-article-standfirst {
  font-size: 15px;
  line-height: 1.5;
  border: none;
  padding: 0;
  margin-top: 12px;
  max-width: none;
  overflow: visible;
}

/* Hero overlay title max-width */
.sb-hero-overlay .sb-article-title { max-width: none; }

/* Sidebar — use full height stickily */
.sb-sidebar { position: sticky; top: 88px; padding-top: 0; }
.sb-sidebar-section { background: #fff; border: 1px solid var(--line); padding: 20px; margin-bottom: 16px; }
.sb-sidebar-section:last-child { margin-bottom: 0; }

/* ─── Mobile / narrow viewport ───────────────────────────── */
@media (max-width: 860px) {
  .sb-article-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 32px;
  }
  .sb-sidebar { position: static; border-top: 1px solid var(--line); padding-top: 32px; margin-top: 32px; }
  .sb-article-content { font-size: 16px; }
  .sb-hero-overlay .sb-article-title { font-size: clamp(26px, 7vw, 44px); }
  .sb-hero-overlay .sb-article-standfirst { display: none; }
  .sb-paywall { padding: 0; }
  .sb-paywall-inner { padding: 48px 5vw; }
  .sb-paywall-actions { flex-direction: column; }
  .sb-paywall-actions .button { width: 100%; }
}

@media (max-width: 560px) {
  .sb-layout-wrap { padding: 0 20px; }
  .sb-article-content { font-size: 15px; }
  .sb-byline { font-size: 11px; gap: 10px; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════
   v8.1 — INLINE PAYWALL OVERLAY
   ═══════════════════════════════════════════════════════════ */

/* Preview wrapper — clips content and fades bottom edge */
.sb-content-preview {
  position: relative;
  max-height: 420px;
  overflow: hidden;
}

/* Fade mask — from opaque at 50% to transparent at 100% */
.sb-preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, var(--paper) 75%);
  pointer-events: none;
}

/* Inline paywall — sits directly below preview, pulled up to overlap the fade */
.sb-paywall-inline {
  background: var(--paper);
  padding: 0 0 64px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.sb-paywall-inline-inner {
  border-top: 4px solid var(--gold);
  background: var(--navy);
  color: #fff;
  padding: 48px 40px 52px;
  text-align: center;
  max-width: 100%;
}

.sb-paywall-inline-inner h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  color: #fff;
  margin: 12px 0 16px;
  letter-spacing: -.04em;
  line-height: .97;
}

.sb-paywall-inline-inner p:not(.eyebrow) {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 auto 28px;
}

.sb-paywall-inline-inner .sb-paywall-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 16px;
  max-width: 520px;
}

.sb-paywall-inline-inner .pricing-cta-primary,
.sb-paywall-inline-inner .pricing-cta-secondary {
  flex: 1 1 200px;
  width: auto !important;
  min-height: 48px;
  font-size: 13px;
  margin-bottom: 0;
}

.sb-paywall-inline-inner .pricing-cta-secondary {
  color: rgba(255,255,255,.8);
}

@media (max-width: 680px) {
  .sb-paywall-inline-inner {
    padding: 36px 24px 40px;
  }
  .sb-paywall-inline-inner .sb-paywall-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sb-paywall-inline-inner .pricing-cta-primary,
  .sb-paywall-inline-inner .pricing-cta-secondary {
    width: 100%;
  }
}

/* ── Static page layout (About, etc.) ── */
.sb-page-layout {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 5vw 80px;
}
.sb-page-body { min-width: 0; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE  (page-about.hbs)
   ═══════════════════════════════════════════════════════════ */

/*
 * Layout mirrors sb-layout-wrap + sb-article-layout exactly.
 * Content column width = 1120px container minus 5vw*2 padding.
 * No sidebar on this page — content runs full column width.
 * All font sizes, line-heights, and margins match sb-article-content.
 */

/* ── Main content wrapper ────────────────────────────────── */
/*
 * Matches sb-layout-wrap exactly.
 * sb-article-layout inside it uses grid-template-columns: minmax(0,1fr) 260px.
 * About page has no sidebar, so content fills the full 1fr naturally.
 */
.about-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 5vw 80px;
}

/* ── Section blocks ─────────────────────────────────────── */
.about-block {
  margin-bottom: 56px;
}

/* label: identical to .eyebrow */
.about-block-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

/*
 * h2: matches sb-article-content h2 — 26px, 800, -.03em, ink
 * NOT the global h2 (clamp 36–68px) which is homepage-scale
 */
.about-block-h2 {
  font-size: 26px !important;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 20px;
}

/* body text: matches sb-article-content exactly */
.about-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 20px;
}

.about-block p:last-child { margin-bottom: 0; }

/* ── Pull quote ──────────────────────────────────────────── */
/* matches .sb-content blockquote exactly */
.about-pull-quote {
  border-left: 3px solid var(--gold);
  margin: 0 0 56px;
  padding: 4px 0 4px 24px;
}

.about-pull-quote p {
  color: var(--muted);
  font-size: 22px;
  font-style: italic;
  font-family: 'Instrument Serif', Georgia, serif;
  margin: 0;
  max-width: none;
}

/* ── Divider ─────────────────────────────────────────────── */
.about-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 56px;
}

/* ── Card grids ──────────────────────────────────────────── */
/*
 * All card grids use the same pattern as .article-grid / .pillars:
 * white panel, rgba(17,19,24,.08) border, 24px padding, 15px/1.5 body text.
 * h3 matches article-card h3: 20px, 800, -.02em.
 */

.about-properties,
.about-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0 0;
}

.about-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 0;
}

.about-property-card,
.about-product-card,
.about-domain-tile {
  background: var(--panel);
  border: 1px solid rgba(17,19,24,.08);
  padding: 24px;
  transition: .25s;
}

.about-property-card:hover,
.about-product-card:hover,
.about-domain-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* chip label inside cards — gold, 11px, tracked */
.about-property-num,
.about-product-time,
.about-domain-tile-name {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

/* card headings: match article-card h3 */
.about-property-card h3,
.about-product-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 10px;
}

/* domain tile has no subheading, just name + para */
.about-domain-tile { text-align: center; }

/* card body text: matches article-card p */
.about-property-card p,
.about-product-card p,
.about-domain-tile p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ── Stats strip ─────────────────────────────────────────── */
/* Four KPI cards matching accuracy page sb-acc-kpi pattern */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.about-stat {
  background: var(--panel);
  border: 1px solid rgba(17,19,24,.08);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.about-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.about-stat-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 6px;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* ── CTA block ───────────────────────────────────────────── */
/* matches .sb-paywall-cta / .sb-paywall-cta-inner exactly */
.about-cta {
  background: var(--navy);
  padding: 80px 5vw;
  text-align: center;
}

.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  border-top: 4px solid var(--gold);
  padding-top: 48px;
}

.about-cta-lead {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .96;
  color: #fff;
  margin: 0 0 16px;
}

.about-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  margin: 0 0 32px;
}

/* Button row: both equal width, matches .cta-actions */
.about-cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-btns .pricing-cta-primary,
.about-cta-btns .pricing-cta-secondary {
  flex: 1 1 200px;
  width: auto !important;
  min-width: 200px;
  min-height: 48px;
  margin-bottom: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .about-domain-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .about-wrap { padding: 40px 20px 60px; }
  .about-properties,
  .about-product-grid,
  .about-domain-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-cta { padding: 56px 20px; }
  .about-cta-btns { flex-direction: column; align-items: stretch; }
  .about-cta-btns .pricing-cta-primary,
  .about-cta-btns .pricing-cta-secondary { flex: none; width: 100%; min-width: 0; }
}
