/* Intelligence article styles extracted and shared */


    :root {
      --primary: #0A1B4D;
      --primary-deep: #071433;
      --accent: #C99A3A;
      --accent-deep: #A97A2C;
      --bg: #ffffff;
      --surface-soft: #f7f9fc;
      --text: #1f2a36;
      --muted: #6E7480;
      --border: rgba(10, 27, 77, 0.10);
      --border-strong: rgba(10, 27, 77, 0.18);
    }

    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      line-height: 1.75;
    }

    a { color: inherit; text-decoration: none; }

    .article-page,
    .article-page *,
    .article-page *::before,
    .article-page *::after { box-sizing: border-box; }

    .wide-shell { width: min(1320px, calc(100% - 64px)); margin: 0 auto; }
    .mid-shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
    .narrow-shell { width: min(760px, calc(100% - 40px)); margin: 0 auto; }

    .index-topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(247, 248, 250, 0.97);
      border-bottom: 1px solid rgba(10, 27, 77, 0.08);
      box-shadow: 0 8px 24px rgba(10, 27, 77, 0.06);
    }

    .index-topbar-inner {
      width: min(1320px, calc(100% - 96px));
      margin: 0 auto;
      min-height: 94px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .index-brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      padding: 4px 0 10px 62px;
    }

    .index-brand img {
      display: block;
      width: auto;
      height: auto;
      max-height: 88px;
      max-width: 320px;
      object-fit: contain;
    }

    .index-nav {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .index-nav a {
      color: var(--primary);
      font-size: 0.92rem;
      line-height: 1;
      transition: color 160ms ease, opacity 160ms ease;
      position: relative;
      padding-bottom: 4px;
    }

    .index-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: width 180ms ease;
    }

    .index-nav a:hover::after { width: 100%; }

    .index-nav .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      border: 1px solid rgba(10, 27, 77, 0.22);
      color: var(--primary);
      background: rgba(255,255,255,0.48);
    }

    .index-nav .nav-cta::after { display: none; }

    .article-hero {
      padding: 92px 0 72px;
      background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
      border-bottom: 1px solid var(--border);
    }

    .article-hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
      gap: 48px;
      align-items: end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--accent-deep);
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1px;
      background: var(--accent);
    }

    h1, h2, h3 {
      margin: 0;
      color: var(--primary);
      font-family: "Inter", system-ui, -apple-system, sans-serif;
    }

    h1 {
      font-size: clamp(2.45rem, 4.2vw, 4.5rem);
      font-weight: 400;
      line-height: 1.02;
      letter-spacing: -0.045em;
      max-width: 12ch;
      text-wrap: balance;
    }

    .article-deck {
      margin-top: 22px;
      max-width: 60ch;
      font-size: 1.02rem;
      line-height: 1.9;
      color: var(--muted);
    }

    .article-meta {
      padding-top: 22px;
      border-top: 1px solid var(--border-strong);
    }

    .article-meta p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .article-body-wrap { padding: 84px 0 0; }
    .article-content { max-width: 720px; }

    .article-content h2 {
      font-size: clamp(1.55rem, 2vw, 2rem);
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-top: 56px;
      margin-bottom: 18px;
      max-width: 19ch;
    }

    .article-content p {
      margin: 0;
      color: var(--text);
      font-size: 1.06rem;
      line-height: 1.95;
      letter-spacing: -0.003em;
    }

    .article-content p + p { margin-top: 20px; }

    .article-content ul {
      list-style: none;
      padding: 0;
      margin: 24px 0;
      display: grid;
      gap: 12px;
    }

    .article-content li {
      position: relative;
      padding-left: 18px;
      color: var(--text);
      font-size: 1.03rem;
      line-height: 1.88;
    }

    .article-content li::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
    }

    .article-pullquote {
      margin: 34px 0;
      padding: 28px 0 0;
      border-top: 1px solid var(--border-strong);
    }

    .article-pullquote p {
      font-size: 1.28rem;
      line-height: 1.55;
      color: var(--primary);
      max-width: 25ch;
      letter-spacing: -0.02em;
    }

    .article-cta {
      margin-top: 88px;
      padding: 42px 0 0;
      border-top: 1px solid var(--border-strong);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
    }

    .article-cta-copy { max-width: 50ch; }

    .article-cta-copy h3 {
      font-size: clamp(1.45rem, 2vw, 1.9rem);
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .article-cta-copy p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.85;
    }

    .btn-primary, .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      font-size: 0.94rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      transition:
        background 220ms ease,
        border-color 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
    }

    .btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); }

    .btn-primary {
      background: #0A1B4D;
      color: #F4F1EA;
      border: 1px solid #0A1B4D;
      box-shadow: 0 8px 18px rgba(10, 27, 77, 0.12);
    }

    .btn-primary:hover {
      background: #071433;
      border-color: #071433;
      box-shadow: 0 16px 30px rgba(10, 27, 77, 0.22);
    }

    .btn-secondary {
      border: 1px solid #0A1B4D;
      color: #0A1B4D;
      background: #F4F1EA;
      box-shadow: 0 6px 14px rgba(10, 27, 77, 0.06);
    }

    .btn-secondary:hover {
      background: #0A1B4D;
      color: #F4F1EA;
      border-color: #0A1B4D;
    }

    .related-nav {
      margin-top: 96px;
      padding: 72px 0;
      background: #fbfcfe;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 36px;
    }

    .related-item {
      padding-top: 22px;
      border-top: 1px solid var(--border-strong);
    }

    .related-item strong {
      display: block;
      color: var(--primary);
      font-size: 1.08rem;
      line-height: 1.35;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .related-item p {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.82;
      margin: 0;
      max-width: 40ch;
    }

    .related-item a {
      display: inline-flex;
      margin-top: 14px;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.94rem;
    }

    .related-item a::after {
      content: "→";
      margin-left: 8px;
      transition: transform 180ms ease;
    }

    .related-item a:hover::after { transform: translateX(3px); }

    footer {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 24px 0 36px;
      color: #6d7781;
      font-size: 0.88rem;
      line-height: 1.6;
      text-align: center;
    }

    @media (max-width: 980px) {
      .article-hero-inner, .related-grid { grid-template-columns: 1fr; }
      .article-meta { max-width: 60ch; }
    }

    @media (max-width: 840px) {
      .index-topbar-inner {
        width: calc(100% - 40px);
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      .index-brand { padding-left: 4px; }
      .index-brand img {
        max-height: 74px;
        max-width: 270px;
      }
      .index-nav { gap: 14px; }
    }

    @media (max-width: 720px) {
      .wide-shell, .mid-shell, .narrow-shell { width: calc(100% - 28px); }
      .article-hero { padding: 64px 0 54px; }

      h1 {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 3rem);
      }

      .article-deck, .article-content p, .article-content li { font-size: 0.98rem; }
      .article-content h2 { margin-top: 44px; }
      .article-cta { margin-top: 64px; }
      .btn-primary, .btn-secondary { width: 100%; }

      .index-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
      }

      .index-brand img {
        max-height: 68px;
        max-width: 240px;
      }
    }
  

/* Diagnostic visual standardization for article pages */
.intelligence-article-page main.container {
  padding-top: 22px;
}
.intelligence-article-page .article-hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 46px 36px 40px;
  margin: 8px 0 30px;
  min-height: 0;
  border: 1px solid rgba(13, 44, 99, 0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.90) 0%, rgba(244,248,253,0.96) 52%, rgba(235,243,251,0.98) 100%);
  box-shadow: 0 30px 80px rgba(7, 26, 61, 0.14);
}
.intelligence-article-page .article-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at top left, rgba(201,154,58,0.12), transparent 24%), linear-gradient(90deg, rgba(10,27,77,0.025) 1px, transparent 1px), linear-gradient(180deg, rgba(10,27,77,0.025) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.08));
}
.intelligence-article-page .article-body-wrap {
  padding-top: 0;
}
.intelligence-article-page .article-content,
.intelligence-article-page .related-nav {
  position: relative;
}
.intelligence-article-page .article-content {
  padding: 0 4px;
}


.intelligence-article-page main.container { padding-top: 22px; }
