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

    :root {
      --ink:       #07090F;
      --ink-soft:  #2C3444;
      --muted:     #64748B;
      --blue:      #0041FF;
      --blue-pale: #EEF2FF;
      --red:       #DC2626;
      --red-pale:  #FEF2F2;
      --green:     #059669;
      --green-pale:#ECFDF5;
      --sand:      #F8F7F4;
      --rule:      #E2E4E8;
      --white:     #FFFFFF;
      --ff-display:'Playfair Display', Georgia, serif;
      --ff-body:   'Inter', system-ui, sans-serif;
    }

    html { font-size: 18px; }
    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--ff-body);
      font-weight: 400;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Layout ───────────────────────────────── */
    .wrap {
      max-width: 780px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Top bar ──────────────────────────────── */
    .topbar {
      border-bottom: 2px solid var(--ink);
      padding: 14px 0;
    }
    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .topbar-cat {
      font-family: var(--ff-body);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
    }
    .topbar-date {
      font-size: 0.68rem;
      color: var(--muted);
      letter-spacing: 0.06em;
    }

    /* ── Hero headline ────────────────────────── */
    .hero { padding: 48px 0 0; }
    .hero-kicker {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 4px 10px;
      margin-bottom: 20px;
    }
    .hero-h1 {
      font-family: var(--ff-display);
      font-size: clamp(2rem, 5vw, 3.1rem);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 20px;
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--blue);
    }
    .hero-deck {
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--ink-soft);
      line-height: 1.65;
      border-left: 4px solid var(--blue);
      padding-left: 18px;
      margin-bottom: 28px;
    }
    .byline {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 0;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      margin-bottom: 36px;
      font-size: 0.8rem;
      color: var(--muted);
    }
    .byline-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg,#0041FF,#00C6FF);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 700; font-size: 0.75rem;
    }
    .byline strong { color: var(--ink); font-weight: 600; }

    /* ── Hero image ───────────────────────────── */
    .hero-img-wrap {
      margin-bottom: 44px;
      position: relative;
    }
    .hero-img-wrap svg {
      width: 100%;
      display: block;
      border-radius: 2px;
    }
    .img-caption {
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 8px;
      text-align: center;
      font-style: italic;
    }

    /* ── Live counter ─────────────────────────── */
    .counter-band {
      background: var(--ink);
      color: #fff;
      padding: 22px 28px;
      margin-bottom: 44px;
      border-radius: 3px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .counter-band-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #94A3B8;
      flex: 1;
      min-width: 180px;
    }
    .counter-num {
      font-family: var(--ff-display);
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: -0.02em;
      line-height: 1;
      flex-shrink: 0;
    }
    .counter-sub {
      font-size: 0.72rem;
      color: #64748B;
      margin-top: 3px;
    }

    /* ── Body copy ────────────────────────────── */
    .article-body { margin-bottom: 52px; }

    .article-body p {
      font-size: 1rem;
      line-height: 1.82;
      color: var(--ink-soft);
      margin-bottom: 24px;
    }
    .article-body p.lead {
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.72;
    }
    .article-body p strong { color: var(--ink); font-weight: 600; }

    /* section headings */
    .article-body h2 {
      font-family: var(--ff-display);
      font-size: 1.65rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.2;
      margin: 52px 0 18px;
      letter-spacing: -0.01em;
    }
    .article-body h3 {
      font-family: var(--ff-body);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink);
      margin: 28px 0 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* section rule */
    .s-rule {
      width: 48px; height: 3px;
      background: var(--blue);
      margin: 0 0 20px;
    }

    /* ── Stat box ─────────────────────────────── */
    .stat-box {
      background: var(--sand);
      border-left: 5px solid var(--blue);
      padding: 30px 32px;
      margin: 36px 0;
      border-radius: 0 3px 3px 0;
    }
    .stat-box-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 22px;
    }
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }
    .stat-item {}
    .stat-num {
      font-family: var(--ff-display);
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--ink);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .stat-num.red { color: var(--red); }
    .stat-num.green { color: var(--green); }
    .stat-label {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 4px;
      line-height: 1.4;
    }

    /* ── Pull quote ───────────────────────────── */
    .pull-quote {
      margin: 44px -20px;
      padding: 32px 36px;
      border-top: 3px solid var(--ink);
      border-bottom: 3px solid var(--ink);
      position: relative;
    }
    .pull-quote::before {
      content: '\201C';
      font-family: var(--ff-display);
      font-size: 6rem;
      color: var(--blue);
      line-height: 0.5;
      position: absolute;
      top: 28px; left: 20px;
      opacity: 0.18;
    }
    .pull-quote p {
      font-family: var(--ff-display);
      font-size: 1.5rem !important;
      font-style: italic;
      font-weight: 700;
      line-height: 1.4 !important;
      color: var(--ink) !important;
      margin: 0 !important;
    }

    /* ── Click-data table ─────────────────────── */
    .data-table-wrap {
      margin: 32px 0;
      overflow-x: auto;
    }
    .data-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
    }
    .data-table th {
      background: var(--ink);
      color: #fff;
      padding: 11px 16px;
      text-align: left;
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .data-table td {
      padding: 11px 16px;
      border-bottom: 1px solid var(--rule);
      color: var(--ink-soft);
    }
    .data-table tr:nth-child(even) td { background: var(--sand); }
    .data-table .pos-1 td { color: var(--ink); font-weight: 700; }
    .bar-cell { width: 180px; }
    .bar-outer { background: var(--rule); border-radius: 2px; height: 8px; }
    .bar-inner { height: 8px; border-radius: 2px; background: var(--blue); }
    .bar-inner.fade-2 { background: #3D6FFF; }
    .bar-inner.fade-3 { background: #6B94FF; }
    .bar-inner.fade-rest { background: #C7D5FF; }

    /* ── Pillars ──────────────────────────────── */
    .pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
    .pillar {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px 20px;
      border: 1px solid var(--rule);
      border-radius: 3px;
      transition: border-color .2s;
    }
    .pillar:hover { border-color: var(--blue); }
    .pillar-num {
      font-family: var(--ff-display);
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--blue);
      opacity: 0.22;
      line-height: 1;
      flex-shrink: 0;
      width: 36px;
    }
    .pillar-body {}
    .pillar-title {
      font-weight: 700;
      color: var(--ink);
      font-size: 0.95rem;
      margin-bottom: 4px;
    }
    .pillar-desc {
      font-size: 0.84rem;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
    }

    /* ── Failure reasons ──────────────────────── */
    .fail-list { list-style: none; margin: 24px 0; }
    .fail-list li {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid var(--rule);
      font-size: 0.94rem;
      color: var(--ink-soft);
    }
    .fail-icon {
      width: 22px; height: 22px;
      background: var(--red-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 0.7rem;
      color: var(--red);
      font-weight: 800;
      margin-top: 2px;
    }

    /* ── Comparison band ──────────────────────── */
    .compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin: 32px 0;
      border-radius: 3px;
      overflow: hidden;
    }
    .compare-col { padding: 24px 22px; }
    .compare-col.bad { background: var(--red-pale); }
    .compare-col.good { background: var(--green-pale); }
    .compare-col-title {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .compare-col.bad .compare-col-title { color: var(--red); }
    .compare-col.good .compare-col-title { color: var(--green); }
    .compare-col ul { list-style: none; }
    .compare-col ul li {
      font-size: 0.84rem;
      padding: 5px 0;
      color: var(--ink-soft);
    }
    .compare-col ul li::before {
      margin-right: 8px;
      font-weight: 800;
      font-size: 0.75rem;
    }
    .compare-col.bad ul li::before { content: '✕'; color: var(--red); }
    .compare-col.good ul li::before { content: '✓'; color: var(--green); }

    /* ── Math callout ─────────────────────────── */
    .math-box {
      background: var(--ink);
      color: #fff;
      padding: 32px 36px;
      margin: 36px 0;
      border-radius: 3px;
    }
    .math-box-title {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #64748B;
      margin-bottom: 20px;
    }
    .math-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid #1E2942;
      font-size: 0.88rem;
    }
    .math-row:last-of-type { border-bottom: none; }
    .math-row .label { color: #94A3B8; }
    .math-row .val { font-weight: 700; color: #fff; }
    .math-row .val.green { color: #34D399; }
    .math-row .val.bigger { font-size: 1.4rem; color: #4ADE80; font-family: var(--ff-display); }
    .math-divider { border: none; border-top: 1px solid #1E2942; margin: 8px 0; }

    /* ── CTA block ────────────────────────────── */
    .cta-block {
      background: linear-gradient(135deg, #0041FF 0%, #0084FF 100%);
      padding: 44px 40px;
      margin: 52px 0 36px;
      border-radius: 4px;
      text-align: center;
    }
    .cta-eyebrow {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 14px;
    }
    .cta-h {
      font-family: var(--ff-display);
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .cta-p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
      max-width: 480px;
      margin: 0 auto 28px;
      line-height: 1.65;
    }
    .cta-btn {
      display: inline-block;
      background: #fff;
      color: var(--blue);
      font-weight: 700;
      font-size: 0.88rem;
      padding: 14px 32px;
      border-radius: 3px;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: transform .15s, box-shadow .15s;
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }
    .cta-anchor-note {
      margin-top: 12px;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.45);
    }

    /* ── Footer note ──────────────────────────── */
    .article-footer {
      padding: 28px 0;
      border-top: 2px solid var(--ink);
      font-size: 0.76rem;
      color: var(--muted);
    }
    .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
    .tag {
      background: var(--sand);
      color: var(--ink-soft);
      padding: 4px 10px;
      border-radius: 2px;
      font-size: 0.7rem;
      font-weight: 500;
    }

    /* ── Reading progress bar ────────────────── */
    .progress-bar-wrap {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 3px;
      z-index: 9999;
      background: transparent;
    }
    .progress-bar-fill {
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, #0041FF, #00C6FF);
      transition: width 0.05s linear;
    }

    /* ── Sticky bottom CTA ───────────────────── */
    .sticky-cta {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--ink);
      color: #fff;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      z-index: 999;
      transform: translateY(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      border-top: 2px solid var(--blue);
    }
    .sticky-cta.visible { transform: translateY(0); }
    .sticky-cta-text {
      font-size: 0.82rem;
      color: #94A3B8;
      flex: 1;
    }
    .sticky-cta-text strong { color: #fff; }
    .sticky-cta-btn {
      background: var(--blue);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 3px;
      text-decoration: none;
      white-space: nowrap;
      letter-spacing: 0.04em;
      flex-shrink: 0;
      transition: background .15s;
    }
    .sticky-cta-btn:hover { background: #0036D6; }
    .sticky-close {
      background: none; border: none; cursor: pointer;
      color: #64748B; font-size: 1.1rem; padding: 4px 8px;
      flex-shrink: 0;
    }
    .sticky-close:hover { color: #fff; }

    /* ── Timeline ────────────────────────────── */
    .timeline { margin: 32px 0; }
    .timeline-row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 0;
      position: relative;
      margin-bottom: 0;
    }
    .timeline-row:last-child .timeline-body { border-bottom: none; }
    .timeline-month {
      padding: 20px 18px 20px 0;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      border-right: 2px solid var(--rule);
      text-align: right;
      position: relative;
    }
    .timeline-month::after {
      content: '';
      position: absolute;
      right: -7px; top: 50%;
      transform: translateY(-50%);
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--blue);
      border: 2px solid #fff;
      box-shadow: 0 0 0 2px var(--blue);
    }
    .timeline-body {
      padding: 20px 0 20px 24px;
      border-bottom: 1px solid var(--rule);
    }
    .timeline-title {
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .timeline-items {
      list-style: none;
      display: flex; flex-wrap: wrap; gap: 6px;
    }
    .timeline-items li {
      font-size: 0.76rem;
      background: var(--sand);
      color: var(--ink-soft);
      padding: 3px 9px;
      border-radius: 2px;
    }
    .timeline-result {
      display: inline-block;
      margin-top: 8px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--green);
      background: var(--green-pale);
      padding: 3px 10px;
      border-radius: 2px;
    }

    /* ── Warning signs ───────────────────────── */
    .warning-list { list-style: none; margin: 24px 0; counter-reset: warn; }
    .warning-list li {
      counter-increment: warn;
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px 0;
      border-bottom: 1px solid var(--rule);
    }
    .warn-num {
      font-family: var(--ff-display);
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--red);
      opacity: 0.18;
      line-height: 1;
      flex-shrink: 0;
      min-width: 32px;
    }
    .warn-body {}
    .warn-title {
      font-weight: 600;
      color: var(--ink);
      font-size: 0.92rem;
      margin-bottom: 4px;
    }
    .warn-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ── Questions list ──────────────────────── */
    .q-list { list-style: none; margin: 24px 0; }
    .q-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid var(--rule);
      font-size: 0.92rem;
      align-items: flex-start;
    }
    .q-icon {
      width: 24px; height: 24px;
      background: var(--blue-pale);
      color: var(--blue);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem;
      font-weight: 800;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .q-list li strong { display: block; color: var(--ink); margin-bottom: 3px; }
    .q-list li span { color: var(--muted); font-size: 0.82rem; line-height: 1.55; }

    /* ── Info band ───────────────────────────── */
    .info-band {
      background: var(--blue-pale);
      border-left: 4px solid var(--blue);
      padding: 22px 28px;
      margin: 36px 0;
      border-radius: 0 3px 3px 0;
    }
    .info-band p {
      font-size: 0.9rem !important;
      color: var(--ink-soft) !important;
      margin: 0 !important;
      line-height: 1.65 !important;
    }
    .info-band strong { color: var(--blue) !important; }

    /* ── FAQ ─────────────────────────────────── */
    .faq-section { margin: 52px 0 36px; }
    .faq-title {
      font-family: var(--ff-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .faq-list { list-style: none; margin-top: 24px; }
    .faq-item {
      border-bottom: 1px solid var(--rule);
    }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      text-align: left;
      display: flex; justify-content: space-between; align-items: center;
      padding: 18px 0;
      font-family: var(--ff-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--ink);
      gap: 12px;
    }
    .faq-q:hover { color: var(--blue); }
    .faq-icon {
      font-size: 1.2rem; color: var(--blue);
      flex-shrink: 0; transition: transform .25s;
      font-weight: 300;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .3s ease, padding .3s ease;
    }
    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a p {
      font-size: 0.88rem !important;
      color: var(--muted) !important;
      line-height: 1.7 !important;
      padding-bottom: 18px !important;
      margin: 0 !important;
    }

    /* ── Social share ────────────────────────── */
    .share-section {
      display: flex; align-items: center; gap: 14px;
      padding: 24px 0;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      margin: 36px 0;
      flex-wrap: wrap;
    }
    .share-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .share-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 8px 16px;
      border-radius: 3px;
      font-size: 0.76rem;
      font-weight: 600;
      text-decoration: none;
      transition: opacity .15s;
    }
    .share-btn:hover { opacity: 0.8; }
    .share-btn.twitter { background: #000; color: #fff; }
    .share-btn.linkedin { background: #0A66C2; color: #fff; }
    .share-btn.copy { background: var(--sand); color: var(--ink); border: 1px solid var(--rule); cursor: pointer; border: none; font-family: var(--ff-body); }

    /* ── Author bio ──────────────────────────── */
    .author-bio {
      background: var(--sand);
      border-radius: 3px;
      padding: 28px 30px;
      display: flex; gap: 20px; align-items: flex-start;
      margin: 36px 0;
    }
    .author-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0041FF 0%, #00C6FF 100%);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 700; font-size: 1.1rem;
      font-family: var(--ff-display);
    }
    .author-info {}
    .author-name {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--ink);
      margin-bottom: 2px;
    }
    .author-role {
      font-size: 0.76rem;
      color: var(--blue);
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing: 0.04em;
    }
    .author-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ── Related articles ────────────────────── */
    .related-section { margin: 36px 0 52px; }
    .related-title {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--ink);
    }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .related-card {
      border: 1px solid var(--rule);
      border-radius: 3px;
      padding: 18px;
      cursor: pointer;
      transition: border-color .2s, transform .2s;
      text-decoration: none;
    }
    .related-card:hover { border-color: var(--blue); transform: translateY(-2px); }
    .related-card-cat {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }
    .related-card-title {
      font-family: var(--ff-display);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.35;
      margin-bottom: 8px;
    }
    .related-card-meta {
      font-size: 0.72rem;
      color: var(--muted);
    }

    /* ── Responsive ───────────────────────────── */
    @media (max-width: 600px) {
      html { font-size: 16px; }
      .pull-quote { margin: 36px 0; }
      .compare { grid-template-columns: 1fr; }
      .counter-band { flex-direction: column; gap: 12px; }
      .cta-block { padding: 32px 22px; }
      .math-box { padding: 24px 20px; }
      .timeline-row { grid-template-columns: 80px 1fr; }
      .timeline-month { font-size: 0.62rem; }
      .author-bio { flex-direction: column; }
      .sticky-cta { flex-wrap: wrap; }
      .sticky-cta-text { font-size: 0.75rem; }
    }

/* Premium overrides — article content */
:root {
  --ink: #0F172A;
  --ink-soft: #374151;
  --muted: #4B5563;
  --blue: #2563EB;
  --sand: #F8FAFC;
  --rule: #E5E7EB;
  --white: #FFFFFF;
  --ff-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
body { font-family: var(--ff-body) !important; font-size: 16px !important; line-height: 1.8 !important; color: var(--muted) !important; }
.wrap { max-width: 900px !important; padding: 0 24px !important; }
.hero-h1, h2, h3, .cta-h, .faq-title, .pillar-title { color: var(--ink) !important; font-weight: 800 !important; letter-spacing: -0.02em !important; }
.hero-deck, .subhead, .pillar-desc { color: var(--ink-soft) !important; font-weight: 600 !important; }
.article-body > .wrap, .article-body > div { padding-top: 80px; padding-bottom: 80px; border-top: 1px solid var(--rule); }
.topbar { border-bottom: 1px solid var(--rule) !important; background: var(--white); }
.data-table th { background: #F3F4F6 !important; font-weight: 700 !important; border: 1px solid var(--rule) !important; color: var(--ink) !important; }
.data-table td { border: 1px solid var(--rule) !important; color: var(--muted) !important; }
.data-table tr:hover td { background: #FAFBFC !important; }
.cta-block { background: var(--sand) !important; border: 1px solid var(--rule) !important; border-radius: 8px !important; padding: 64px 40px !important; margin: 80px 0 !important; }
.cta-btn, .sticky-cta-btn {
  display: inline-block !important; background: #0F172A !important; color: #fff !important;
  font-weight: 600 !important; font-size: 0.95rem !important; padding: 16px 40px !important;
  border-radius: 6px !important; text-decoration: none !important; transition: background .2s !important;
}
.cta-btn:hover, .sticky-cta-btn:hover { background: #1E293B !important; }
.sticky-cta { background: linear-gradient(180deg, #0F172A, #111827) !important; border-top: 1px solid var(--rule) !important; }
.sticky-cta-text { color: rgba(229,231,235,.88) !important; }
.sticky-cta-text strong { color: #fff !important; }
a { color: var(--blue) !important; }
.faq-section, .stats-grid, .pillar-grid { margin: 80px 0 !important; }
.entry-content .topbar{display:none!important}
