/* ============================================================
   global.css -- ManagedWPGuide Design System
   ============================================================
   Palette: Charcoal (#111827) + Evergreen (#059669)
   Fonts: IBM Plex Sans (UI) + IBM Plex Serif (prose)
   Pattern: Surface layers on #F9FAFB background
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gray-950: #111827;
    --gray-900: #1a1f2e;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;

    --green-800: #065f46;
    --green-700: #047857;
    --green-600: #059669;
    --green-500: #10b981;
    --green-400: #34d399;
    --green-100: #d1fae5;
    --green-50:  #ecfdf5;

    --color-primary: var(--gray-950);
    --color-accent: var(--green-700);
    --color-accent-hover: var(--green-800);

    --color-text: var(--gray-950);
    --color-text-secondary: var(--gray-600);
    --color-text-muted: var(--gray-500);
    --color-text-faint: var(--gray-400);

    --color-bg: var(--gray-50);
    --color-surface: #ffffff;
    --color-border: var(--gray-200);
    --color-border-subtle: var(--gray-100);

    --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'IBM Plex Serif', Georgia, serif;

    --max-width: 1140px;
    --max-prose: 680px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-lift: 0 4px 12px rgba(0,0,0,0.08);
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--gray-950);
}

.site-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.site-logo {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.site-logo:hover { text-decoration: none; color: #fff; }

.site-logo-mark {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-sm);
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.15s;
}
.site-nav a:hover { color: #ffffff; text-decoration: none; }

.site-nav .nav-cta {
    background: var(--green-600);
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8125rem;
    transition: background 0.15s;
}
.site-nav .nav-cta:hover { background: var(--green-500); color: #fff; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-400);
}
.nav-toggle svg { display: block; }

@media (max-width: 720px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--gray-950);
        border-bottom: 1px solid var(--gray-800);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    .site-nav.open { display: flex; }
    .site-nav a { font-size: 0.9375rem; color: var(--gray-300); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--gray-950);
    color: var(--gray-400);
    padding: 2.5rem 1.5rem;
    margin-top: 0;
}

.site-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-disclosure {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
    max-width: 340px;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 0.625rem;
}

.footer-col a {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-400);
    padding: 0.175rem 0;
    text-decoration: none;
}
.footer-col a:hover { color: #ffffff; text-decoration: none; }

.footer-bottom {
    max-width: var(--max-width);
    margin: 1.25rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ============================================================
   PROVIDERS BAR
   ============================================================ */
.providers-bar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 1.5rem;
}

.providers-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.providers-bar-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-faint);
    white-space: nowrap;
    flex-shrink: 0;
}

.providers-list {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.provider-wordmark { display: flex; align-items: center; }

.provider-wordmark img {
    height: 26px;
    width: auto;
    display: block;
    opacity: 0.65;
    transition: opacity 0.15s;
}
.provider-wordmark img:hover { opacity: 1; }
.provider-wordmark img.kinsta-wm { height: 22px; }

/* ============================================================
   GUIDES GRID
   ============================================================ */
.guides-section {
    padding: 3.5rem 1.5rem 3rem;
    background: var(--green-700);
}

.guides-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.guides-section-header h2 {
    font-size: 1.3125rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.015em;
}

.guides-section-header a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--green-100);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (max-width: 800px) {
    .guides-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .guides-grid { grid-template-columns: 1fr; }
}

.guide-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    transition: box-shadow 0.15s, transform 0.1s;
}
.guide-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-2px);
}

.guide-card-type {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-faint);
}

.guide-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
}
.guide-card h3 a { color: inherit; text-decoration: none; }
.guide-card h3 a:hover { text-decoration: underline; }

.guide-card p {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Guides grid -- 2 column variant for index page */
.guides-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 540px) {
    .guides-grid--2col { grid-template-columns: 1fr; }
}

/* Guides index page */
.guides-index {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.guides-index-header {
    margin-bottom: 1.5rem;
}

.guides-index-header h1 {
    font-size: clamp(1.625rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.025em;
    margin-bottom: 0.375rem;
}

.guides-index-header p {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.guides-index .wizard-cta-banner {
    max-width: none;
    margin-bottom: 2.5rem;
}

.guides-index-section {
    margin-bottom: 3rem;
}

.guides-index-section h2 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.015em;
    margin-bottom: 0.375rem;
}

.guides-index-desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

/* ============================================================
   METHODOLOGY
   ============================================================ */
.methodology {
    padding: 2rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.methodology-inner {
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.methodology-inner strong {
    color: var(--color-text);
    font-weight: 600;
}

/* ============================================================
   REVIEW / ARTICLE PAGE STYLES
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
    max-width: var(--max-prose);
    margin: 0 auto 1.25rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { margin: 0 0.25rem; color: var(--color-text-faint); }

/* Article header */
.article-header {
    max-width: var(--max-prose);
    margin: 0 auto 1.5rem;
}

.article-header h1 {
    font-size: clamp(1.625rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 0.375rem;
}

.article-header .subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* Sticky article nav (review/comparison pages) */
.article-nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.2s ease;
    pointer-events: none;
}

.article-nav.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.article-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.article-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    min-width: 0;
}

.article-nav-links::-webkit-scrollbar { display: none; }

.article-nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 0.375rem 0.625rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: color 0.15s, background 0.1s;
}

.article-nav-links a:hover {
    color: var(--color-text);
    background: var(--gray-100);
    text-decoration: none;
}

.article-nav-links a.active {
    color: var(--color-accent);
    font-weight: 600;
}

.article-nav-cta {
    flex-shrink: 0;
}

.article-nav-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-accent);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.15s;
}

.article-nav-cta a:hover {
    background: var(--color-accent-hover);
    text-decoration: none;
    color: #fff;
}

@media (max-width: 720px) {
    .article-nav-cta { display: none; }
}

/* Article body -- ensure h2 scroll offset accounts for both header + sticky nav */
.article-body h2 {
    scroll-margin-top: 112px;
}

.article-date {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Jump links -- spaced inline links */
.jump-links {
    max-width: var(--max-prose);
    margin: 0 auto 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
}

.jump-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1px;
    transition: color 0.1s, border-color 0.1s;
}
.jump-links a:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    text-decoration: none;
}

/* At a Glance card */
.at-a-glance {
    max-width: var(--max-prose);
    margin: 0 auto 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.at-a-glance-header {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-surface);
}

.at-a-glance-header h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
}

.at-a-glance-header .provider-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-700);
}

.at-a-glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 540px) {
    .at-a-glance-grid { grid-template-columns: repeat(2, 1fr); }
}

.at-a-glance-stat {
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--color-border);
}
.at-a-glance-stat:last-child { border-right: none; }

@media (max-width: 540px) {
    .at-a-glance-stat:nth-child(2) { border-right: none; }
    .at-a-glance-stat:nth-child(1),
    .at-a-glance-stat:nth-child(2) { border-bottom: 1px solid var(--color-border); }
}

.stat-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-faint);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-primary);
    font-feature-settings: 'tnum' 1;
}

.stat-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1px;
}

/* Verdict box */
.verdict-box {
    max-width: var(--max-prose);
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

@media (max-width: 540px) {
    .verdict-box { grid-template-columns: 1fr; }
}

.verdict-col { padding: 1.125rem 1.25rem; }
.verdict-col + .verdict-col { border-left: 1px solid var(--color-border); }

@media (max-width: 540px) {
    .verdict-col + .verdict-col { border-left: none; border-top: 1px solid var(--color-border); }
}

.verdict-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.verdict-col--best h4 { color: var(--green-700); }
.verdict-col--not h4 { color: var(--gray-500); }

.verdict-col p {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
}

/* Wizard CTA banner (on review pages) */
.wizard-cta-banner {
    max-width: var(--max-prose);
    margin: 0 auto 1.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.wizard-cta-banner p {
    font-size: 0.8125rem;
    color: var(--gray-700);
    font-weight: 500;
}

.wizard-cta-banner a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-700);
    white-space: nowrap;
}

/* Disclosure */
.disclosure-inline {
    max-width: var(--max-prose);
    margin: 0 auto 1.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    border-left: 2px solid var(--color-border);
    padding-left: 0.75rem;
}

/* Article body -- serif prose */
.article-body {
    max-width: var(--max-prose);
    margin: 0 auto;
}

.article-body h2 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.015em;
    margin-top: 2.5rem;
    margin-bottom: 0.875rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.article-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.article-body p {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    line-height: 1.72;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.article-body ul, .article-body ol {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    line-height: 1.72;
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.article-body li { margin-bottom: 0.375rem; }

.article-body a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.article-body a:hover { color: var(--color-accent-hover); }

/* Tables in articles */
.article-body table,
.comparison-table {
    max-width: var(--max-prose);
    margin: 1.5rem auto;
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.875rem;
}

.article-body table th,
.comparison-table th {
    text-align: left;
    font-weight: 600;
    color: var(--color-text);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--color-border);
    font-size: 0.8125rem;
}

.article-body table td,
.comparison-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border-subtle);
    color: var(--color-text-secondary);
    vertical-align: top;
}

.article-body table tbody tr:nth-child(even),
.comparison-table tbody tr:nth-child(even) {
    background: var(--gray-50);
}

/* Callout box */
.callout {
    max-width: var(--max-prose);
    margin: 1.5rem auto;
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.callout p { margin-bottom: 0.75rem; }
.callout p:last-child { margin-bottom: 0; }

/* Affiliate CTA button */
.affiliate-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, var(--green-600), var(--green-700));
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.7rem 1.375rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(4,120,87,0.3);
    transition: transform 0.1s, box-shadow 0.15s;
}
.affiliate-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(4,120,87,0.25);
    text-decoration: none;
    color: #fff;
}

/* Review page wrapper */
.review-page {
    background: var(--color-surface);
    padding: 3rem 1.5rem;
}

.guides-page-bg {
    background: var(--color-surface) url('/assets/bg-cloud-network.png') no-repeat center center;
    background-size: cover;
}

/* ============================================================
   PRICING TIER CARDS
   Compact plan overview cards for review pages.
   Scoped to override .article-body serif inheritance.
   ============================================================ */
.pricing-tiers {
    max-width: var(--max-prose);
    margin: 1.5rem auto;
    font-family: var(--font-sans);
}

.pricing-tiers-label {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}

@media (max-width: 540px) {
    .pricing-tiers-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-tier-card {
    background: var(--gray-50);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
}

.pricing-tier-card--accent {
    border-left: 3px solid var(--color-accent);
}

.article-body .pricing-tiers .tier-name {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-faint);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.article-body .pricing-tiers .tier-price {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    font-feature-settings: 'tnum' 1;
    line-height: 1.2;
    margin-bottom: 0;
}

.article-body .pricing-tiers .tier-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.article-body .pricing-tiers .tier-specs {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-top: 0.375rem;
    margin-bottom: 0;
}

.article-body .pricing-tiers .pricing-tiers-note {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-text-faint);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ============================================================
   VERDICT CALLOUT BOXES
   Green/gray summary boxes for who-fits / who-skip sections.
   Scoped to override .article-body serif inheritance.
   ============================================================ */
.verdict-callout {
    max-width: var(--max-prose);
    margin: 1.5rem auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-family: var(--font-sans);
}

.verdict-callout--fits {
    border-left: 3px solid var(--green-600);
}

.verdict-callout--skip {
    border-left: 3px solid var(--gray-400);
}

.article-body .verdict-callout .verdict-callout-header {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem 0;
    margin-bottom: 0;
    line-height: 1.4;
}

.verdict-callout--fits .verdict-callout-header {
    color: var(--green-700);
}

.verdict-callout--skip .verdict-callout-header {
    color: var(--gray-600);
}

.article-body .verdict-callout .verdict-callout-body {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    padding: 0.5rem 1.25rem 0.875rem;
    margin-bottom: 0;
}

/* ============================================================
   COST COMPARISON CHART (inline SVG)
   Reusable bar chart styles matching the comparison page SVG
   ============================================================ */
.cost-chart {
    max-width: var(--max-prose);
    margin: 1.5rem auto;
}

.cost-chart svg {
    width: 100%;
    max-width: 680px;
    display: block;
    margin: 0 auto;
}

.cost-chart .chart-label {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    font-size: 12px;
    fill: #6b7280;
    text-anchor: middle;
}

.cost-chart .chart-value {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-anchor: middle;
}

.cost-chart .chart-axis {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    font-size: 11px;
    fill: #6b7280;
}

.cost-chart .chart-title {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    fill: #111827;
    text-anchor: middle;
}

.cost-chart .chart-legend {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    font-size: 12px;
    fill: #111827;
}

.cost-chart .chart-note {
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
    font-size: 11px;
    fill: #6b7280;
    font-style: italic;
    text-anchor: middle;
}

.cost-chart .grid-line {
    stroke: #e5e7eb;
    stroke-width: 1;
}

.cost-chart .grid-line-dash {
    stroke: #e5e7eb;
    stroke-width: 1;
    stroke-dasharray: 4,4;
}

/* Provider bar colors -- match comparison page, improved contrast */
.cost-chart .bar-kinsta { fill: #111827; }
.cost-chart .bar-wpengine { fill: #9ca3af; }
.cost-chart .bar-cloudways { fill: #059669; }

/* ============================================================
   DECISION & SCENARIO TABLES
   Styled variants of article-body tables with colored
   fit indicators and check/x/partial markers.
   ============================================================ */
.article-body .decision-table,
.article-body .scenarios-table {
    max-width: var(--max-prose);
    margin: 1.5rem auto;
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.875rem;
}

.article-body .decision-table th,
.article-body .scenarios-table th {
    text-align: left;
    font-weight: 600;
    color: #fff;
    background: var(--gray-800);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--gray-700);
    font-size: 0.8125rem;
}

.article-body .decision-table td,
.article-body .scenarios-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border-subtle);
    color: var(--color-text-secondary);
    vertical-align: top;
}

.article-body .decision-table tbody tr:nth-child(even),
.article-body .scenarios-table tbody tr:nth-child(even) {
    background: var(--gray-50);
}

/* Scenarios table: emphasized totals row */
.article-body .scenarios-table tbody tr:last-child td {
    font-weight: 600;
    color: var(--color-text);
    border-top: 2px solid var(--color-border);
}

/* Fit indicator cells */
.article-body td.fit-good {
    background: rgba(16, 185, 129, 0.08);
    color: var(--green-700);
    font-weight: 400;
}

.article-body td.fit-good strong {
    font-weight: 600;
}

.article-body td.fit-medium {
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
    font-weight: 400;
}

.article-body td.fit-medium strong {
    font-weight: 600;
}

.article-body td.fit-poor {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    font-weight: 400;
}

.article-body td.fit-poor strong {
    font-weight: 600;
}

.article-body td.fit-good a {
    color: var(--gray-800);
    text-decoration: underline;
}

.article-body td.fit-good a:hover {
    color: var(--gray-950);
}

.article-body td.fit-medium a {
    color: var(--gray-800);
    text-decoration: underline;
}

.article-body td.fit-medium a:hover {
    color: var(--gray-950);
}

.article-body td.fit-poor a {
    color: var(--gray-800);
    text-decoration: underline;
}

.article-body td.fit-poor a:hover {
    color: var(--gray-950);
}

/* Check / X / Partial markers */
.article-body td.check::before {
    content: '\2713 ';
    color: var(--green-600);
    font-weight: 700;
}

.article-body td.x-mark::before {
    content: '\2717 ';
    color: #dc2626;
    font-weight: 700;
}

.article-body td.partial::before {
    content: '\25CB ';
    color: #b45309;
    font-weight: 700;
}

/* Soft CTA paragraph */
.article-body .soft-cta {
    max-width: var(--max-prose);
    margin: 2rem auto;
    padding: 1.25rem 1.5rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: center;
}

.article-body .soft-cta a {
    color: var(--green-700);
    font-weight: 600;
}

.article-body .soft-cta a:hover {
    color: var(--green-800);
}

/* Page footer notes -- cross-links and disclaimers at end of articles */
.article-body .page-footer-note {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.article-body .page-footer-note a {
    color: var(--color-accent);
}

.article-body .page-footer-note a:hover {
    color: var(--color-accent-hover);
}

/* Disclaimer variant -- even lighter */
.article-body hr + .page-footer-note {
    color: var(--color-text-faint);
}

/* ============================================================
   UTILITY
   ============================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
