@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #0a0a0f;
  --bg2: #0d0d16;
  --bg3: #1a1a28;
  --fg: #e0e0e8;
  --fg2: #888894;
  --accent: #7c6cff;
  --green: #34d399;
  --red: #f87171;
  --orange: #fb923c;
  --yellow: #fbbf24;
  --blue: #60a5fa;
  --purple: #a78bfa;
  --cyan: #22d3ee;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Reading progress */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green));
  z-index: 200; width: 0%; transition: width 0.1s linear;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f1a2e 40%, #162038 100%);
  padding: 96px 24px 48px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-content { max-width: 960px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(28px, 5vw, 48px); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #22d3ee 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero .subtitle {
  font-size: 17px; color: var(--fg2); margin-bottom: 36px;
  max-width: 740px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.hero-stats {
  display: flex; justify-content: center; gap: 40px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; }
.hero-stat-value {
  font-size: 44px; font-weight: 700; letter-spacing: -0.03em; color: #fff;
}
.hero-stat-label { font-size: 12px; color: var(--fg2); margin-top: 2px; }
.hero-sources { font-size: 12px; color: var(--fg2); }
.hero-sources a { color: var(--fg2); text-decoration: underline; }

/* Author byline */
.author-byline {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px; padding: 12px 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 60px;
}
.author-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.2); }
.author-info { display: flex; flex-direction: column; text-align: left; }
.author-name { font-size: 15px; color: var(--fg); font-weight: 600; letter-spacing: 0.01em; }
.author-date { font-size: 12px; color: var(--fg2); margin-top: 1px; }

/* Sticky Nav */
.sticky-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,15,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  gap: 4px; padding: 8px 16px; overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
  padding: 8px 16px; border-radius: 6px; font-size: 14px;
  font-weight: 500; color: var(--fg2); white-space: nowrap; transition: all 0.15s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.nav-link.active { color: #fff; background: var(--accent); text-decoration: none; }

/* Sections */
.section { padding: 80px 24px; }
.section.alt { background: var(--bg2); }
.container { max-width: 1100px; margin: 0 auto; }
.section h2 {
  font-size: 30px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 12px; position: relative; display: inline-block;
}
.section h2::after {
  content: ''; display: block; width: 48px; height: 3px;
  margin-top: 10px; border-radius: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}
.section-desc {
  font-size: 16px; color: var(--fg2); margin-bottom: 32px;
  max-width: 780px; line-height: 1.8; letter-spacing: 0.005em;
}
.section-prose {
  font-size: 16px; color: var(--fg); line-height: 1.85;
  max-width: 780px; margin-bottom: 28px; letter-spacing: 0.005em;
}
.section-prose strong { color: #fff; }
.cite {
  font-size: 12px; color: var(--purple); font-weight: 500;
  white-space: nowrap;
}

/* Chart cards */
.chart-row { display: flex; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.chart-card {
  flex: 1; min-width: 300px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.chart-card:hover {
  transform: translateY(-2px); box-shadow: 0 4px 28px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.14);
}
.chart-card.wide { flex: 1 1 100%; margin-bottom: 32px; }
.chart-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.chart-card .chart-desc { font-size: 13.5px; color: var(--fg2); margin-bottom: 14px; line-height: 1.7; }

/* Callout banners */
.callout-banner {
  padding: 20px 24px; border-left: 4px solid var(--cyan);
  background: rgba(34,211,238,0.06); border-radius: 0 10px 10px 0;
  margin-bottom: 24px;
}
.callout-banner .cb-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.callout-banner .cb-body { font-size: 14px; color: var(--fg2); line-height: 1.7; margin: 0; }

/* ── Interactive MCP Diagram ─────────────────────────── */
.diagram-wrapper {
  position: relative; width: 100%; height: 500px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08); overflow: hidden;
}
.diagram-wrapper canvas { display: block; }
.diagram-controls {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 16px;
}
.diagram-btn {
  padding: 10px 24px; border-radius: 8px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  color: var(--fg2); font-family: inherit;
}
.diagram-btn:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
.diagram-btn.active {
  background: rgba(34,211,238,0.15); color: var(--cyan);
  border-color: var(--cyan); box-shadow: 0 0 20px rgba(34,211,238,0.15);
}
.diagram-btn.active-red {
  background: rgba(248,113,113,0.15); color: var(--red);
  border-color: var(--red); box-shadow: 0 0 20px rgba(248,113,113,0.15);
}
.diagram-legend {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 12px; font-size: 12px; color: var(--fg2);
}
.diagram-legend span { display: flex; align-items: center; gap: 6px; }
.diagram-footnote {
  text-align: center; margin-top: 14px;
  font-size: 13px; color: var(--fg2); line-height: 1.6;
  font-style: italic;
}
.legend-dot {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}

/* Analogy cards */
.analogy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.analogy-card {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 24px; transition: transform 0.2s, border-color 0.2s;
}
.analogy-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.14); }
.analogy-card .ac-icon { font-size: 32px; margin-bottom: 12px; }
.analogy-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.analogy-card .ac-before { font-size: 13px; color: var(--red); margin-bottom: 4px; }
.analogy-card .ac-after { font-size: 13px; color: var(--green); margin-bottom: 8px; }
.analogy-card p { font-size: 13px; color: var(--fg2); line-height: 1.6; }
.analogy-card .ac-source { font-size: 11px; color: var(--purple); margin-top: 8px; }

/* Stat bars */
.stat-bar-group { margin-bottom: 20px; }
.stat-bar-label { font-size: 13px; color: var(--fg); margin-bottom: 6px; display: flex; justify-content: space-between; }
.stat-bar-track { height: 28px; background: rgba(255,255,255,0.06); border-radius: 6px; overflow: hidden; position: relative; }
.stat-bar-fill { height: 100%; border-radius: 6px; transition: width 1s ease; display: flex; align-items: center; padding-left: 10px; font-size: 12px; font-weight: 600; color: #fff; }

/* Workflow comparison */
.workflow-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.workflow-col {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px;
}
.workflow-col h4 {
  font-size: 14px; font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.workflow-step {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px;
  border-radius: 6px; margin-bottom: 6px; font-size: 13px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
}
.workflow-step .step-num {
  width: 24px; height: 24px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 11px;
  font-weight: 700; flex-shrink: 0;
}
.workflow-step .step-text { font-size: 12px; color: var(--fg2); }
.workflow-step .step-time { margin-left: auto; font-size: 11px; font-weight: 600; white-space: nowrap; }
.workflow-total {
  margin-top: 12px; padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-align: center;
}

/* Agent Shadow IT additions */
.agent-control-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(34,211,238,0.09), transparent 34%),
    linear-gradient(225deg, rgba(167,139,250,0.1), transparent 42%),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 26px rgba(0,0,0,0.28);
}
.agent-control-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 78%);
}
.agent-card-head,
.agent-console-grid {
  position: relative;
  z-index: 1;
}
.agent-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}
.agent-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.agent-card-head h3 {
  margin-bottom: 6px;
  font-size: 18px;
}
.agent-card-head p {
  max-width: 620px;
  color: var(--fg2);
  font-size: 13.5px;
  line-height: 1.7;
}
.agent-mode-switch {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(0,0,0,0.22);
  flex-shrink: 0;
}
.agent-mode-btn {
  border: 0;
  border-radius: 7px;
  padding: 9px 14px;
  color: var(--fg2);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
}
.agent-mode-btn:hover { color: #fff; }
.agent-mode-btn.active {
  color: var(--green);
  background: rgba(52,211,153,0.13);
  box-shadow: inset 0 0 0 1px rgba(52,211,153,0.35);
}
.agent-mode-btn.active.danger {
  color: var(--red);
  background: rgba(248,113,113,0.13);
  box-shadow: inset 0 0 0 1px rgba(248,113,113,0.35);
}
.building-request-panel,
.security-elevator,
.enterprise-building {
  position: relative;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  background: rgba(8,8,16,0.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.building-request-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}
.request-card {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}
.request-card span,
.elevator-title span,
.building-label span {
  display: block;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.request-card p {
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}
.agent-badge-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(34,211,238,0.2), transparent 38%),
    rgba(34,211,238,0.055);
  border: 1px solid rgba(34,211,238,0.18);
}
.agent-badge-card.active-agent {
  background:
    radial-gradient(circle at 30% 30%, rgba(34,211,238,0.25), transparent 42%),
    rgba(34,211,238,0.08);
  border-color: rgba(34,211,238,0.28);
}
.agent-badge-orb {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  background: rgba(34,211,238,0.14);
  border: 1px solid rgba(34,211,238,0.35);
  box-shadow: 0 0 24px rgba(34,211,238,0.15);
}
.agent-badge-card strong {
  display: block;
  color: #fff;
  font-size: 12.5px;
  margin-bottom: 3px;
}
.agent-badge-card small {
  display: block;
  color: var(--fg2);
  font-size: 10.8px;
  line-height: 1.45;
}
.sase-cloud {
  position: relative;
  overflow: hidden;
  padding: 13px 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 15%, rgba(96,165,250,0.22), transparent 35%),
    radial-gradient(circle at 82% 80%, rgba(52,211,153,0.16), transparent 32%),
    rgba(96,165,250,0.055);
  border: 1px solid rgba(96,165,250,0.18);
}
.sase-cloud::before,
.sase-cloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.045);
}
.sase-cloud::before {
  width: 90px;
  height: 44px;
  right: -18px;
  top: -14px;
}
.sase-cloud::after {
  width: 70px;
  height: 34px;
  left: -18px;
  bottom: -12px;
}
.sase-cloud span,
.sase-cloud strong,
.sase-cloud small {
  position: relative;
  z-index: 1;
  display: block;
}
.sase-cloud span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.sase-cloud strong {
  color: #fff;
  font-size: 11.5px;
  line-height: 1.45;
  margin-bottom: 6px;
}
.sase-cloud small {
  color: var(--fg2);
  font-size: 10.8px;
  line-height: 1.45;
}
.access-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.access-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg2);
  font-size: 11px;
  font-weight: 700;
}
.access-legend i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
}
.legend-allowed { background: var(--green); box-shadow: 0 0 12px rgba(52,211,153,0.45); }
.legend-review { background: var(--yellow); box-shadow: 0 0 12px rgba(251,191,36,0.4); }
.legend-blocked { background: var(--red); box-shadow: 0 0 12px rgba(248,113,113,0.45); }
.security-elevator {
  padding: 16px;
}
.elevator-title {
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
}
.agent-control-card[data-agent-state="governed"] .elevator-title {
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.24);
}
.elevator-title strong,
.building-label strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
}
.elevator-shaft {
  position: relative;
  display: grid;
  gap: 10px;
}
.elevator-shaft::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(248,113,113,0.16));
}
.agent-control-card[data-agent-state="governed"] .elevator-shaft::before {
  background: linear-gradient(180deg, var(--cyan), var(--green));
}
.elevator-gate {
  position: relative;
  min-height: 76px;
  padding: 12px 12px 12px 50px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.elevator-gate::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid rgba(8,8,16,0.95);
  box-shadow: 0 0 16px rgba(248,113,113,0.42);
}
.elevator-gate.strong {
  background: rgba(52,211,153,0.07);
  border-color: rgba(52,211,153,0.24);
  transform: translateX(2px);
}
.elevator-gate.strong::before {
  background: var(--green);
  box-shadow: 0 0 16px rgba(52,211,153,0.42);
}
.elevator-gate span {
  display: block;
  color: var(--fg2);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.elevator-gate strong {
  display: block;
  color: #fff;
  font-size: 12.5px;
  margin-bottom: 4px;
}
.elevator-gate small {
  display: block;
  color: var(--fg2);
  font-size: 11px;
  line-height: 1.45;
}
.enterprise-building {
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px),
    rgba(8,8,16,0.68);
  background-size: 24px 100%;
}
.building-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.building-label span { margin-bottom: 0; }
.building-label strong {
  color: var(--red);
  text-align: right;
}
.agent-control-card[data-agent-state="governed"] .building-label strong {
  color: var(--green);
}
.building-floor {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: stretch;
  min-height: 88px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(248,113,113,0.16);
  transition: border-color 0.2s, background 0.2s;
}
.agent-control-card[data-agent-state="governed"] .building-floor {
  border-color: rgba(52,211,153,0.18);
  background: rgba(52,211,153,0.035);
}
.building-floor.restricted {
  border-color: rgba(248,113,113,0.24);
}
.floor-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  border-radius: 9px;
  background: rgba(0,0,0,0.2);
}
.floor-meta span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.floor-meta strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
}
.floor-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
}
.room-node {
  position: relative;
  min-height: 58px;
  padding: 10px 11px 10px 32px;
  border-radius: 9px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(248,113,113,0.18);
  transition: border-color 0.2s, background 0.2s, transform 0.2s, opacity 0.2s;
}
.room-node::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(248,113,113,0.45);
}
.room-node.allowed {
  border-color: rgba(52,211,153,0.3);
  background: rgba(52,211,153,0.08);
  transform: translateY(-1px);
}
.room-node.allowed::before {
  background: var(--green);
  box-shadow: 0 0 14px rgba(52,211,153,0.45);
}
.room-node.review {
  border-color: rgba(251,191,36,0.32);
  background: rgba(251,191,36,0.07);
}
.room-node.review::before {
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(251,191,36,0.4);
}
.room-node.blocked {
  border-color: rgba(248,113,113,0.28);
  background: rgba(248,113,113,0.065);
  opacity: 0.76;
}
.room-node.blocked::before {
  content: '×';
  width: 15px;
  height: 15px;
  top: 10px;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0f;
  font-size: 12px;
  font-weight: 900;
}
.room-node strong {
  display: block;
  color: #fff;
  font-size: 12.5px;
  margin-bottom: 3px;
}
.room-node small {
  display: block;
  color: var(--fg2);
  font-size: 11px;
  line-height: 1.4;
}
.agent-fabric-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(220px, 0.85fr) minmax(360px, 1.35fr);
  gap: 16px;
  align-items: stretch;
}
.fabric-origin-panel,
.fabric-control-panel,
.fabric-zone-panel {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  background: rgba(8,8,16,0.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.fabric-origin-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}
.prompt-bubble {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}
.prompt-bubble span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.prompt-bubble p {
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}
.agent-orb {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 142px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(34,211,238,0.28), transparent 35%),
    linear-gradient(135deg, rgba(34,211,238,0.1), rgba(167,139,250,0.1));
  border: 1px solid rgba(34,211,238,0.18);
}
.agent-orb::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 16px;
}
.agent-orb span {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  background: rgba(34,211,238,0.15);
  border: 1px solid rgba(34,211,238,0.35);
  box-shadow: 0 0 24px rgba(34,211,238,0.16);
}
.agent-orb strong {
  color: #fff;
  font-size: 13px;
  text-align: center;
}
.origin-note {
  color: var(--fg2);
  font-size: 12.5px;
  line-height: 1.65;
  margin: 0;
}
.fabric-control-panel {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 16px;
}
.fabric-control-panel::before {
  content: '';
  position: absolute;
  top: 58px;
  bottom: 58px;
  left: 29px;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(248,113,113,0.18));
}
.agent-control-card[data-agent-state="governed"] .fabric-control-panel::before {
  background: linear-gradient(180deg, var(--cyan), var(--green));
}
.fabric-path-label {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--red);
  font-size: 11.5px;
  font-weight: 800;
  text-align: center;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.22);
}
.agent-control-card[data-agent-state="governed"] .fabric-path-label {
  color: var(--green);
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.24);
}
.fabric-gate {
  position: relative;
  z-index: 1;
  min-height: 68px;
  padding: 10px 11px 10px 54px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.fabric-gate span {
  position: absolute;
  top: 12px;
  left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  background: rgba(248,113,113,0.22);
  border: 1px solid rgba(248,113,113,0.34);
}
.fabric-gate.strong {
  background: rgba(52,211,153,0.07);
  border-color: rgba(52,211,153,0.22);
  transform: translateX(2px);
}
.fabric-gate.strong span {
  background: rgba(52,211,153,0.2);
  border-color: rgba(52,211,153,0.36);
}
.fabric-gate strong {
  display: block;
  color: #fff;
  font-size: 12px;
  margin-bottom: 4px;
}
.fabric-gate small {
  display: block;
  color: var(--fg2);
  font-size: 11px;
  line-height: 1.45;
}
.fabric-zone-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}
.fabric-zone {
  position: relative;
  min-height: 168px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}
.fabric-zone.restricted {
  border-color: rgba(248,113,113,0.16);
}
.agent-control-card[data-agent-state="governed"] .fabric-zone {
  background: rgba(52,211,153,0.035);
}
.zone-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 12px;
}
.zone-title span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.zone-title strong {
  color: #fff;
  font-size: 12px;
  text-align: right;
}
.zone-node {
  position: relative;
  padding: 11px 12px 11px 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 9px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.zone-node::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(248,113,113,0.45);
}
.zone-node.allowed {
  border-color: rgba(52,211,153,0.28);
  background: rgba(52,211,153,0.075);
  transform: translateY(-1px);
}
.zone-node.allowed::before {
  background: var(--green);
  box-shadow: 0 0 14px rgba(52,211,153,0.45);
}
.zone-node.blocked {
  border-color: rgba(248,113,113,0.24);
  background: rgba(248,113,113,0.055);
  opacity: 0.74;
}
.zone-node.blocked::before {
  content: '×';
  width: 15px;
  height: 15px;
  top: 10px;
  left: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0f;
  font-size: 12px;
  font-weight: 900;
}
.zone-node.review {
  border-color: rgba(251,191,36,0.28);
  background: rgba(251,191,36,0.06);
}
.zone-node.review::before {
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(251,191,36,0.4);
}
.zone-node strong {
  display: block;
  color: #fff;
  font-size: 12.5px;
  margin-bottom: 3px;
}
.zone-node small {
  display: block;
  color: var(--fg2);
  font-size: 11px;
  line-height: 1.45;
}
.fabric-explainer-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.fabric-verdict,
.microseg-note {
  padding: 15px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}
.fabric-verdict.weak {
  background: rgba(248,113,113,0.08);
  border-color: rgba(248,113,113,0.24);
}
.fabric-verdict.strong {
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.28);
}
.fabric-verdict span,
.microseg-note span {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}
.fabric-verdict p,
.microseg-note p {
  color: var(--fg2);
  font-size: 12.5px;
  line-height: 1.65;
  margin: 0;
}
.agent-console-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.25fr) minmax(220px, 0.9fr);
  gap: 16px;
}
.agent-passport-panel,
.agent-checkpoint-panel,
.agent-tool-panel {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  background: rgba(8,8,16,0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.agent-passport-panel {
  padding: 18px;
}
.agent-avatar {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(34,211,238,0.24), rgba(167,139,250,0.2));
  border: 1px solid rgba(255,255,255,0.14);
}
.agent-passport-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.agent-passport-subtitle {
  min-height: 66px;
  color: var(--fg2);
  font-size: 12.5px;
  line-height: 1.6;
}
.agent-identity-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.agent-identity-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}
.agent-identity-list span {
  color: var(--fg2);
  font-size: 11px;
}
.agent-identity-list strong {
  color: #fff;
  font-size: 11px;
  text-align: right;
}
.agent-checkpoint-panel {
  padding: 16px;
}
.agent-checkpoint-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.agent-checkpoint {
  position: relative;
  min-height: 128px;
  padding: 13px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.agent-checkpoint::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
  opacity: 0.7;
}
.agent-checkpoint.strong {
  background: rgba(52,211,153,0.07);
  border-color: rgba(52,211,153,0.22);
  transform: translateY(-2px);
}
.agent-checkpoint.strong::after { background: var(--green); }
.agent-checkpoint span {
  display: inline-flex;
  width: 28px;
  height: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  background: rgba(255,255,255,0.1);
}
.agent-checkpoint strong {
  display: block;
  color: #fff;
  font-size: 12px;
  margin-bottom: 6px;
}
.agent-checkpoint small {
  display: block;
  color: var(--fg2);
  font-size: 11px;
  line-height: 1.45;
}
.agent-verdict {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(248,113,113,0.24);
  background: rgba(248,113,113,0.08);
}
.agent-verdict.strong {
  border-color: rgba(52,211,153,0.28);
  background: rgba(52,211,153,0.08);
}
.agent-verdict span {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
}
.agent-verdict p {
  color: var(--fg2);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
.agent-tool-panel {
  padding: 16px;
}
.agent-tool-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.agent-tool-head span {
  color: var(--fg2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.agent-tool-head strong {
  color: var(--red);
  font-size: 12px;
  text-align: right;
}
.agent-control-card[data-agent-state="governed"] .agent-tool-head strong {
  color: var(--green);
}
.agent-tool-list {
  display: grid;
  gap: 10px;
}
.agent-tool {
  padding: 12px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.agent-tool span {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.agent-tool strong {
  color: var(--fg2);
  font-size: 11px;
  font-weight: 600;
}
.agent-model { margin-bottom: 28px; }
.agent-model .workflow-step > div {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.glasswing-panel {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 28px 0 32px;
}
.glasswing-stat {
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(34,211,238,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(34,211,238,0.16);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}
.glasswing-stat span {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.glasswing-stat p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--fg2);
  margin: 0;
}
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 32px;
}
.fabric-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 20px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}
.fabric-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--green));
  opacity: 0.8;
}
.fabric-card span {
  display: inline-flex;
  width: 34px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  background: rgba(34,211,238,0.09);
  border: 1px solid rgba(34,211,238,0.2);
}
.fabric-card h3 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}
.fabric-card p {
  color: var(--fg2);
  font-size: 12.5px;
  line-height: 1.65;
  margin: 0;
}

/* Horizontal Timeline */
.h-timeline {
  position: relative;
  padding: 32px 0 8px;
  overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
}
.h-timeline::-webkit-scrollbar { display: none; }
.h-timeline-track {
  position: absolute;
  top: 39px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--blue));
  border-radius: 2px;
}
.h-timeline-items {
  display: flex;
  gap: 0;
  position: relative;
  min-width: max-content;
}
.h-tl-item {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.h-tl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--bg);
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(34,211,238,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.h-tl-item:hover .h-tl-dot {
  transform: scale(1.3);
  box-shadow: 0 0 18px rgba(34,211,238,0.5);
}
.h-tl-card {
  margin-top: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  width: 140px;
  transition: transform 0.2s, border-color 0.2s;
}
.h-tl-item:hover .h-tl-card {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}
.h-tl-date {
  font-size: 11px; font-weight: 700;
  color: var(--cyan); letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.h-tl-title {
  font-size: 13px; font-weight: 600;
  color: var(--fg); margin-bottom: 4px;
  line-height: 1.3;
}
.h-tl-body {
  font-size: 11px; color: var(--fg2);
  line-height: 1.5;
}
@media (max-width: 700px) {
  .h-tl-item { flex: 0 0 130px; }
  .h-tl-card { width: 120px; padding: 10px 8px; }
}

/* Key findings / stat cards */
.findings-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.finding-card {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 18px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.finding-card:hover {
  transform: translateY(-2px); box-shadow: 0 4px 28px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.14);
}
.finding-card .fc-stat { font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.finding-card .fc-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.finding-card .fc-body { font-size: 11px; color: var(--fg2); line-height: 1.5; }

/* Adopter logos grid */
.adopter-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.adopter-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 14px; text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.adopter-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.18); }
.adopter-card .ad-name { font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 2px; }
.adopter-card .ad-date { font-size: 11px; color: var(--cyan); }
.adopter-card .ad-role { font-size: 11px; color: var(--fg2); margin-top: 2px; }

/* Methodology */
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; }
.method-card {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 20px; box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.method-card:hover { transform: translateY(-2px); box-shadow: 0 4px 28px rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.14); }
.method-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.method-card p { font-size: 13px; color: var(--fg2); line-height: 1.6; }
.method-card a { color: var(--accent); }
.method-tag { margin-top: 10px; font-size: 11px; color: var(--purple); font-weight: 500; }

.method-toggle { margin-top: 0; }
.method-toggle-btn {
  cursor: pointer; font-size: 15px; font-weight: 600; color: var(--accent);
  padding: 14px 20px; background: rgba(124,108,255,0.06);
  border: 1px solid rgba(124,108,255,0.2); border-radius: 10px;
  list-style: none; display: flex; align-items: center; gap: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.method-toggle-btn:hover { background: rgba(124,108,255,0.12); border-color: rgba(124,108,255,0.35); }
.method-toggle-btn::before { content: '\25B6'; font-size: 11px; transition: transform 0.2s; display: inline-block; }
.method-toggle[open] .method-toggle-btn::before { transform: rotate(90deg); }
.method-toggle-btn::-webkit-details-marker { display: none; }
.method-toggle .method-grid { margin-top: 20px; }
.method-toggle[open] .method-grid { animation: fadeInUp 0.3s ease both; }

/* Conclusion */
.conclusion-box {
  margin-top: 40px; padding: 28px;
  background: rgba(255,255,255,0.03); border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--cyan), var(--blue)) 1;
  border-radius: 12px; box-shadow: 0 4px 28px rgba(0,0,0,0.3);
}
.conclusion-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.conclusion-box .cb-lead { font-size: 14px; color: var(--fg); line-height: 1.7; margin-bottom: 16px; }
.conclusion-box .cb-detail { font-size: 13px; color: var(--fg2); line-height: 1.7; margin-bottom: 12px; }
.conclusion-box .cb-detail strong { color: var(--fg); }
.conclusion-box .cb-closing { font-size: 14px; color: var(--fg); line-height: 1.7; font-weight: 500; }
.conclusion-box .cb-actions {
  list-style: none; padding: 0; margin: 0 0 16px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.conclusion-box .cb-actions li {
  font-size: 13px; color: var(--fg2); line-height: 1.7; padding: 12px 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
}
.conclusion-box .cb-actions li strong { color: var(--fg); }

/* Conclusion columns */
.conclusion-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .conclusion-columns { grid-template-columns: 1fr; }
}

/* Method publication name */
.method-pub { font-size: 13px; color: var(--cyan); font-weight: 500; margin-bottom: 6px; }

/* Footer */
footer {
  padding: 28px 24px; text-align: center; font-size: 12px;
  color: var(--fg2); border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-note { margin-top: 6px; font-size: 11px; opacity: 0.5; }
.view-counter { margin-top: 12px; }
.view-counter img { height: 20px; border-radius: 4px; opacity: 0.7; transition: opacity 0.2s; }
.view-counter img:hover { opacity: 1; }

/* Cisco Live 2026 Mid-Market additions */
.live26-page {
  --live-ink: #eef7ff;
  --live-muted: #93a5b8;
  --live-panel: rgba(9, 20, 28, 0.82);
  --live-line: rgba(148, 210, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.035), transparent 420px),
    #080b10;
  color: var(--live-ink);
}

.live26-page .reading-progress {
  background: linear-gradient(90deg, #22d3ee, #34d399, #fbbf24);
}

.live26-page .sticky-nav {
  background: rgba(8, 11, 16, 0.9);
  border-color: rgba(148, 210, 255, 0.11);
}

.live26-page .nav-inner {
  max-width: 1160px;
  padding: 10px 18px;
}

.live26-page .nav-link {
  border-radius: 999px;
  font-size: 13px;
  padding: 7px 14px;
}

.live26-page .nav-link.active {
  color: #061014;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.live26-page .section {
  padding: 72px 24px;
  background: transparent;
}

.live26-page .section.alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.012);
  border-top: 1px solid rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.035);
}

.live26-page .container {
  max-width: 1060px;
}

.live26-page .section h2 {
  max-width: 780px;
  color: #fff;
  font-size: 32px;
  letter-spacing: 0;
}

.live26-page .section h2::after {
  width: 62px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.live26-page .section-desc {
  max-width: 760px;
  margin-bottom: 26px;
  color: #a8b5c5;
  font-size: 17px;
  line-height: 1.7;
}

.live26-page .section-prose {
  max-width: 790px;
  margin-bottom: 24px;
  color: #d9e3ee;
  font-size: 17px;
  line-height: 1.82;
}

.live26-page .section-prose strong {
  color: #fff;
}

.live26-page .chart-row {
  gap: 16px;
  margin: 32px 0;
  align-items: stretch;
}

.live26-page .chart-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border-radius: 10px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.026)),
    rgba(8, 15, 22, 0.78);
  border-color: rgba(148, 210, 255, 0.13);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}

.live26-page .chart-card:hover {
  transform: none;
  border-color: rgba(34, 211, 238, 0.24);
  box-shadow: 0 22px 58px rgba(0,0,0,0.28);
}

.live26-page .chart-card h3 {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0;
}

.live26-page .chart-card .chart-desc {
  min-height: 48px;
  color: #95a5b5;
  margin-bottom: 12px;
}

.live26-page .chart-card canvas {
  flex: 1;
  min-height: 230px;
  max-height: 280px;
}

.live26-page #aiReadinessChart {
  min-height: 260px;
}

.live26-page .chart-card.wide {
  min-height: auto;
}

.live26-brief {
  max-width: 1060px;
  margin: 24px auto 0;
  padding: 0 24px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr);
  gap: 14px;
  align-items: stretch;
}

.live26-brief > div,
.live26-brief > p {
  border-radius: 10px;
  border: 1px solid rgba(148, 210, 255, 0.13);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}

.live26-brief > div {
  padding: 18px 20px;
}

.live26-brief > div span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live26-brief > div strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.live26-brief > p {
  margin: 0;
  padding: 18px;
  color: #a8b5c5;
  font-size: 13px;
  line-height: 1.65;
}

.live26-hero {
  position: relative;
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 211, 238, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse at 18% 20%, rgba(34, 211, 238, 0.16), transparent 31%),
    radial-gradient(ellipse at 84% 18%, rgba(52, 211, 153, 0.13), transparent 32%),
    linear-gradient(135deg, #071016 0%, #101622 50%, #191824 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  padding: 80px 24px 42px;
}

.live26-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 18%, transparent 78%, rgba(0,0,0,0.18));
}

.live26-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.62fr);
  gap: 36px;
  align-items: center;
}

.live26-hero h1 {
  max-width: 820px;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: 0;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #d7f8ff 54%, #62f0c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.live26-briefing-meta {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid rgba(148, 210, 255, 0.18);
  border-radius: 999px;
  background: rgba(2, 11, 17, 0.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.live26-briefing-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #cbeefa;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid rgba(148, 210, 255, 0.15);
}

.live26-briefing-meta span:first-child {
  color: #061016;
  background: linear-gradient(135deg, var(--cyan), #6ef0c9);
  border-radius: 999px 0 0 999px;
}

.live26-briefing-meta span:last-child {
  border-right: 0;
}

.live26-kicker,
.live26-page .agent-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.live26-hero .subtitle {
  max-width: 760px;
  margin-bottom: 26px;
  margin-left: 0;
  margin-right: 0;
  color: var(--live-muted);
  font-size: 17px;
  line-height: 1.74;
}

.live26-hero .author-byline {
  margin-bottom: 0;
}

.live26-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--live-line);
  border-radius: 10px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(52, 211, 153, 0.08), transparent 42%),
    rgba(4, 12, 18, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.live26-signal-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.live26-signal-row:last-child {
  border-bottom: 0;
}

.live26-signal-row span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cyan);
}

.live26-signal-row strong {
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
}

.live26-stats {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  justify-content: flex-start;
  gap: 12px;
}

.live26-stats .hero-stat {
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 170px;
  max-width: 250px;
  min-height: 116px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px 16px 15px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    rgba(3, 13, 20, 0.62);
  border: 1px solid rgba(148, 210, 255, 0.16);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}

.live26-stats .hero-stat::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(52, 211, 153, 0.15));
}

.live26-stat-kicker {
  margin-bottom: 12px;
  color: #84eaf7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live26-stats .hero-stat-value {
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.live26-stats .hero-stat-label {
  max-width: 170px;
  margin-top: 8px;
  line-height: 1.35;
  text-align: left;
}

.live26-hero .hero-sources {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 18px auto 0;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #8fa4b8;
}

.live26-hero .hero-sources span {
  margin-right: 2px;
  color: #d4f6ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live26-hero .hero-sources a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(148, 210, 255, 0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: #adc2d4;
  text-decoration: none;
}

.live26-hero .hero-sources a:hover {
  border-color: rgba(34, 211, 238, 0.34);
  color: #eefcff;
  background: rgba(34, 211, 238, 0.06);
}

.live26-control-room {
  margin: 34px 0 30px;
  padding: 22px;
  border-radius: 10px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 34%),
    linear-gradient(225deg, rgba(52, 211, 153, 0.09), transparent 40%),
    rgba(255,255,255,0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.live26-control-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.live26-control-head h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.live26-control-head p {
  max-width: 680px;
  color: var(--fg2);
  font-size: 14px;
  line-height: 1.65;
}

.live26-persona-switch {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.live26-persona-btn {
  min-width: 70px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 9px 12px;
  background: transparent;
  color: var(--fg2);
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
}

.live26-persona-btn.active {
  color: #031216;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.2);
}

.live26-console-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(360px, 1.24fr);
  grid-template-areas:
    "question answer"
    "domains answer";
  gap: 12px;
  align-items: stretch;
}

.live26-question-pane,
.live26-answer-pane,
.live26-domain-map {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(4, 10, 16, 0.66);
}

.live26-question-pane {
  grid-area: question;
}

.live26-answer-pane {
  grid-area: answer;
}

.live26-domain-map {
  grid-area: domains;
}

.live26-question-pane,
.live26-answer-pane {
  padding: 18px;
}

.live26-question-pane span,
.live26-answer-pane > span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.live26-question-pane p {
  font-size: 17px;
  line-height: 1.48;
  color: #fff;
  margin-bottom: 14px;
}

.live26-prompt-chip {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--green);
  background: rgba(52, 211, 153, 0.09);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.live26-domain-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px;
}

.live26-domain-map::before {
  content: none;
}

.live26-domain-node {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 9px;
  align-items: center;
  padding: 9px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  opacity: 0.44;
  transform: scale(0.985);
  transition: opacity 0.18s, transform 0.18s, border-color 0.18s, background 0.18s;
}

.live26-domain-node.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(34, 211, 238, 0.065);
}

.live26-domain-node span {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
}

.live26-domain-node strong {
  grid-column: 2;
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
}

.live26-domain-node small {
  grid-column: 2;
  display: block;
  color: var(--fg2);
  font-size: 10px;
  line-height: 1.35;
}

.live26-answer-pane p {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.66;
  margin-bottom: 16px;
}

.live26-harness-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: stretch;
  margin: 30px 0 32px;
  padding: 18px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(34,211,238,0.16), transparent 34%),
    linear-gradient(135deg, rgba(52,211,153,0.06), transparent 44%),
    rgba(4, 12, 18, 0.78);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}

.live26-harness-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.live26-harness-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live26-harness-card strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.live26-harness-card p {
  margin: 14px 0 0;
  color: #a8b5c5;
  font-size: 13px;
  line-height: 1.65;
}

.live26-harness-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.live26-harness-card li {
  position: relative;
  min-height: 64px;
  padding: 13px 13px 13px 34px;
  border: 1px solid rgba(148, 210, 255, 0.11);
  border-radius: 8px;
  color: #d7e7ef;
  background: rgba(255,255,255,0.035);
  font-size: 12px;
  line-height: 1.45;
}

.live26-harness-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(34,211,238,0.42);
}

.live26-product-shot {
  overflow: hidden;
  margin: 30px 0 32px;
  border: 1px solid rgba(148, 210, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    rgba(4, 12, 18, 0.82);
  box-shadow: 0 22px 64px rgba(0,0,0,0.26);
}

.live26-product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(148, 210, 255, 0.12);
}

.live26-product-shot figcaption {
  padding: 13px 16px 15px;
  color: #a8b5c5;
  font-size: 12.5px;
  line-height: 1.55;
}

.live26-product-shot figcaption strong {
  color: #e6f7fb;
}

.live26-product-shot-wide {
  margin-top: 28px;
}

.live26-evidence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.live26-evidence-list b {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 12px;
}

.live26-evidence-list small {
  display: block;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--fg2);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.065);
}

.live26-exec-briefing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) minmax(300px, 1.15fr) minmax(230px, 0.9fr);
  gap: 14px;
  align-items: stretch;
  margin: 32px 0 34px;
  padding: 16px;
  border: 1px solid rgba(148, 210, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.075), transparent 36%),
    linear-gradient(225deg, rgba(52, 211, 153, 0.07), transparent 42%),
    rgba(4, 12, 18, 0.62);
  box-shadow: 0 22px 64px rgba(0,0,0,0.24);
}

.live26-exec-briefing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(34,211,238,0.12), rgba(34,211,238,0.45), rgba(52,211,153,0.38));
  transform: translateY(-50%);
}

.live26-exec-query,
.live26-exec-evidence,
.live26-exec-answer {
  position: relative;
  z-index: 1;
  min-height: 188px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.062), rgba(255,255,255,0.024)),
    rgba(2, 10, 15, 0.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.live26-exec-query,
.live26-exec-answer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.live26-exec-query::after,
.live26-exec-answer::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(34,211,238,0.5);
}

.live26-exec-answer::after {
  background: var(--green);
  box-shadow: 0 0 18px rgba(52,211,153,0.5);
}

.live26-exec-query span,
.live26-exec-answer span,
.live26-evidence-head span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live26-exec-answer span {
  color: var(--green);
}

.live26-exec-query strong,
.live26-exec-answer strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.live26-exec-query small,
.live26-exec-answer small {
  display: block;
  margin-top: 14px;
  color: #a8b5c5;
  font-size: 12px;
  line-height: 1.6;
}

.live26-exec-evidence {
  overflow: hidden;
  padding: 16px;
}

.live26-evidence-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.live26-evidence-head span {
  margin-bottom: 0;
}

.live26-evidence-head strong {
  color: #fff;
  font-size: 13px;
}

.live26-evidence-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.live26-evidence-cloud span {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 30px;
  border: 1px solid rgba(148, 210, 255, 0.12);
  border-radius: 8px;
  color: #d8f8ff;
  background: rgba(255,255,255,0.035);
  font-size: 12px;
  font-weight: 800;
}

.live26-evidence-cloud span::before {
  content: "";
  position: absolute;
  left: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(34,211,238,0.42);
}

.live26-evidence-cloud span:nth-child(2)::before,
.live26-evidence-cloud span:nth-child(6)::before {
  background: var(--green);
  box-shadow: 0 0 14px rgba(52,211,153,0.42);
}

.live26-shield-card {
  overflow: hidden;
}

.live26-shield-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.live26-shield-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
  opacity: 0.45;
}

.live26-shield-step {
  position: relative;
  z-index: 1;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(4, 10, 16, 0.8);
}

.live26-shield-step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}

.live26-shield-step.danger span { background: var(--red); }
.live26-shield-step.review span { background: var(--yellow); color: #241700; }
.live26-shield-step.allowed span { background: var(--cyan); color: #031216; }
.live26-shield-step.done span { background: var(--green); color: #031216; }

.live26-shield-step strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.live26-shield-step small {
  display: block;
  margin-top: 6px;
  color: var(--fg2);
  font-size: 11px;
  line-height: 1.5;
}

.live26-scope-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 28px;
}

.live26-scope-note > div {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(148, 210, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.022)),
    rgba(4, 12, 18, 0.7);
}

.live26-scope-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live26-scope-note > div:nth-child(2) span {
  color: var(--yellow);
}

.live26-scope-note p {
  margin: 0;
  color: #a8b5c5;
  font-size: 13px;
  line-height: 1.65;
}

.live26-pqc-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 30px 0 32px;
}

.live26-pqc-panel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, rgba(167,139,250,0.12), rgba(34,211,238,0.5), rgba(52,211,153,0.28));
}

.live26-pqc-risk,
.live26-pqc-core {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(148, 210, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.025)),
    rgba(4, 12, 18, 0.82);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}

.live26-pqc-core {
  text-align: center;
  border-color: rgba(34, 211, 238, 0.26);
  background:
    radial-gradient(circle at 50% 25%, rgba(34,211,238,0.19), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.025)),
    rgba(4, 12, 18, 0.86);
}

.live26-pqc-risk span,
.live26-pqc-core span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live26-pqc-risk:last-child span {
  color: var(--green);
}

.live26-pqc-risk strong,
.live26-pqc-core strong {
  display: block;
  color: #fff;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: 0;
}

.live26-pqc-core strong {
  font-size: 22px;
}

.live26-pqc-risk p,
.live26-pqc-core small {
  display: block;
  margin-top: 14px;
  color: #a8b5c5;
  font-size: 12.5px;
  line-height: 1.62;
}

.live26-model-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 30px 0 32px;
}

.live26-model-side,
.live26-model-core {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
  padding: 20px;
}

.live26-model-side > span,
.live26-model-core span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.live26-model-side.legacy > span { color: var(--red); }
.live26-model-side.adaptive > span { color: var(--green); }
.live26-model-core span { color: var(--cyan); }

.live26-model-side h3 {
  font-size: 19px;
  margin-bottom: 14px;
}

.live26-model-side ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.live26-model-side li {
  position: relative;
  padding-left: 18px;
  color: var(--fg2);
  font-size: 13px;
  line-height: 1.55;
}

.live26-model-side li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.live26-model-side.legacy li::before { background: var(--red); }
.live26-model-side.adaptive li::before { background: var(--green); }

.live26-model-core {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(34, 211, 238, 0.2), transparent 48%),
    rgba(34, 211, 238, 0.04);
  border-color: rgba(34, 211, 238, 0.22);
}

.live26-model-core::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 50%;
}

.live26-model-core::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  top: 24px;
  right: 28px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  border-radius: 50%;
  transform: rotate(34deg);
  opacity: 0.78;
}

.live26-model-core span,
.live26-model-core strong,
.live26-model-core small {
  position: relative;
  z-index: 1;
}

.live26-model-core strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.live26-model-core small {
  color: var(--fg2);
  font-size: 12px;
  line-height: 1.6;
}

.live26-action-grid .finding-card .fc-stat {
  color: var(--cyan);
}

.live26-action-grid {
  position: relative;
  gap: 14px;
  margin: 34px 0 34px;
}

.live26-action-grid .finding-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 20px;
}

.live26-action-grid .finding-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,211,238,0.08), transparent 44%);
  pointer-events: none;
}

.live26-action-grid .finding-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(52,211,153,0.16));
}

.live26-action-grid .finding-card > * {
  position: relative;
  z-index: 1;
}

.live26-action-kicker {
  display: block;
  margin-bottom: 14px;
  color: #8beafa;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live26-action-grid .finding-card .fc-stat {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #061016;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(34,211,238,0.2);
}

.live26-action-grid .finding-card .fc-title {
  font-size: 15px;
  line-height: 1.25;
}

.live26-action-grid .finding-card .fc-body {
  font-size: 12.5px;
  line-height: 1.62;
}

.live26-page .finding-card,
.live26-page .method-card,
.live26-page .conclusion-box {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025)),
    rgba(8, 15, 22, 0.78);
  border-color: rgba(148, 210, 255, 0.12);
}

.live26-page .finding-card {
  min-height: 154px;
  padding: 18px;
}

.live26-page .finding-card .fc-stat {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1;
}

.live26-page .finding-card .fc-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.live26-page .finding-card .fc-body {
  color: #a8b5c5;
  font-size: 12px;
  line-height: 1.55;
}

.live26-page .finding-card:hover,
.live26-page .method-card:hover {
  transform: none;
  border-color: rgba(34, 211, 238, 0.22);
}

.live26-page .conclusion-box {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin-top: 34px;
  border-image: none;
  border: 1px solid rgba(34, 211, 238, 0.24);
  padding: 30px;
  background:
    radial-gradient(circle at 88% 20%, rgba(52,211,153,0.13), transparent 34%),
    linear-gradient(135deg, rgba(34,211,238,0.08), transparent 44%),
    rgba(4, 12, 18, 0.82);
}

.live26-page .conclusion-box::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.live26-page .conclusion-box > * {
  position: relative;
  z-index: 1;
}

.live26-conclusion-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live26-page .conclusion-box h3 {
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
}

.live26-page .conclusion-box .cb-lead,
.live26-page .conclusion-box .cb-closing {
  font-size: 15px;
}

.live26-page .method-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.live26-sources-section {
  padding-top: 44px;
  padding-bottom: 30px;
}

.live26-sources-panel {
  overflow: hidden;
  border: 1px solid rgba(148, 210, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.07), transparent 42%),
    rgba(4, 12, 18, 0.78);
  box-shadow: 0 18px 48px rgba(0,0,0,0.2);
}

.live26-sources-panel summary {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 30px;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.live26-sources-panel summary::-webkit-details-marker {
  display: none;
}

.live26-sources-panel summary::after {
  content: "+";
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #061016;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.live26-sources-panel[open] summary::after {
  content: "-";
}

.live26-sources-kicker,
.live26-sources-title,
.live26-sources-note {
  display: block;
}

.live26-sources-kicker {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live26-sources-title {
  grid-column: 2;
  grid-row: 1;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.live26-sources-note {
  grid-column: 2;
  grid-row: 2;
  max-width: 620px;
  margin-top: -8px;
  color: #a8b5c5;
  font-size: 12.5px;
  line-height: 1.55;
}

.live26-sources-panel .method-grid {
  padding: 0 18px 20px;
}

.live26-page .method-card {
  padding: 18px;
}

.live26-page .method-card h3 {
  line-height: 1.35;
}

.live26-page .method-card p {
  color: #a8b5c5;
}

.live26-page .live26-footer {
  padding: 18px 24px 26px;
  background: rgba(255,255,255,0.01);
  border-top-color: rgba(148, 210, 255, 0.08);
}

.live26-simple-views {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #7e8998;
  font-size: 11px;
  line-height: 1;
}

.live26-simple-views span:first-child {
  color: #9aa6b5;
  font-weight: 600;
  line-height: 1;
}

.live26-simple-views span:last-child {
  color: #7e8998;
}

@media (max-width: 980px) {
  .live26-hero-grid,
  .live26-model-card,
  .live26-harness-card,
  .live26-brief {
    grid-template-columns: 1fr;
  }

  .live26-control-head {
    flex-direction: column;
    gap: 16px;
  }

  .live26-persona-switch {
    width: 100%;
  }

  .live26-persona-btn {
    flex: 1;
  }

  .live26-question-pane,
  .live26-answer-pane,
  .live26-domain-map {
    min-height: auto;
  }

  .live26-hero h1 {
    font-size: 44px;
  }

  .live26-page .section h2 {
    font-size: 29px;
  }

  .live26-page .chart-card {
    min-height: 360px;
  }

  .live26-page .chart-card canvas {
    min-height: 220px;
  }
}

@media (min-width: 900px) {
  .live26-domain-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .live26-hero {
    text-align: center;
    padding-top: 64px;
  }

  .live26-hero .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .live26-briefing-meta {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .live26-stats {
    justify-content: center;
    gap: 10px;
  }

  .live26-stats .hero-stat {
    width: min(100%, 280px);
    min-height: 92px;
    align-items: center;
    padding-top: 14px;
  }

  .live26-stats .hero-stat-label {
    text-align: center;
  }

  .live26-stats .hero-stat-value {
    font-size: 27px;
  }

  .live26-stat-kicker {
    margin-bottom: 8px;
  }

  .live26-hero .hero-sources {
    justify-content: center;
    text-align: center;
  }

  .live26-hero h1 {
    font-size: 34px;
  }

  .live26-page .section h2 {
    font-size: 25px;
  }

  .live26-brief {
    margin-top: 18px;
    padding: 0 14px 14px;
    gap: 10px;
  }

  .live26-signal-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .live26-exec-strip,
  .live26-exec-briefing,
  .live26-shield-flow,
  .live26-scope-note,
  .live26-pqc-panel {
    grid-template-columns: 1fr;
  }

  .live26-pqc-panel::before {
    top: 24px;
    bottom: 24px;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(167,139,250,0.12), rgba(34,211,238,0.5), rgba(52,211,153,0.28));
  }

  .live26-exec-briefing::before {
    top: 24px;
    bottom: 24px;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(34,211,238,0.12), rgba(34,211,238,0.45), rgba(52,211,153,0.38));
    transform: translateX(-50%);
  }

  .live26-shield-flow::before {
    display: none;
  }

  .live26-control-room {
    padding: 16px;
  }

  .live26-page .section {
    padding: 52px 16px;
  }

  .live26-page .section-prose,
  .live26-page .section-desc {
    font-size: 15px;
  }

  .live26-sources-panel summary {
    grid-template-columns: 1fr 30px;
    gap: 8px 14px;
  }

  .live26-sources-kicker,
  .live26-sources-title,
  .live26-sources-note {
    grid-column: 1;
  }

  .live26-sources-panel summary::after {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .live26-sources-note {
    margin-top: 0;
  }

  .live26-page .chart-row {
    gap: 12px;
    margin: 26px 0;
  }

  .live26-page .chart-card {
    min-height: 330px;
    padding: 16px;
  }

  .live26-page .chart-card .chart-desc {
    min-height: auto;
  }

  .live26-page .chart-card canvas {
    min-height: 210px;
  }

  .live26-model-card {
    gap: 10px;
  }

  .live26-model-side,
  .live26-model-core,
  .live26-harness-card > div,
  .live26-exec-query,
  .live26-exec-evidence,
  .live26-exec-answer,
  .live26-page .finding-card,
  .live26-page .method-card {
    padding: 16px;
  }
}

/* ── Unified Article Briefing Headers ─────────────────────────────────── */
body.article-page .hero,
body.live26-page.article-page .live26-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(70px, 7vw, 104px) clamp(24px, 8vw, 156px) 52px;
  color: var(--theme-text);
  background: var(--theme-page);
  border-bottom: 1px solid var(--theme-line);
  text-align: left;
}

body.article-page .hero::before,
body.live26-page.article-page .live26-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, color-mix(in srgb, var(--theme-link) 10%, transparent), transparent 30%),
    radial-gradient(circle at 82% 0%, color-mix(in srgb, var(--theme-text-strong) 6%, transparent), transparent 28%);
}

body.article-page .hero > *,
body.live26-page.article-page .live26-hero > * {
  position: relative;
  z-index: 1;
}

body.article-page .article-brief-grid,
body.live26-page.article-page .live26-hero-grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 342px);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}

body.article-page .article-brief-copy,
body.live26-page.article-page .live26-hero-copy {
  min-width: 0;
}

body.article-page .live26-briefing-meta {
  display: inline-flex;
  overflow: hidden;
  margin: 0 0 26px;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--theme-surface) 88%, transparent);
  box-shadow: var(--theme-shadow);
}

body.article-page .live26-briefing-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  color: var(--theme-muted);
  border-right: 1px solid var(--theme-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

body.article-page .live26-briefing-meta span:first-child {
  color: var(--theme-page);
  background: var(--theme-text-strong);
}

html[data-theme="dark"] body.article-page .live26-briefing-meta span:first-child {
  color: #000000;
}

body.article-page .live26-briefing-meta span:last-child {
  border-right: 0;
}

body.article-page .hero h1,
body.live26-page.article-page .live26-hero h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: var(--theme-text-strong);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

body.ai-jobs-page.article-page .hero h1 {
  max-width: 760px;
}

body.article-page .hero .subtitle,
body.live26-page.article-page .live26-hero .subtitle {
  max-width: 830px;
  margin: 0 0 28px;
  color: var(--theme-muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
}

body.article-page .author-byline,
body.live26-page.article-page .live26-hero .author-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 8px 15px 8px 8px;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--theme-surface) 78%, transparent);
  box-shadow: var(--theme-shadow);
}

body.article-page .author-photo {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

body.article-page .author-name {
  color: var(--theme-text-strong);
  font-size: 14px;
  font-weight: 700;
}

body.article-page .author-date {
  color: var(--theme-muted);
  font-size: 12px;
}

body.article-page .article-brief-panel,
body.live26-page.article-page .live26-hero-panel {
  align-self: center;
  width: 100%;
  padding: 18px;
  color: var(--theme-text);
  border: 1px solid var(--theme-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--theme-surface) 92%, transparent);
  box-shadow: var(--theme-shadow);
}

body.article-page .live26-signal-row {
  display: grid;
  grid-template-columns: minmax(92px, 112px) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 12px 0;
  border-bottom: 1px solid var(--theme-line);
}

body.article-page .live26-signal-row:first-child {
  padding-top: 0;
}

body.article-page .live26-signal-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.article-page .live26-signal-row span {
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body.article-page .live26-signal-row strong {
  color: var(--theme-text-strong);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

body.article-page .hero-stats,
body.live26-page.article-page .live26-stats {
  width: 100%;
  max-width: 1120px;
  margin: 58px auto 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  gap: 0;
  border-top: 1px solid var(--theme-line);
  border-bottom: 1px solid var(--theme-line);
}

body.article-page .hero-stat,
body.live26-page.article-page .live26-stats .hero-stat {
  display: block;
  min-width: 0;
  padding: 18px 22px;
  color: var(--theme-text);
  border: 0;
  border-right: 1px solid var(--theme-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

body.article-page .hero-stat:last-child,
body.live26-page.article-page .live26-stats .hero-stat:last-child {
  border-right: 0;
}

body.article-page .live26-stat-kicker {
  display: block;
  margin: 0 0 9px;
  color: var(--theme-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body.article-page .hero-stat-value,
body.live26-page.article-page .live26-stats .hero-stat-value {
  display: block;
  color: var(--theme-text-strong);
  font-size: clamp(30px, 3.1vw, 38px);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

body.article-page .hero-stat-label,
body.live26-page.article-page .live26-stats .hero-stat-label {
  display: block;
  max-width: 220px;
  margin-top: 8px;
  color: var(--theme-muted);
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
}

body.article-page .hero-sources,
body.live26-page.article-page .live26-hero .hero-sources {
  width: 100%;
  max-width: 1120px;
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--theme-muted);
  text-align: left;
  font-size: 12px;
}

body.article-page .hero-sources span,
body.live26-page.article-page .live26-hero .hero-sources span {
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

body.article-page .hero-sources a,
body.live26-page.article-page .live26-hero .hero-sources a {
  color: color-mix(in srgb, var(--theme-text) 62%, var(--theme-muted));
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.article-page .sticky-nav {
  top: 58px;
}

@media (max-width: 980px) {
  body.article-page .article-brief-grid,
  body.live26-page.article-page .live26-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.article-page .article-brief-panel,
  body.live26-page.article-page .live26-hero-panel {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  body.article-page .hero,
  body.live26-page.article-page .live26-hero {
    padding: 52px 18px 38px;
  }

  body.article-page .live26-briefing-meta {
    max-width: 100%;
    overflow-x: auto;
  }

  body.article-page .live26-briefing-meta span {
    min-height: 31px;
    padding: 0 12px;
    font-size: 10.5px;
  }

  body.article-page .hero h1,
  body.live26-page.article-page .live26-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
  }

  body.article-page .hero .subtitle,
  body.live26-page.article-page .live26-hero .subtitle {
    font-size: 16px;
  }

  body.article-page .live26-signal-row {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
  }

  body.article-page .hero-stats,
  body.live26-page.article-page .live26-stats {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  body.article-page .hero-stat,
  body.live26-page.article-page .live26-stats .hero-stat {
    border-right: 0;
    border-bottom: 1px solid var(--theme-line);
  }

  body.article-page .hero-stat:last-child,
  body.live26-page.article-page .live26-stats .hero-stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .live26-console-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "question"
      "domains"
      "answer";
  }

  .live26-domain-map,
  .live26-evidence-list,
  .live26-evidence-cloud,
  .live26-harness-card ul {
    grid-template-columns: 1fr;
  }

}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* ── Responsive: tablets ─────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 72px 20px 40px; }
  .hero-stat-value { font-size: 38px; }
  .section { padding: 64px 20px; }
  .section h2 { font-size: 26px; }
  .analogy-grid { grid-template-columns: 1fr; }
  .workflow-compare { grid-template-columns: 1fr; }
  .findings-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

/* ── Responsive: phones ──────────────────────────────── */
@media (max-width: 700px) {
  .hero { padding: 56px 16px 32px; }
  .hero .subtitle { font-size: 15px; margin-bottom: 24px; }
  .hero-stats { gap: 16px; }
  .hero-stat-value { font-size: 30px; }
  .hero-stat-label { font-size: 11px; }
  .section { padding: 48px 14px; }
  .section h2 { font-size: 23px; margin-bottom: 6px; }
  .section-desc { font-size: 14px; margin-bottom: 24px; }
  .chart-row { flex-direction: column; gap: 14px; }
  .chart-card { min-width: unset; padding: 18px; }
  .chart-card h3 { font-size: 15px; }
  .chart-card .chart-desc { font-size: 12px; margin-bottom: 10px; }
  .analogy-grid { grid-template-columns: 1fr; }
  .workflow-compare { grid-template-columns: 1fr; }
  .agent-card-head { flex-direction: column; }
  .agent-mode-switch { width: 100%; }
  .agent-mode-btn { flex: 1; }
  .agent-fabric-map { grid-template-columns: 1fr; }
  .building-request-panel { gap: 12px; }
  .agent-badge-card { grid-template-columns: 54px 1fr; }
  .agent-badge-orb { width: 50px; height: 50px; border-radius: 15px; }
  .building-floor { grid-template-columns: 86px 1fr; }
  .agent-console-grid { grid-template-columns: 1fr; }
  .agent-checkpoint-track { grid-template-columns: 1fr 1fr; }
  .fabric-grid { grid-template-columns: 1fr 1fr; }
  .glasswing-panel { grid-template-columns: 1fr; gap: 12px; }
  .diagram-wrapper { height: 360px; }
  .diagram-controls { flex-wrap: wrap; }
  .diagram-btn { padding: 8px 16px; font-size: 13px; }
  .method-grid { grid-template-columns: 1fr; }
  .callout-banner { padding: 16px 18px !important; }
  .conclusion-box { padding: 18px; margin-top: 28px; }
  .findings-grid { grid-template-columns: 1fr; gap: 10px; }
  .finding-card { padding: 14px; }
  .finding-card .fc-stat { font-size: 24px; }
  .adopter-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
  footer { padding: 20px 14px; }
}

/* ── Responsive: small phones ────────────────────────── */
@media (max-width: 400px) {
  .hero { padding: 40px 12px 24px; }
  .hero h1 { font-size: 24px; }
  .hero .subtitle { font-size: 14px; }
  .hero-stat-value { font-size: 24px; }
  .hero-stats { gap: 10px; }
  .section { padding: 36px 10px; }
  .section h2 { font-size: 20px; }
  .chart-card { padding: 14px; border-radius: 12px; }
  .agent-control-card { padding: 16px; border-radius: 12px; }
  .agent-fabric-map { gap: 12px; }
  .building-label { flex-direction: column; align-items: flex-start; gap: 6px; }
  .building-label strong { text-align: left; }
  .building-floor { grid-template-columns: 1fr; }
  .floor-rooms { grid-template-columns: 1fr; }
  .fabric-explainer-row { grid-template-columns: 1fr; }
  .agent-checkpoint-track { grid-template-columns: 1fr; }
  .fabric-grid { grid-template-columns: 1fr; }
  .diagram-wrapper { height: 280px; }
  .nav-link { padding: 5px 10px; font-size: 12px; }
  .conclusion-box { padding: 14px; margin-top: 20px; }
}

/* ── Site hub homepage ───────────────────────────────── */
.site-home {
  min-height: 100vh;
  color: #eef9ff;
  background:
    linear-gradient(rgba(43, 225, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 225, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 14% 8%, rgba(34, 211, 238, 0.16), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(52, 211, 153, 0.10), transparent 32%),
    linear-gradient(135deg, #08121a 0%, #090d15 48%, #061017 100%);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

.site-home a {
  color: inherit;
}

.site-shell,
.site-section,
.site-footer {
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-mark span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 10px;
  color: #071016;
  background: linear-gradient(135deg, #36e5f3, #7ee7d7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-mark strong,
.site-nav a,
.site-ghost-btn,
.site-primary-btn,
.site-secondary-btn,
.site-like-btn,
.site-repo-toolbar a {
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(148, 210, 255, 0.14);
  border-radius: 999px;
  background: rgba(4, 10, 16, 0.62);
}

.site-nav a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #a9b8c6;
  text-decoration: none;
}

.site-nav a.active {
  color: #061016;
  background: linear-gradient(135deg, #36e5f3, #7ee7d7);
}

.site-nav a:hover {
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.055);
}

.site-ghost-btn,
.site-primary-btn,
.site-secondary-btn,
.site-card-actions a,
.site-repo-toolbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 999px;
  text-decoration: none;
  color: #dffbff;
  background: rgba(8, 15, 22, 0.72);
}

.site-ghost-btn,
.site-primary-btn,
.site-secondary-btn {
  min-height: 36px;
  padding: 0 14px;
}

.site-primary-btn {
  color: #061016;
  border-color: transparent;
  background: linear-gradient(135deg, #36e5f3, #7ee7d7);
}

.site-secondary-btn,
.site-ghost-btn {
  color: #a9eaf5;
}

.site-secondary-btn.small {
  min-height: 34px;
  padding: 0 12px;
  cursor: pointer;
}

.site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  gap: 18px;
  align-items: stretch;
  padding: 42px 0 58px;
}

.site-hero-copy,
.site-signal-panel,
.site-blog-card,
.site-repo-card,
.site-engage-card,
.site-comment-panel {
  border: 1px solid rgba(148, 210, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.024)),
    rgba(6, 13, 20, 0.78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.site-hero-copy {
  padding: clamp(24px, 4.2vw, 42px);
  border-radius: 12px;
}

.site-kicker,
.site-card-meta,
.site-repo-meta,
.site-signal-header span,
.site-section-head span,
.site-engage-card span,
.site-comment-panel span,
.site-repo-top span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6ee7f3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-kicker span,
.site-card-meta span {
  padding: 4px 8px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.07);
}

.site-hero h1 {
  max-width: 760px;
  margin: 15px 0 14px;
  font-size: clamp(34px, 5.35vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.site-hero p {
  max-width: 680px;
  color: #9fb1c1;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.62;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.site-page-hero {
  max-width: 720px;
  padding: 42px 0 28px;
}

.site-page-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.site-page-hero p {
  max-width: 660px;
  color: #9fb1c1;
  font-size: 16px;
  line-height: 1.65;
}

.site-signal-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 12px;
}

.site-signal-header strong {
  display: block;
  margin-top: 7px;
  font-size: 22px;
  line-height: 1.1;
}

.site-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.site-about-grid div {
  padding: 12px;
  border: 1px solid rgba(148, 210, 255, 0.13);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
}

.site-about-grid span {
  display: block;
  margin-bottom: 8px;
  color: #6ee7f3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-about-grid strong {
  display: block;
  color: #eef9ff;
  font-size: 14px;
  line-height: 1.45;
}

.site-about-panel {
  position: relative;
  overflow: hidden;
}

.site-about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.09), transparent 34%),
    radial-gradient(circle at 75% 0%, rgba(126, 231, 215, 0.18), transparent 34%);
}

.site-about-panel > * {
  position: relative;
  z-index: 1;
}

.site-about-photo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}

.site-signal-grid {
  display: grid;
  gap: 10px;
}

.site-signal-grid div {
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
}

.site-signal-grid span {
  color: #6ee7f3;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.site-signal-grid strong {
  display: block;
  margin-top: 8px;
  color: #f7fbff;
  line-height: 1.25;
}

.site-home-preview {
  padding-top: 24px;
}

.site-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.site-preview-card {
  display: block;
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(148, 210, 255, 0.14);
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    rgba(6, 13, 20, 0.72);
  box-shadow: 0 16px 44px rgba(0,0,0,0.20);
}

.site-preview-card span {
  color: #6ee7f3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-preview-card strong {
  display: block;
  margin-top: 10px;
  color: #f6fbff;
  font-size: 18px;
  line-height: 1.2;
}

.site-preview-card p {
  margin-top: 10px;
  color: #9fb1c1;
  font-size: 14px;
  line-height: 1.55;
}

.site-preview-card:hover {
  border-color: rgba(34, 211, 238, 0.30);
  transform: translateY(-2px);
}

.site-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.site-section.alt {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1060px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1060px) / 2 + 24px));
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.035), rgba(0, 0, 0, 0));
}

.site-section.compact {
  padding-top: 34px;
}

.site-section-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.site-section-head.compact {
  max-width: 620px;
}

.site-section-head h2 {
  margin: 8px 0;
  font-size: clamp(26px, 3.7vw, 40px);
  line-height: 1.05;
  letter-spacing: 0;
}

.site-section-head p {
  color: #9fb1c1;
  font-size: 15px;
  line-height: 1.65;
}

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

.site-blog-card {
  display: flex;
  min-height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.site-blog-card.featured {
  grid-row: span 2;
  flex-direction: column;
}

.site-card-media {
  min-height: 190px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-card-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}

.site-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.site-blog-card h3,
.site-repo-card h3,
.site-engage-card h3,
.site-comment-panel h3 {
  margin: 0;
  color: #f6fbff;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.site-blog-card h3 a {
  text-decoration: none;
}

.site-blog-card p,
.site-repo-card p,
.site-engage-card p,
.site-comment-panel p {
  color: #9fb1c1;
  font-size: 14px;
  line-height: 1.55;
}

.site-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.site-card-actions a,
.site-like-btn {
  min-height: 32px;
  padding: 0 11px;
}

.site-like-btn {
  cursor: pointer;
  color: #bfeef5;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  background: rgba(8, 15, 22, 0.72);
}

.site-like-btn.liked {
  color: #061016;
  border-color: transparent;
  background: linear-gradient(135deg, #34d399, #7ee7d7);
}

.site-repo-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}

.site-repo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.site-repo-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  padding: 16px;
  border-radius: 10px;
}

.site-repo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-repo-top a {
  color: #dffbff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.site-repo-meta {
  margin-top: auto;
  color: #91a3b3;
  letter-spacing: 0;
  text-transform: none;
}

.site-repo-loading {
  grid-column: 1 / -1;
  padding: 28px;
  color: #9fb1c1;
  border: 1px dashed rgba(148, 210, 255, 0.22);
  border-radius: 12px;
}

.site-engage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.site-engage-card {
  padding: 18px;
  border-radius: 10px;
}

.site-comment-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 16px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 10px;
}

.site-comments {
  min-height: 160px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(0,0,0,0.18);
  padding: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
  color: #93a5b5;
  border-top: 1px solid rgba(148, 210, 255, 0.12);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #eef9ff;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer-links a {
  color: #9fe9f5;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 960px) {
  .site-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-hero,
  .site-comment-panel {
    grid-template-columns: 1fr;
  }

  .site-blog-grid,
  .site-repo-grid,
  .site-engage-grid,
  .site-preview-grid {
    grid-template-columns: 1fr;
  }

  .site-about-grid {
    grid-template-columns: 1fr;
  }

  .site-blog-card.featured {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-shell,
  .site-section,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-hero {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .site-hero-copy,
  .site-signal-panel,
  .site-card-body,
  .site-comment-panel {
    padding: 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .site-hero h1 {
    font-size: 40px;
  }

  .site-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Global theme system: site + article pages ─────────────────────────── */
:root {
  color-scheme: light dark;
  --theme-page: #f5f5f7;
  --theme-surface: #ffffff;
  --theme-surface-soft: #fbfbfd;
  --theme-text: #1d1d1f;
  --theme-text-strong: #1d1d1f;
  --theme-muted: #6e6e73;
  --theme-muted-2: #86868b;
  --theme-link: #0071e3;
  --theme-link-hover: #0066cc;
  --theme-line: #d2d2d7;
  --theme-soft-line: #e8e8ed;
  --theme-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
  --theme-shadow-strong: 0 18px 48px rgba(0, 0, 0, 0.10);
  --theme-nav: rgba(245, 245, 247, 0.88);
  --theme-chip: rgba(255, 255, 255, 0.74);
  --chart-text: #6e6e73;
  --chart-grid: rgba(29, 29, 31, 0.10);
}

[data-theme="dark"] {
  --theme-page: #000000;
  --theme-surface: #1c1c1e;
  --theme-surface-soft: #111114;
  --theme-text: #f5f5f7;
  --theme-text-strong: #ffffff;
  --theme-muted: #a1a1a6;
  --theme-muted-2: #8e8e93;
  --theme-link: #0a84ff;
  --theme-link-hover: #64aaff;
  --theme-line: #3a3a3c;
  --theme-soft-line: #2c2c2e;
  --theme-shadow: 0 12px 38px rgba(0, 0, 0, 0.34);
  --theme-shadow-strong: 0 18px 54px rgba(0, 0, 0, 0.46);
  --theme-nav: rgba(0, 0, 0, 0.74);
  --theme-chip: rgba(28, 28, 30, 0.78);
  --chart-text: #a1a1a6;
  --chart-grid: rgba(245, 245, 247, 0.13);
}

.theme-toggle {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  color: var(--theme-muted);
  background: var(--theme-surface);
  font: 600 12px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--theme-link);
  border-color: var(--theme-link);
  outline: none;
  transform: translateY(-1px);
}

.site-home,
.article-page {
  --bg: var(--theme-page);
  --bg2: var(--theme-surface);
  --bg3: var(--theme-surface-soft);
  --fg: var(--theme-text);
  --fg2: var(--theme-muted);
  --accent: var(--theme-link);
  --article-line: var(--theme-line);
  --article-soft-line: var(--theme-soft-line);
  --article-card: var(--theme-surface);
  --article-soft: var(--theme-surface-soft);
  color: var(--theme-text);
  background: var(--theme-page);
}

.site-home a,
.article-page a {
  color: inherit;
}

.article-page a {
  color: var(--theme-link);
}

.article-page a:hover,
.site-home a:hover {
  color: var(--theme-link-hover);
}

.site-home .reading-progress,
.article-page .reading-progress {
  background: var(--theme-link);
  box-shadow: none;
}

.site-topbar,
.article-page .sticky-nav {
  color: var(--theme-text);
}

.site-topbar::after {
  background: var(--theme-soft-line);
}

.site-mark span,
.site-card-media,
.site-engage-card,
.site-comment-panel,
.site-comments,
.site-like-btn,
.site-ghost-btn,
.site-secondary-btn,
.site-card-actions a,
.site-repo-toolbar a {
  color: var(--theme-text);
  border-color: var(--theme-line);
  background: var(--theme-surface);
}

.site-primary-btn,
.site-like-btn.liked {
  color: #ffffff;
  border-color: var(--theme-link);
  background: var(--theme-link);
}

.site-nav a,
.site-eyebrow,
.site-kicker,
.site-card-meta,
.site-repo-meta,
.site-section-head span,
.site-engage-card span,
.site-comment-panel span,
.site-repo-top span,
.site-hero p,
.site-page-hero p,
.site-section-head p,
.site-preview-card p,
.site-blog-card p,
.site-repo-card p,
.site-engage-card p,
.site-comment-panel p,
.site-portrait-note,
.site-footer,
.site-repo-loading {
  color: var(--theme-muted);
}

.site-mark strong,
.site-nav a.active,
.site-nav a:hover,
.site-hero h1,
.site-page-hero h1,
.site-about-panel strong,
.site-section-head h2,
.site-preview-card strong,
.site-blog-card h3,
.site-repo-card h3,
.site-engage-card h3,
.site-comment-panel h3,
.site-footer strong {
  color: var(--theme-text-strong);
}

.site-nav a.active::after,
.article-page .nav-link.active {
  background: var(--theme-text-strong);
  box-shadow: inset 0 -2px 0 var(--theme-text-strong);
}

.site-preview-grid,
.site-preview-card,
.site-blog-card,
.site-blog-card:first-child,
.site-repo-grid,
.site-repo-card,
.site-footer {
  border-color: var(--theme-line);
}

.site-card-media,
.site-about-photo {
  box-shadow: var(--theme-shadow-strong);
}

.article-page .hero,
.live26-page.article-page .live26-hero,
.article-page .section,
.live26-page.article-page .section,
.article-page footer,
.live26-page.article-page .live26-footer {
  color: var(--theme-text);
  background: var(--theme-page);
  border-color: var(--theme-line);
}

.article-page .hero::before,
.live26-page.article-page .live26-hero::before {
  background:
    radial-gradient(circle at 14% 12%, color-mix(in srgb, var(--theme-link) 12%, transparent), transparent 30%),
    radial-gradient(circle at 82% 0%, color-mix(in srgb, var(--theme-text) 6%, transparent), transparent 28%);
}

.article-page .section.alt,
.live26-page.article-page .section.alt {
  background: var(--theme-surface);
  border-color: var(--theme-soft-line);
}

.article-page .hero h1,
.live26-page.article-page .live26-hero h1,
.article-page .section h2,
.live26-page.article-page .section h2,
.article-page .section h2::after,
.live26-page.article-page .section h2::after,
.article-page .author-name,
.article-page .hero-stat-value,
.live26-page.article-page .live26-stats .hero-stat-value,
.article-page .chart-card h3,
.live26-page.article-page .chart-card h3,
.article-page .method-card h3,
.article-page .finding-card .fc-title,
.article-page .key-findings h3,
.article-page .conclusion-box h3,
.article-page .conclusion-box .cb-lead,
.article-page .conclusion-box .cb-closing,
.article-page .conclusion-box .cb-actions li strong,
.article-page strong,
.live26-page.article-page .live26-signal-row strong,
.live26-page.article-page .live26-brief strong,
.live26-page.article-page .live26-harness-card strong,
.live26-page.article-page .live26-sources-title,
.live26-page.article-page .live26-sources-panel summary,
.ai-jobs-page.article-page .treemap-tooltip .tt-title,
.ai-jobs-page.article-page .treemap-tooltip .tt-stats .value,
.ai-jobs-page.article-page .insight-card .ic-title,
.ai-jobs-page.article-page .matrix-cell h4,
.agent-page.article-page .fabric-verdict h3 {
  color: var(--theme-text-strong);
}

.article-page .hero .subtitle,
.live26-page.article-page .live26-hero .subtitle,
.article-page .author-date,
.article-page .hero-stat-label,
.live26-page.article-page .live26-stats .hero-stat-label,
.live26-page.article-page .live26-stat-kicker,
.article-page .hero-sources,
.live26-page.article-page .live26-hero .hero-sources,
.live26-page.article-page .live26-hero .hero-sources span,
.article-page .nav-link,
.live26-page.article-page .nav-link,
.article-page .section-desc,
.live26-page.article-page .section-desc,
.article-page .chart-card .chart-desc,
.live26-page.article-page .chart-card .chart-desc,
.article-page .method-card p,
.article-page .finding-card .fc-body,
.article-page .insight-card .ic-body,
.article-page .matrix-cell p,
.article-page .matrix-cell .mc-examples,
.article-page .conclusion-box .cb-detail,
.article-page .analogy-card p,
.article-page .job-row .job-meta,
.live26-page.article-page .live26-signal-row span,
.live26-page.article-page .agent-eyebrow,
.live26-page.article-page .live26-kicker,
.live26-page.article-page .live26-sources-kicker,
.live26-page.article-page .live26-domain-node span,
.live26-page.article-page .live26-question-pane span,
.live26-page.article-page .live26-answer-pane span,
.live26-page.article-page .live26-prompt-chip,
.live26-page.article-page .live26-sources-note,
.agent-page.article-page .agent-card-head p,
.agent-page.article-page .room-node small,
.agent-page.article-page .elevator-gate small,
.agent-page.article-page .agent-badge-card small,
.agent-page.article-page .fabric-layer-card p,
.ai-jobs-page.article-page .treemap-tooltip .tt-stats .label,
.ai-jobs-page.article-page .treemap-tooltip .tt-rationale,
.ai-jobs-page.article-page .treemap-legend,
.ai-jobs-page.article-page .job-row .job-meta {
  color: var(--theme-muted);
}

.article-page .section-prose,
.live26-page.article-page .section-prose,
.article-page .conclusion-box .cb-actions li {
  color: color-mix(in srgb, var(--theme-text) 86%, var(--theme-muted));
}

.article-page .sticky-nav {
  background: var(--theme-nav);
  border-color: var(--theme-line);
}

.article-page .nav-inner,
.live26-page.article-page .nav-inner {
  align-items: center;
}

.article-page .nav-inner .theme-toggle {
  margin-left: auto;
}

.article-page .author-byline,
.live26-page.article-page .live26-hero .author-byline,
.live26-page.article-page .live26-briefing-meta {
  border-color: var(--theme-line);
  background: var(--theme-chip);
  box-shadow: var(--theme-shadow);
}

.article-page .hero-stats,
.live26-page.article-page .live26-stats,
.article-page .hero-stat,
.live26-page.article-page .live26-stats .hero-stat,
.article-page .conclusion-box .cb-actions li,
.ai-jobs-page.article-page .treemap-tooltip .tt-rationale {
  border-color: var(--theme-line);
}

.article-page .chart-card,
.live26-page.article-page .chart-card,
.article-page .finding-card,
.article-page .method-card,
.article-page .analogy-card,
.article-page .callout-banner,
.article-page .conclusion-box,
.article-page .insight-card,
.article-page .matrix-cell,
.article-page .job-row,
.live26-page.article-page .live26-hero-panel,
.live26-page.article-page .live26-brief > div,
.live26-page.article-page .live26-brief > p,
.live26-page.article-page .live26-control-room,
.live26-page.article-page .live26-harness-card,
.live26-page.article-page .live26-model-side,
.live26-page.article-page .live26-model-core,
.live26-page.article-page .live26-exec-query,
.live26-page.article-page .live26-exec-evidence,
.live26-page.article-page .live26-exec-answer,
.live26-page.article-page .live26-pqc-card,
.live26-page.article-page .live26-sources-panel,
.live26-page.article-page .live26-scope-note > div,
.live26-page.article-page .live26-shield-step,
.agent-page.article-page .agent-control-card,
.agent-page.article-page .agent-badge-card,
.agent-page.article-page .request-card,
.agent-page.article-page .sase-cloud,
.agent-page.article-page .security-elevator,
.agent-page.article-page .enterprise-building,
.agent-page.article-page .fabric-verdict,
.agent-page.article-page .microseg-note,
.agent-page.article-page .agent-console,
.agent-page.article-page .fabric-layer-card,
.agent-page.article-page .glasswing-panel {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
}

.article-page .chart-card:hover,
.live26-page.article-page .chart-card:hover,
.article-page .finding-card:hover,
.article-page .method-card:hover,
.article-page .analogy-card:hover {
  border-color: var(--theme-line);
  box-shadow: var(--theme-shadow-strong);
}

.article-page .diagram-wrapper,
.article-page .conclusion-box .cb-actions li,
.live26-page.article-page .live26-domain-node,
.live26-page.article-page .live26-question-pane,
.live26-page.article-page .live26-answer-pane,
.live26-page.article-page .live26-evidence-list li,
.live26-page.article-page .live26-evidence-cloud span,
.agent-page.article-page .elevator-gate,
.agent-page.article-page .room-node,
.agent-page.article-page .building-floor,
.agent-page.article-page .agent-checkpoint,
.agent-page.article-page .fabric-node,
.ai-jobs-page.article-page .treemap-wrapper,
.ai-jobs-page.article-page .job-list {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface-soft);
}

.article-page .diagram-btn,
.article-page .agent-mode-btn,
.article-page .live26-persona-btn {
  color: var(--theme-muted);
  border-color: var(--theme-line);
  background: var(--theme-surface);
}

.article-page .diagram-btn:hover,
.article-page .agent-mode-btn:hover,
.article-page .live26-persona-btn:hover {
  color: var(--theme-link);
  border-color: var(--theme-link);
  background: var(--theme-surface);
}

.article-page .diagram-btn.active,
.article-page .diagram-btn.active-red,
.article-page .agent-mode-btn.active,
.article-page .live26-persona-btn.active,
.live26-page.article-page .live26-briefing-meta span:first-child {
  color: #ffffff;
  border-color: var(--theme-text-strong);
  background: var(--theme-text-strong);
}

[data-theme="dark"] .article-page .diagram-btn.active,
[data-theme="dark"] .article-page .diagram-btn.active-red,
[data-theme="dark"] .article-page .agent-mode-btn.active,
[data-theme="dark"] .article-page .live26-persona-btn.active,
[data-theme="dark"] .live26-page.article-page .live26-briefing-meta span:first-child {
  color: #000000;
}

.live26-page.article-page .live26-domain-node.active,
.live26-page.article-page .live26-evidence-cloud span.active {
  border-color: var(--theme-link);
  background: color-mix(in srgb, var(--theme-link) 11%, var(--theme-surface));
}

.live26-page.article-page .live26-signal-row,
.live26-page.article-page .live26-briefing-meta span {
  border-color: var(--theme-soft-line);
}

.live26-page.article-page .live26-product-shot img {
  border-color: var(--theme-soft-line);
  box-shadow: var(--theme-shadow-strong);
}

.ai-jobs-page.article-page .treemap-wrapper {
  border-color: var(--theme-soft-line);
  background: var(--theme-surface);
}

.ai-jobs-page.article-page .treemap-tooltip {
  color: var(--theme-text);
  border-color: var(--theme-line);
  background: color-mix(in srgb, var(--theme-surface) 96%, transparent);
  box-shadow: var(--theme-shadow-strong);
}

.ai-jobs-page.article-page .chart-card[style*="rgba(167,139,250"] {
  border-color: color-mix(in srgb, #a78bfa 22%, var(--theme-soft-line)) !important;
  background: color-mix(in srgb, #a78bfa 8%, var(--theme-surface)) !important;
}

.ai-jobs-page.article-page .chart-desc[style],
.ai-jobs-page.article-page .section-desc[style] {
  color: var(--theme-muted) !important;
}

.ai-jobs-page.article-page .job-row .score-badge {
  color: #ffffff;
}

@media (max-width: 760px) {
  .article-page .nav-inner .theme-toggle {
    position: sticky;
    right: 0;
    margin-left: 4px;
  }

  .site-topbar .theme-toggle {
    align-self: flex-start;
  }
}

/* ── Article pages light editorial override ─────────────────────────────── */
.article-page {
  --bg: #f5f5f7;
  --bg2: #ffffff;
  --bg3: #fbfbfd;
  --fg: #1d1d1f;
  --fg2: #6e6e73;
  --accent: #0071e3;
  --article-line: #d2d2d7;
  --article-soft-line: #e8e8ed;
  --article-card: #ffffff;
  --article-soft: #fbfbfd;
  min-height: 100vh;
  background: #f5f5f7;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.article-page a {
  color: #0071e3;
}

.article-page a:hover {
  color: #0066cc;
}

.article-page .reading-progress {
  height: 2px;
  background: #0071e3;
  box-shadow: none;
}

.article-page .hero,
.live26-page.article-page .live26-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 46px;
  text-align: left;
  color: #1d1d1f;
  background: #f5f5f7;
  border-bottom: 1px solid #d2d2d7;
}

.article-page .hero::before,
.live26-page.article-page .live26-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 113, 227, 0.08), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(29, 29, 31, 0.05), transparent 28%);
}

.article-page .hero > *,
.live26-page.article-page .live26-hero > * {
  position: relative;
  z-index: 1;
}

.article-page .hero-content,
.live26-page.article-page .live26-hero-grid,
.live26-page.article-page .live26-stats,
.live26-page.article-page .live26-hero .hero-sources {
  max-width: 1120px;
}

.article-page .hero h1,
.live26-page.article-page .live26-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #1d1d1f;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.article-page .hero .subtitle,
.live26-page.article-page .live26-hero .subtitle {
  max-width: 820px;
  margin: 0 0 26px;
  color: #6e6e73;
  font-size: 19px;
  line-height: 1.58;
}

.article-page .author-byline,
.live26-page.article-page .live26-hero .author-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  padding: 8px 12px 8px 8px;
  border: 1px solid #d2d2d7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.article-page .author-photo {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

.article-page .author-name {
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.article-page .author-date {
  color: #86868b;
  font-size: 12px;
}

.article-page .hero-stats,
.live26-page.article-page .live26-stats {
  justify-content: flex-start;
  gap: 0;
  margin: 26px auto 18px;
  border-top: 1px solid #d2d2d7;
  border-bottom: 1px solid #d2d2d7;
}

.article-page .hero-stat,
.live26-page.article-page .live26-stats .hero-stat {
  flex: 1 1 160px;
  align-items: flex-start;
  min-width: 0;
  max-width: none;
  min-height: 0;
  padding: 18px 22px;
  border: 0;
  border-right: 1px solid #d2d2d7;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-page .hero-stat:last-child,
.live26-page.article-page .live26-stats .hero-stat:last-child {
  border-right: 0;
}

.live26-page.article-page .live26-stats .hero-stat::after {
  display: none;
}

.article-page .hero-stat-value,
.live26-page.article-page .live26-stats .hero-stat-value {
  color: #1d1d1f;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.article-page .hero-stat-label,
.live26-page.article-page .live26-stats .hero-stat-label {
  max-width: 220px;
  margin-top: 7px;
  color: #6e6e73;
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
}

.live26-page.article-page .live26-stat-kicker {
  margin-bottom: 9px;
  color: #86868b;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.article-page .hero-sources,
.live26-page.article-page .live26-hero .hero-sources {
  margin: 16px auto 0;
  color: #86868b;
  text-align: left;
  font-size: 12px;
}

.article-page .hero-sources a,
.live26-page.article-page .live26-hero .hero-sources a {
  color: #515154;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
  border: 0;
  min-height: 0;
  padding: 0;
}

.live26-page.article-page .live26-hero .hero-sources span {
  color: #86868b;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.article-page .sticky-nav {
  background: rgba(245, 245, 247, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(210, 210, 215, 0.86);
}

.article-page .nav-inner,
.live26-page.article-page .nav-inner {
  max-width: 1120px;
  padding: 9px 18px;
  gap: 16px;
}

.article-page .nav-link,
.live26-page.article-page .nav-link {
  padding: 7px 0;
  border-radius: 0;
  color: #6e6e73;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.article-page .nav-link:hover,
.article-page .nav-link.active,
.live26-page.article-page .nav-link.active {
  color: #1d1d1f;
  background: transparent;
  text-decoration: none;
}

.article-page .nav-link.active {
  box-shadow: inset 0 -2px 0 #1d1d1f;
}

.article-page .section,
.live26-page.article-page .section {
  padding: 78px 24px;
  background: #f5f5f7;
  border: 0;
}

.article-page .section.alt,
.live26-page.article-page .section.alt {
  background: #ffffff;
  border-top: 1px solid #e8e8ed;
  border-bottom: 1px solid #e8e8ed;
}

.article-page .container,
.live26-page.article-page .container {
  max-width: 1060px;
}

.article-page .section h2,
.live26-page.article-page .section h2 {
  display: block;
  max-width: 840px;
  margin: 0 0 12px;
  color: #1d1d1f;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.article-page .section h2::after,
.live26-page.article-page .section h2::after {
  width: 54px;
  height: 2px;
  margin-top: 14px;
  background: #1d1d1f;
}

.article-page .section-desc,
.live26-page.article-page .section-desc {
  max-width: 820px;
  margin-bottom: 30px;
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

.article-page .section-prose,
.live26-page.article-page .section-prose {
  max-width: 820px;
  margin-bottom: 26px;
  color: #343437;
  font-size: 17px;
  line-height: 1.78;
  letter-spacing: 0;
}

.article-page .section-prose strong,
.live26-page.article-page .section-prose strong,
.article-page strong {
  color: #1d1d1f;
}

.article-page .cite,
.article-page .method-pub,
.article-page .method-tag {
  color: #0071e3;
}

.article-page .chart-row,
.live26-page.article-page .chart-row {
  gap: 18px;
  margin: 32px 0;
}

.article-page .chart-card,
.live26-page.article-page .chart-card,
.article-page .finding-card,
.article-page .method-card,
.article-page .analogy-card,
.article-page .callout-banner,
.article-page .conclusion-box,
.article-page .insight-card,
.article-page .matrix-cell,
.article-page .job-row {
  color: #1d1d1f;
  border: 1px solid #e8e8ed;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.article-page .chart-card,
.live26-page.article-page .chart-card {
  min-width: 300px;
  min-height: 0;
  padding: 24px;
  border-radius: 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  animation: none;
}

.article-page .chart-card:hover,
.live26-page.article-page .chart-card:hover,
.article-page .finding-card:hover,
.article-page .method-card:hover,
.article-page .analogy-card:hover {
  transform: translateY(-1px);
  border-color: #d2d2d7;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}

.article-page .chart-card.wide,
.live26-page.article-page .chart-card.wide {
  flex: 1 1 100%;
}

.article-page .chart-card h3,
.live26-page.article-page .chart-card h3,
.article-page .method-card h3,
.article-page .finding-card .fc-title,
.article-page .key-findings h3,
.article-page .conclusion-box h3 {
  color: #1d1d1f;
  font-weight: 650;
  letter-spacing: 0;
}

.article-page .chart-card .chart-desc,
.live26-page.article-page .chart-card .chart-desc,
.article-page .method-card p,
.article-page .finding-card .fc-body,
.article-page .insight-card .ic-body,
.article-page .matrix-cell p,
.article-page .matrix-cell .mc-examples,
.article-page .conclusion-box .cb-detail {
  color: #6e6e73;
}

.article-page .chart-card canvas,
.live26-page.article-page .chart-card canvas {
  min-height: 240px;
  max-height: none;
}

.article-page .diagram-wrapper {
  background: #fbfbfd;
  border: 1px solid #e8e8ed;
  border-radius: 18px;
}

.article-page .diagram-btn,
.article-page .agent-mode-btn,
.article-page .live26-persona-btn {
  color: #515154;
  border: 1px solid #d2d2d7;
  background: #ffffff;
}

.article-page .diagram-btn:hover,
.article-page .agent-mode-btn:hover,
.article-page .live26-persona-btn:hover {
  color: #0071e3;
  border-color: #0071e3;
  background: #ffffff;
}

.article-page .diagram-btn.active,
.article-page .diagram-btn.active-red,
.article-page .agent-mode-btn.active,
.article-page .live26-persona-btn.active {
  color: #ffffff;
  border-color: #1d1d1f;
  background: #1d1d1f;
  box-shadow: none;
}

.article-page .callout-banner {
  border-left: 3px solid #0071e3;
  border-radius: 0 14px 14px 0;
}

.article-page .callout-banner .cb-title,
.article-page .callout-banner .cb-body {
  color: #1d1d1f;
}

.article-page .analogy-card p,
.article-page .job-row .job-meta {
  color: #6e6e73;
}

.article-page .method-grid,
.article-page .findings-grid {
  gap: 16px;
}

.article-page .method-card,
.article-page .finding-card {
  border-radius: 16px;
}

.article-page .conclusion-box {
  border: 1px solid #d2d2d7;
  border-image: none;
  border-radius: 18px;
}

.article-page .conclusion-box .cb-lead,
.article-page .conclusion-box .cb-closing,
.article-page .conclusion-box .cb-actions li strong {
  color: #1d1d1f;
}

.article-page .conclusion-box .cb-actions li {
  color: #515154;
  border: 1px solid #e8e8ed;
  background: #fbfbfd;
}

.article-page footer,
.live26-page.article-page .live26-footer {
  color: #86868b;
  background: #f5f5f7;
  border-top: 1px solid #d2d2d7;
}

.article-page footer a {
  color: #515154;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-page .footer-note {
  opacity: 0.74;
}

.live26-page.article-page {
  --live-ink: #1d1d1f;
  --live-muted: #6e6e73;
  --live-panel: #ffffff;
  --live-line: #e8e8ed;
  background: #f5f5f7;
  color: #1d1d1f;
}

.live26-page.article-page .live26-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  align-items: center;
}

.live26-page.article-page .live26-briefing-meta {
  margin-bottom: 18px;
  border: 1px solid #d2d2d7;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.live26-page.article-page .live26-briefing-meta span {
  color: #515154;
  border-right: 1px solid #e8e8ed;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.live26-page.article-page .live26-briefing-meta span:first-child {
  color: #ffffff;
  background: #1d1d1f;
}

.live26-page.article-page .live26-hero-panel,
.live26-page.article-page .live26-brief > div,
.live26-page.article-page .live26-brief > p,
.live26-page.article-page .live26-control-room,
.live26-page.article-page .live26-harness-card,
.live26-page.article-page .live26-model-side,
.live26-page.article-page .live26-model-core,
.live26-page.article-page .live26-exec-query,
.live26-page.article-page .live26-exec-evidence,
.live26-page.article-page .live26-exec-answer,
.live26-page.article-page .live26-pqc-card,
.live26-page.article-page .live26-sources-panel,
.live26-page.article-page .live26-scope-note > div,
.live26-page.article-page .live26-shield-step {
  border: 1px solid #e8e8ed;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.live26-page.article-page .live26-signal-row {
  border-bottom: 1px solid #e8e8ed;
}

.live26-page.article-page .live26-signal-row span,
.live26-page.article-page .agent-eyebrow,
.live26-page.article-page .live26-kicker,
.live26-page.article-page .live26-sources-kicker {
  color: #6e6e73;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.live26-page.article-page .live26-signal-row strong,
.live26-page.article-page .live26-brief strong,
.live26-page.article-page .live26-harness-card strong,
.live26-page.article-page .live26-sources-title {
  color: #1d1d1f;
}

.live26-page.article-page .live26-product-shot {
  border-radius: 22px;
}

.live26-page.article-page .live26-product-shot img {
  border: 1px solid #e8e8ed;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
}

.live26-page.article-page .live26-product-shot figcaption {
  color: #6e6e73;
}

.live26-page.article-page .live26-domain-node,
.live26-page.article-page .live26-question-pane,
.live26-page.article-page .live26-answer-pane,
.live26-page.article-page .live26-evidence-list li,
.live26-page.article-page .live26-evidence-cloud span {
  color: #1d1d1f;
  border-color: #e8e8ed;
  background: #fbfbfd;
}

.live26-page.article-page .live26-domain-node span,
.live26-page.article-page .live26-question-pane span,
.live26-page.article-page .live26-answer-pane span,
.live26-page.article-page .live26-prompt-chip {
  color: #6e6e73;
}

.live26-page.article-page .live26-domain-node.active,
.live26-page.article-page .live26-evidence-cloud span.active {
  border-color: #0071e3;
  background: rgba(0, 113, 227, 0.07);
}

.live26-page.article-page .live26-sources-panel summary {
  color: #1d1d1f;
}

.live26-page.article-page .live26-sources-note,
.live26-page.article-page .method-card p {
  color: #6e6e73;
}

.agent-page.article-page .agent-control-card,
.agent-page.article-page .agent-badge-card,
.agent-page.article-page .request-card,
.agent-page.article-page .sase-cloud,
.agent-page.article-page .security-elevator,
.agent-page.article-page .enterprise-building,
.agent-page.article-page .fabric-verdict,
.agent-page.article-page .microseg-note,
.agent-page.article-page .agent-console,
.agent-page.article-page .fabric-layer-card,
.agent-page.article-page .glasswing-panel {
  color: #1d1d1f;
  border: 1px solid #e8e8ed;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.agent-page.article-page .elevator-gate,
.agent-page.article-page .room-node,
.agent-page.article-page .building-floor,
.agent-page.article-page .agent-checkpoint,
.agent-page.article-page .fabric-node {
  color: #1d1d1f;
  border-color: #e8e8ed;
  background: #fbfbfd;
}

.agent-page.article-page .agent-card-head p,
.agent-page.article-page .room-node small,
.agent-page.article-page .elevator-gate small,
.agent-page.article-page .agent-badge-card small,
.agent-page.article-page .fabric-layer-card p {
  color: #6e6e73;
}

.ai-jobs-page.article-page .treemap-wrapper {
  position: relative;
  width: 100vw;
  height: 78vh;
  min-height: 560px;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  border-top: 1px solid #e8e8ed;
  border-bottom: 1px solid #e8e8ed;
  background: #ffffff;
}

.ai-jobs-page.article-page .treemap-wrapper canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.ai-jobs-page.article-page .treemap-tooltip {
  position: fixed;
  z-index: 200;
  max-width: 340px;
  padding: 12px 16px;
  pointer-events: none;
  color: #1d1d1f;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 120ms ease;
}

.ai-jobs-page.article-page .treemap-tooltip.visible {
  opacity: 1;
}

.ai-jobs-page.article-page .treemap-tooltip .tt-title {
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 650;
  margin-bottom: 4px;
}

.ai-jobs-page.article-page .treemap-tooltip .tt-exposure {
  font-size: 12px;
  margin-bottom: 6px;
}

.ai-jobs-page.article-page .treemap-tooltip .tt-stats {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  font-size: 12px;
}

.ai-jobs-page.article-page .treemap-tooltip .tt-stats .label,
.ai-jobs-page.article-page .treemap-tooltip .tt-rationale {
  color: #6e6e73;
}

.ai-jobs-page.article-page .treemap-tooltip .tt-stats .value {
  color: #1d1d1f;
  text-align: right;
}

.ai-jobs-page.article-page .treemap-tooltip .tt-rationale {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #e8e8ed;
  font-size: 11px;
  line-height: 1.4;
}

.ai-jobs-page.article-page .treemap-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: #6e6e73;
  font-size: 11px;
}

.ai-jobs-page.article-page .treemap-legend canvas {
  border-radius: 3px;
}

.ai-jobs-page.article-page .tl-label {
  white-space: nowrap;
}

.ai-jobs-page.article-page .tl-sep {
  opacity: 0.34;
}

.ai-jobs-page.article-page .job-list,
.ai-jobs-page.article-page .insight-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-jobs-page.article-page .job-list {
  max-height: 420px;
  overflow-y: auto;
}

.ai-jobs-page.article-page .job-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: none;
}

.ai-jobs-page.article-page .job-row .score-badge {
  display: flex;
  width: 30px;
  height: 22px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.ai-jobs-page.article-page .job-row .job-title {
  flex: 1;
  font-size: 12px;
}

.ai-jobs-page.article-page .job-row .job-meta {
  color: #6e6e73;
  font-size: 10px;
  text-align: right;
  white-space: nowrap;
}

.ai-jobs-page.article-page .insight-card {
  border-radius: 12px;
  padding: 14px;
  box-shadow: none;
}

.ai-jobs-page.article-page .insight-card .ic-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.ai-jobs-page.article-page .insight-card .ic-icon {
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
}

.ai-jobs-page.article-page .insight-card .ic-title {
  color: #1d1d1f;
  font-size: 13px;
  font-weight: 650;
}

.ai-jobs-page.article-page .insight-card .ic-stat {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
}

.ai-jobs-page.article-page .matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ai-jobs-page.article-page .matrix-cell {
  border-radius: 14px;
  padding: 18px;
  box-shadow: none;
}

.ai-jobs-page.article-page .matrix-cell h4 {
  margin-bottom: 4px;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 650;
}

.ai-jobs-page.article-page .matrix-cell .mc-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
}

.ai-jobs-page.article-page .matrix-cell .mc-outlook {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 900px) {
  .article-page .hero,
  .live26-page.article-page .live26-hero {
    padding: 72px 20px 40px;
  }

  .article-page .hero h1,
  .live26-page.article-page .live26-hero h1 {
    font-size: 44px;
  }

  .article-page .hero-stats,
  .live26-page.article-page .live26-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-page .hero-stat,
  .live26-page.article-page .live26-stats .hero-stat {
    border-bottom: 1px solid #d2d2d7;
  }

  .article-page .hero-stat:nth-child(2n),
  .live26-page.article-page .live26-stats .hero-stat:nth-child(2n) {
    border-right: 0;
  }

  .live26-page.article-page .live26-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-page .section,
  .live26-page.article-page .section {
    padding: 64px 20px;
  }

  .article-page .section h2,
  .live26-page.article-page .section h2 {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  .article-page .hero,
  .live26-page.article-page .live26-hero {
    padding: 56px 16px 34px;
    text-align: left;
  }

  .article-page .hero h1,
  .live26-page.article-page .live26-hero h1 {
    font-size: 36px;
  }

  .article-page .hero .subtitle,
  .live26-page.article-page .live26-hero .subtitle {
    font-size: 16px;
  }

  .article-page .hero-stats,
  .live26-page.article-page .live26-stats {
    grid-template-columns: 1fr;
  }

  .article-page .hero-stat,
  .live26-page.article-page .live26-stats .hero-stat,
  .article-page .hero-stat:nth-child(2n),
  .live26-page.article-page .live26-stats .hero-stat:nth-child(2n) {
    border-right: 0;
  }

  .article-page .hero-stat-value,
  .live26-page.article-page .live26-stats .hero-stat-value {
    font-size: 28px;
  }

  .article-page .nav-inner,
  .live26-page.article-page .nav-inner {
    padding: 8px 12px;
    gap: 14px;
  }

  .article-page .section,
  .live26-page.article-page .section {
    padding: 52px 16px;
  }

  .article-page .section h2,
  .live26-page.article-page .section h2 {
    font-size: 26px;
  }

  .article-page .section-desc,
  .article-page .section-prose,
  .live26-page.article-page .section-desc,
  .live26-page.article-page .section-prose {
    font-size: 15px;
  }

  .article-page .chart-row,
  .live26-page.article-page .chart-row {
    flex-direction: column;
    gap: 14px;
  }

  .article-page .chart-card,
  .live26-page.article-page .chart-card {
    min-width: 0;
    padding: 18px;
  }

  .article-page .chart-card canvas,
  .live26-page.article-page .chart-card canvas {
    min-height: 220px;
  }

  .ai-jobs-page.article-page .treemap-wrapper {
    height: 55vh;
    min-height: 350px;
  }

  .ai-jobs-page.article-page .treemap-tooltip {
    max-width: 260px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .ai-jobs-page.article-page .matrix-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .article-page .hero h1,
  .live26-page.article-page .live26-hero h1 {
    font-size: 30px;
  }

  .article-page .chart-card,
  .live26-page.article-page .chart-card {
    padding: 14px;
    border-radius: 14px;
  }

  .ai-jobs-page.article-page .treemap-wrapper {
    height: 45vh;
    min-height: 280px;
  }

  .ai-jobs-page.article-page .job-row .job-meta {
    display: none;
  }
}

/* ── Personal site light editorial override ─────────────────────────────── */
.site-home {
  min-height: 100vh;
  color: #1d1d1f;
  background: #f5f5f7;
  background-size: auto;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-home a {
  color: inherit;
}

.site-home .reading-progress {
  height: 2px;
  background: #0071e3;
  box-shadow: none;
}

.site-shell,
.site-section,
.site-footer {
  max-width: 1120px;
  padding-left: clamp(20px, 4vw, 44px);
  padding-right: clamp(20px, 4vw, 44px);
}

.site-topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  color: #1d1d1f;
}

.site-topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8e8ed;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-mark span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #d2d2d7;
  border-radius: 50%;
  color: #1d1d1f;
  background: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-mark strong,
.site-nav a,
.site-ghost-btn,
.site-primary-btn,
.site-secondary-btn,
.site-like-btn,
.site-repo-toolbar a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  color: #6e6e73;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a.active,
.site-nav a:hover {
  color: #1d1d1f;
  background: transparent;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 2px;
  background: #1d1d1f;
}

.site-ghost-btn,
.site-primary-btn,
.site-secondary-btn,
.site-card-actions a,
.site-repo-toolbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #d2d2d7;
  border-radius: 999px;
  color: #1d1d1f;
  background: #ffffff;
  text-decoration: none;
  box-shadow: none;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, background 160ms ease;
}

.site-primary-btn {
  color: #ffffff;
  border-color: #0071e3;
  background: #0071e3;
}

.site-secondary-btn,
.site-ghost-btn {
  color: #1d1d1f;
}

.site-secondary-btn.small {
  min-height: 36px;
  padding: 0 14px;
  cursor: pointer;
}

.site-ghost-btn:hover,
.site-primary-btn:hover,
.site-secondary-btn:hover,
.site-card-actions a:hover,
.site-repo-toolbar a:hover,
.site-like-btn:hover {
  transform: translateY(-1px);
  border-color: #0071e3;
  color: #0071e3;
}

.site-primary-btn:hover {
  color: #ffffff;
  background: #0066cc;
  border-color: #0066cc;
}

.site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  padding: clamp(58px, 9vw, 118px) 0 clamp(42px, 7vw, 76px);
}

.site-hero-copy,
.site-signal-panel,
.site-blog-card,
.site-repo-card,
.site-engage-card,
.site-comment-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-hero-copy {
  padding: 0;
  border-radius: 0;
}

.site-eyebrow,
.site-kicker,
.site-card-meta,
.site-repo-meta,
.site-signal-header span,
.site-section-head span,
.site-engage-card span,
.site-comment-panel span,
.site-repo-top span {
  display: block;
  margin: 0;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-kicker span,
.site-card-meta span {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-card-meta span + span::before {
  content: "/";
  margin-right: 10px;
  color: #c7c7cc;
}

.site-hero h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  color: #1d1d1f;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.site-hero p {
  max-width: 700px;
  color: #6e6e73;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.site-page-hero {
  max-width: 790px;
  padding: clamp(56px, 8vw, 92px) 0 30px;
}

.site-page-hero h1 {
  margin: 12px 0 12px;
  color: #1d1d1f;
  font-size: clamp(42px, 6.4vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.site-page-hero p {
  max-width: 720px;
  color: #6e6e73;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.48;
}

.site-signal-panel {
  display: block;
  padding: 0;
  border-radius: 0;
}

.site-about-panel {
  position: relative;
  overflow: visible;
  text-align: left;
}

.site-about-panel::before {
  display: none;
}

.site-about-panel > * {
  position: relative;
  z-index: 1;
}

.site-about-photo {
  width: min(100%, 320px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.10);
}

.site-portrait-note {
  margin: 18px 0 6px;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 600;
}

.site-about-panel strong {
  display: block;
  max-width: 280px;
  color: #1d1d1f;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.22;
}

.site-personal-hero .site-hero-lede {
  max-width: 760px;
}

.site-personal-hero.site-hero {
  padding-top: clamp(44px, 7vw, 86px);
}

.site-personal-hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 5.65vw, 66px);
}

.site-personal-hero .site-about-photo {
  width: min(100%, 292px);
}

.site-hero-note {
  max-width: 640px;
  margin-top: 14px;
  color: #86868b;
  font-size: 17px;
  line-height: 1.5;
}

.site-profile-card {
  align-self: stretch;
}

.site-profile-copy p:last-child {
  max-width: 300px;
  margin-top: 12px;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.5;
}

.site-profile-facts {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid #d2d2d7;
}

.site-profile-facts div {
  padding: 15px 0;
  border-bottom: 1px solid #d2d2d7;
}

.site-profile-facts span,
.site-about-principles span {
  display: block;
  color: #86868b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-profile-facts strong {
  max-width: none;
  margin-top: 6px;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.site-about-work {
  padding-top: clamp(36px, 6vw, 70px);
}

.site-about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid #d2d2d7;
}

.site-about-story > div:first-child p {
  max-width: 680px;
  margin: 0 0 18px;
  color: #1d1d1f;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.site-about-story > div:first-child p:last-child {
  color: #6e6e73;
}

.site-about-principles {
  display: grid;
  gap: 0;
  border-top: 1px solid #d2d2d7;
}

.site-about-principles div {
  padding: 18px 0;
  border-bottom: 1px solid #d2d2d7;
}

.site-about-principles strong {
  display: block;
  margin-top: 8px;
  color: #1d1d1f;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.15;
}

.site-about-principles p {
  margin: 8px 0 0;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.5;
}

.site-about-grid,
.site-signal-grid {
  display: none;
}

.site-home-preview {
  padding-top: 16px;
}

.site-section {
  padding-top: clamp(50px, 8vw, 96px);
  padding-bottom: clamp(50px, 8vw, 96px);
}

.site-section.compact {
  padding-top: 24px;
}

.site-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.site-section-head h2 {
  margin: 8px 0 8px;
  color: #1d1d1f;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.site-section-head p {
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.5;
}

.site-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #d2d2d7;
}

.site-preview-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 24px;
  min-height: 0;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid #d2d2d7;
  border-radius: 0;
  color: inherit;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  transition: color 160ms ease, transform 160ms ease;
}

.site-preview-card span {
  color: #86868b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-preview-card strong {
  display: block;
  margin-top: 0;
  color: #1d1d1f;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 650;
  line-height: 1.12;
}

.site-preview-card p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.5;
}

.site-preview-card:hover {
  border-color: #d2d2d7;
  color: #0071e3;
  transform: translateX(3px);
}

.site-preview-card:hover strong {
  color: #0071e3;
}

.site-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.site-blog-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 5vw, 56px);
  min-height: 0;
  padding: 30px 0;
  border-bottom: 1px solid #d2d2d7;
  border-radius: 0;
  overflow: visible;
}

.site-blog-card:first-child {
  border-top: 1px solid #d2d2d7;
}

.site-blog-card.featured {
  grid-row: auto;
  flex-direction: initial;
  padding-top: 0;
  padding-bottom: 42px;
}

.site-blog-card:not(.featured) {
  grid-template-columns: minmax(0, 1fr);
}

.site-card-media {
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.site-card-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.site-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.site-blog-card h3,
.site-repo-card h3,
.site-engage-card h3,
.site-comment-panel h3 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.site-blog-card:not(.featured) h3 {
  font-size: clamp(21px, 2.2vw, 28px);
}

.site-blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.site-blog-card h3 a:hover {
  color: #0071e3;
}

.site-blog-card p,
.site-repo-card p,
.site-engage-card p,
.site-comment-panel p {
  max-width: 700px;
  margin: 0;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.5;
}

.site-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.site-card-actions a,
.site-like-btn {
  min-height: 34px;
  padding: 0 13px;
}

.site-like-btn {
  cursor: pointer;
  color: #1d1d1f;
  border: 1px solid #d2d2d7;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
}

.site-like-btn.liked {
  color: #ffffff;
  border-color: #1d1d1f;
  background: #1d1d1f;
}

.site-repo-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
}

.site-repo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #d2d2d7;
}

.site-repo-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  gap: 18px clamp(24px, 4vw, 42px);
  min-height: 0;
  padding: 24px 0;
  border-bottom: 1px solid #d2d2d7;
  border-radius: 0;
}

.site-repo-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.site-repo-top a {
  color: #0071e3;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-repo-card h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: clamp(21px, 2.3vw, 30px);
}

.site-repo-card p {
  grid-column: 2;
}

.site-repo-meta {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
  color: #86868b;
  letter-spacing: 0;
  text-transform: none;
}

.site-repo-loading {
  grid-column: 1 / -1;
  padding: 28px 0;
  color: #6e6e73;
  border: 0;
  border-bottom: 1px solid #d2d2d7;
  border-radius: 0;
}

.site-engage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.site-engage-card {
  padding: 22px;
  border: 1px solid #e8e8ed;
  border-radius: 18px;
  background: #ffffff;
}

.site-engage-card h3 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.site-engage-card p {
  margin-top: 10px;
  font-size: 15px;
}

.site-comment-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(22px, 4vw, 44px);
  margin-top: 18px;
  padding: 28px;
  border: 1px solid #e8e8ed;
  border-radius: 22px;
  background: #ffffff;
}

.site-comment-panel h3 {
  margin-top: 10px;
  font-size: 28px;
}

.site-comment-panel p {
  margin-top: 12px;
}

.site-comments {
  min-height: 180px;
  border: 1px solid #e8e8ed;
  border-radius: 16px;
  background: #fbfbfd;
  padding: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
  color: #86868b;
  border-top: 1px solid #d2d2d7;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #1d1d1f;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer-links a {
  color: #515154;
  text-decoration: none;
  font-weight: 600;
}

.site-footer-links a:hover {
  color: #0071e3;
}

@media (max-width: 960px) {
  .site-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav a.active::after {
    bottom: -5px;
  }

  .site-hero,
  .site-blog-card,
  .site-comment-panel,
  .site-about-story {
    grid-template-columns: 1fr;
  }

  .site-about-photo {
    width: min(100%, 260px);
  }

  .site-repo-card {
    grid-template-columns: 1fr;
  }

  .site-repo-card h3,
  .site-repo-card p,
  .site-repo-meta {
    grid-column: auto;
  }

  .site-engage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-shell,
  .site-section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-topbar {
    gap: 14px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .site-ghost-btn {
    display: none;
  }

  .site-hero {
    padding-top: 46px;
    padding-bottom: 38px;
  }

  .site-hero h1,
  .site-page-hero h1 {
    font-size: 42px;
  }

  .site-hero p,
  .site-page-hero p {
    font-size: 18px;
  }

  .site-card-media {
    border-radius: 18px;
  }

  .site-card-media img {
    min-height: 210px;
  }

  .site-preview-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .site-engage-card,
  .site-comment-panel {
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Absolute final theme guard: appended after all legacy overrides ───── */
html[data-theme="dark"] body.site-home,
html[data-theme="dark"] body.article-page,
html[data-theme="dark"] body.live26-page.article-page,
html[data-theme="dark"] body.agent-page.article-page,
html[data-theme="dark"] body.ai-jobs-page.article-page,
html[data-theme="dark"] .article-page .hero,
html[data-theme="dark"] .live26-page.article-page .live26-hero,
html[data-theme="dark"] .article-page .section,
html[data-theme="dark"] .live26-page.article-page .section,
html[data-theme="dark"] .article-page footer,
html[data-theme="dark"] .live26-page.article-page .live26-footer {
  color: var(--theme-text);
  background: var(--theme-page);
  border-color: var(--theme-line);
}

html[data-theme="dark"] .article-page .section.alt,
html[data-theme="dark"] .live26-page.article-page .section.alt,
html[data-theme="dark"] .site-mark span,
html[data-theme="dark"] .site-card-media,
html[data-theme="dark"] .site-like-btn,
html[data-theme="dark"] .site-ghost-btn,
html[data-theme="dark"] .site-secondary-btn,
html[data-theme="dark"] .site-card-actions a,
html[data-theme="dark"] .site-repo-toolbar a,
html[data-theme="dark"] .site-engage-card,
html[data-theme="dark"] .site-comment-panel,
html[data-theme="dark"] .site-comments,
html[data-theme="dark"] .article-page .chart-card,
html[data-theme="dark"] .live26-page.article-page .chart-card,
html[data-theme="dark"] .article-page .finding-card,
html[data-theme="dark"] .article-page .method-card,
html[data-theme="dark"] .article-page .analogy-card,
html[data-theme="dark"] .article-page .callout-banner,
html[data-theme="dark"] .article-page .conclusion-box,
html[data-theme="dark"] .article-page .insight-card,
html[data-theme="dark"] .article-page .matrix-cell,
html[data-theme="dark"] .article-page .job-row,
html[data-theme="dark"] .live26-page.article-page .live26-hero-panel,
html[data-theme="dark"] .live26-page.article-page .live26-brief > div,
html[data-theme="dark"] .live26-page.article-page .live26-brief > p,
html[data-theme="dark"] .live26-page.article-page .live26-control-room,
html[data-theme="dark"] .live26-page.article-page .live26-harness-card,
html[data-theme="dark"] .live26-page.article-page .live26-model-side,
html[data-theme="dark"] .live26-page.article-page .live26-model-core,
html[data-theme="dark"] .live26-page.article-page .live26-exec-query,
html[data-theme="dark"] .live26-page.article-page .live26-exec-evidence,
html[data-theme="dark"] .live26-page.article-page .live26-exec-answer,
html[data-theme="dark"] .live26-page.article-page .live26-pqc-card,
html[data-theme="dark"] .live26-page.article-page .live26-sources-panel,
html[data-theme="dark"] .live26-page.article-page .live26-scope-note > div,
html[data-theme="dark"] .live26-page.article-page .live26-shield-step,
html[data-theme="dark"] .agent-page.article-page .agent-control-card,
html[data-theme="dark"] .agent-page.article-page .agent-badge-card,
html[data-theme="dark"] .agent-page.article-page .request-card,
html[data-theme="dark"] .agent-page.article-page .sase-cloud,
html[data-theme="dark"] .agent-page.article-page .security-elevator,
html[data-theme="dark"] .agent-page.article-page .enterprise-building,
html[data-theme="dark"] .agent-page.article-page .fabric-verdict,
html[data-theme="dark"] .agent-page.article-page .microseg-note,
html[data-theme="dark"] .agent-page.article-page .agent-console,
html[data-theme="dark"] .agent-page.article-page .fabric-layer-card,
html[data-theme="dark"] .agent-page.article-page .glasswing-panel,
html[data-theme="dark"] .ai-jobs-page.article-page .treemap-tooltip {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
}

html[data-theme="dark"] .article-page .diagram-wrapper,
html[data-theme="dark"] .article-page .conclusion-box .cb-actions li,
html[data-theme="dark"] .live26-page.article-page .live26-domain-node,
html[data-theme="dark"] .live26-page.article-page .live26-question-pane,
html[data-theme="dark"] .live26-page.article-page .live26-answer-pane,
html[data-theme="dark"] .live26-page.article-page .live26-evidence-list li,
html[data-theme="dark"] .live26-page.article-page .live26-evidence-cloud span,
html[data-theme="dark"] .agent-page.article-page .elevator-gate,
html[data-theme="dark"] .agent-page.article-page .room-node,
html[data-theme="dark"] .agent-page.article-page .building-floor,
html[data-theme="dark"] .agent-page.article-page .agent-checkpoint,
html[data-theme="dark"] .agent-page.article-page .fabric-node,
html[data-theme="dark"] .ai-jobs-page.article-page .treemap-wrapper,
html[data-theme="dark"] .ai-jobs-page.article-page .job-list {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface-soft);
}

html[data-theme="dark"] .article-page .hero h1,
html[data-theme="dark"] .live26-page.article-page .live26-hero h1,
html[data-theme="dark"] .article-page .section h2,
html[data-theme="dark"] .live26-page.article-page .section h2,
html[data-theme="dark"] .article-page .author-name,
html[data-theme="dark"] .article-page .hero-stat-value,
html[data-theme="dark"] .live26-page.article-page .live26-stats .hero-stat-value,
html[data-theme="dark"] .article-page .chart-card h3,
html[data-theme="dark"] .live26-page.article-page .chart-card h3,
html[data-theme="dark"] .article-page .method-card h3,
html[data-theme="dark"] .article-page .finding-card .fc-title,
html[data-theme="dark"] .article-page .key-findings h3,
html[data-theme="dark"] .article-page .conclusion-box h3,
html[data-theme="dark"] .article-page .conclusion-box .cb-lead,
html[data-theme="dark"] .article-page .conclusion-box .cb-closing,
html[data-theme="dark"] .article-page .conclusion-box .cb-actions li strong,
html[data-theme="dark"] .article-page strong,
html[data-theme="dark"] .live26-page.article-page .live26-signal-row strong,
html[data-theme="dark"] .live26-page.article-page .live26-brief strong,
html[data-theme="dark"] .live26-page.article-page .live26-harness-card strong,
html[data-theme="dark"] .live26-page.article-page .live26-sources-title,
html[data-theme="dark"] .live26-page.article-page .live26-sources-panel summary,
html[data-theme="dark"] .ai-jobs-page.article-page .treemap-tooltip .tt-title,
html[data-theme="dark"] .ai-jobs-page.article-page .treemap-tooltip .tt-stats .value,
html[data-theme="dark"] .ai-jobs-page.article-page .insight-card .ic-title,
html[data-theme="dark"] .ai-jobs-page.article-page .matrix-cell h4,
html[data-theme="dark"] .site-mark strong,
html[data-theme="dark"] .site-nav a.active,
html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-hero h1,
html[data-theme="dark"] .site-page-hero h1,
html[data-theme="dark"] .site-about-panel strong,
html[data-theme="dark"] .site-section-head h2,
html[data-theme="dark"] .site-preview-card strong,
html[data-theme="dark"] .site-blog-card h3,
html[data-theme="dark"] .site-repo-card h3,
html[data-theme="dark"] .site-engage-card h3,
html[data-theme="dark"] .site-comment-panel h3,
html[data-theme="dark"] .site-footer strong {
  color: var(--theme-text-strong);
}

html[data-theme="dark"] .article-page .hero .subtitle,
html[data-theme="dark"] .live26-page.article-page .live26-hero .subtitle,
html[data-theme="dark"] .article-page .author-date,
html[data-theme="dark"] .article-page .hero-stat-label,
html[data-theme="dark"] .live26-page.article-page .live26-stats .hero-stat-label,
html[data-theme="dark"] .live26-page.article-page .live26-stat-kicker,
html[data-theme="dark"] .article-page .hero-sources,
html[data-theme="dark"] .live26-page.article-page .live26-hero .hero-sources,
html[data-theme="dark"] .live26-page.article-page .live26-hero .hero-sources span,
html[data-theme="dark"] .article-page .nav-link,
html[data-theme="dark"] .live26-page.article-page .nav-link,
html[data-theme="dark"] .article-page .section-desc,
html[data-theme="dark"] .live26-page.article-page .section-desc,
html[data-theme="dark"] .article-page .chart-card .chart-desc,
html[data-theme="dark"] .live26-page.article-page .chart-card .chart-desc,
html[data-theme="dark"] .article-page .method-card p,
html[data-theme="dark"] .article-page .finding-card .fc-body,
html[data-theme="dark"] .article-page .insight-card .ic-body,
html[data-theme="dark"] .article-page .matrix-cell p,
html[data-theme="dark"] .article-page .matrix-cell .mc-examples,
html[data-theme="dark"] .article-page .conclusion-box .cb-detail,
html[data-theme="dark"] .article-page .analogy-card p,
html[data-theme="dark"] .article-page .job-row .job-meta,
html[data-theme="dark"] .live26-page.article-page .live26-signal-row span,
html[data-theme="dark"] .live26-page.article-page .agent-eyebrow,
html[data-theme="dark"] .live26-page.article-page .live26-kicker,
html[data-theme="dark"] .live26-page.article-page .live26-sources-kicker,
html[data-theme="dark"] .live26-page.article-page .live26-domain-node span,
html[data-theme="dark"] .live26-page.article-page .live26-question-pane span,
html[data-theme="dark"] .live26-page.article-page .live26-answer-pane span,
html[data-theme="dark"] .live26-page.article-page .live26-prompt-chip,
html[data-theme="dark"] .live26-page.article-page .live26-sources-note,
html[data-theme="dark"] .agent-page.article-page .agent-card-head p,
html[data-theme="dark"] .agent-page.article-page .room-node small,
html[data-theme="dark"] .agent-page.article-page .elevator-gate small,
html[data-theme="dark"] .agent-page.article-page .agent-badge-card small,
html[data-theme="dark"] .agent-page.article-page .fabric-layer-card p,
html[data-theme="dark"] .ai-jobs-page.article-page .treemap-tooltip .tt-stats .label,
html[data-theme="dark"] .ai-jobs-page.article-page .treemap-tooltip .tt-rationale,
html[data-theme="dark"] .ai-jobs-page.article-page .treemap-legend,
html[data-theme="dark"] .ai-jobs-page.article-page .job-row .job-meta,
html[data-theme="dark"] .site-nav a,
html[data-theme="dark"] .site-eyebrow,
html[data-theme="dark"] .site-kicker,
html[data-theme="dark"] .site-card-meta,
html[data-theme="dark"] .site-repo-meta,
html[data-theme="dark"] .site-section-head span,
html[data-theme="dark"] .site-engage-card span,
html[data-theme="dark"] .site-comment-panel span,
html[data-theme="dark"] .site-repo-top span,
html[data-theme="dark"] .site-hero p,
html[data-theme="dark"] .site-page-hero p,
html[data-theme="dark"] .site-section-head p,
html[data-theme="dark"] .site-preview-card p,
html[data-theme="dark"] .site-blog-card p,
html[data-theme="dark"] .site-repo-card p,
html[data-theme="dark"] .site-engage-card p,
html[data-theme="dark"] .site-comment-panel p,
html[data-theme="dark"] .site-portrait-note,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .site-repo-loading {
  color: var(--theme-muted);
}

html[data-theme="dark"] .article-page .section-prose,
html[data-theme="dark"] .live26-page.article-page .section-prose {
  color: color-mix(in srgb, var(--theme-text) 86%, var(--theme-muted));
}

/* ── Chart canvas sizing guard ─────────────────────────────────────────── */
.article-page .chart-card > canvas,
.live26-page.article-page .chart-card > canvas {
  display: block;
  width: 100% !important;
  height: 280px !important;
  min-height: 280px;
  max-height: 320px;
}

.article-page .chart-card.wide > canvas,
.live26-page.article-page .chart-card.wide > canvas {
  height: 320px !important;
  min-height: 320px;
  max-height: 380px;
}

.article-page .chart-card > div[style*="min-height"] > canvas,
.ai-jobs-page.article-page .chart-card > div[style*="min-height"] > canvas {
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  max-height: none;
}

@media (max-width: 700px) {
  .article-page .chart-card > canvas,
  .live26-page.article-page .chart-card > canvas {
    height: 260px !important;
    min-height: 260px;
  }

  .article-page .chart-card.wide > canvas,
  .live26-page.article-page .chart-card.wide > canvas {
    height: 300px !important;
    min-height: 300px;
  }
}

/* ── Dark prose specificity fix ───────────────────────────────────────── */
html[data-theme="dark"] body.article-page .section-prose strong,
html[data-theme="dark"] body.live26-page.article-page .section-prose strong,
html[data-theme="dark"] body.agent-page.article-page .section-prose strong,
html[data-theme="dark"] body.ai-jobs-page.article-page .section-prose strong,
html[data-theme="dark"] body.article-page p strong,
html[data-theme="dark"] body.live26-page.article-page p strong,
html[data-theme="dark"] body.agent-page.article-page p strong,
html[data-theme="dark"] body.ai-jobs-page.article-page p strong {
  color: var(--theme-text-strong);
}

/* ── Dark site shell specificity fix ──────────────────────────────────── */
html[data-theme="dark"] body.site-home .site-topbar,
html[data-theme="dark"] body.site-home .site-mark strong,
html[data-theme="dark"] body.site-home .site-secondary-btn,
html[data-theme="dark"] body.site-home .site-ghost-btn,
html[data-theme="dark"] body.site-home .site-like-btn,
html[data-theme="dark"] body.site-home .site-card-actions a,
html[data-theme="dark"] body.site-home .site-repo-toolbar a {
  color: var(--theme-text-strong);
}

html[data-theme="dark"] body.site-home .site-nav a,
html[data-theme="dark"] body.site-home .site-eyebrow,
html[data-theme="dark"] body.site-home .site-kicker,
html[data-theme="dark"] body.site-home .site-card-meta,
html[data-theme="dark"] body.site-home .site-repo-meta,
html[data-theme="dark"] body.site-home .site-section-head span,
html[data-theme="dark"] body.site-home .site-engage-card span,
html[data-theme="dark"] body.site-home .site-comment-panel span,
html[data-theme="dark"] body.site-home .site-repo-top span,
html[data-theme="dark"] body.site-home .site-hero p,
html[data-theme="dark"] body.site-home .site-page-hero p,
html[data-theme="dark"] body.site-home .site-section-head p,
html[data-theme="dark"] body.site-home .site-preview-card p,
html[data-theme="dark"] body.site-home .site-blog-card p,
html[data-theme="dark"] body.site-home .site-repo-card p,
html[data-theme="dark"] body.site-home .site-engage-card p,
html[data-theme="dark"] body.site-home .site-comment-panel p,
html[data-theme="dark"] body.site-home .site-portrait-note,
html[data-theme="dark"] body.site-home .site-footer,
html[data-theme="dark"] body.site-home .site-repo-loading {
  color: var(--theme-muted);
}

html[data-theme="dark"] body.site-home .site-nav a.active,
html[data-theme="dark"] body.site-home .site-nav a:hover,
html[data-theme="dark"] body.site-home .site-hero h1,
html[data-theme="dark"] body.site-home .site-page-hero h1,
html[data-theme="dark"] body.site-home .site-about-panel strong,
html[data-theme="dark"] body.site-home .site-section-head h2,
html[data-theme="dark"] body.site-home .site-preview-card strong,
html[data-theme="dark"] body.site-home .site-blog-card h3,
html[data-theme="dark"] body.site-home .site-repo-card h3,
html[data-theme="dark"] body.site-home .site-engage-card h3,
html[data-theme="dark"] body.site-home .site-comment-panel h3,
html[data-theme="dark"] body.site-home .site-footer strong {
  color: var(--theme-text-strong);
}

/* ── Dark article nav final guard ─────────────────────────────────────── */
html[data-theme="dark"] body.article-page .sticky-nav,
html[data-theme="dark"] body.live26-page.article-page .sticky-nav,
html[data-theme="dark"] body.agent-page.article-page .sticky-nav,
html[data-theme="dark"] body.ai-jobs-page.article-page .sticky-nav {
  background: var(--theme-nav);
  border-color: var(--theme-line);
}

html[data-theme="dark"] body.article-page .sticky-nav .nav-link,
html[data-theme="dark"] body.live26-page.article-page .sticky-nav .nav-link,
html[data-theme="dark"] body.agent-page.article-page .sticky-nav .nav-link,
html[data-theme="dark"] body.ai-jobs-page.article-page .sticky-nav .nav-link {
  color: var(--theme-muted);
}

html[data-theme="dark"] body.article-page .sticky-nav .nav-link:hover,
html[data-theme="dark"] body.article-page .sticky-nav .nav-link.active,
html[data-theme="dark"] body.live26-page.article-page .sticky-nav .nav-link:hover,
html[data-theme="dark"] body.live26-page.article-page .sticky-nav .nav-link.active,
html[data-theme="dark"] body.agent-page.article-page .sticky-nav .nav-link:hover,
html[data-theme="dark"] body.agent-page.article-page .sticky-nav .nav-link.active,
html[data-theme="dark"] body.ai-jobs-page.article-page .sticky-nav .nav-link:hover,
html[data-theme="dark"] body.ai-jobs-page.article-page .sticky-nav .nav-link.active {
  color: var(--theme-text-strong);
}

/* ── Final publish polish: width, article site nav, card contrast ─────── */
body.site-home {
  width: 100%;
  overflow-x: hidden;
}

body.site-home .site-shell,
body.site-home .site-section,
body.site-home .site-footer {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(22px, 6vw, 88px);
  padding-right: clamp(22px, 6vw, 88px);
}

body.site-home .site-hero,
body.site-home .site-page-hero,
body.site-home .site-home-preview,
body.site-home .site-blog-grid,
body.site-home .site-repo-grid,
body.site-home .site-engage-grid,
body.site-home .site-comment-panel,
body.site-home .site-preview-grid,
body.site-home .site-section-head,
body.site-home .site-repo-toolbar {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

body.site-home .site-page-hero {
  max-width: none;
}

body.site-home .site-page-hero > p,
body.site-home .site-page-hero h1 {
  max-width: 820px;
}

body.site-home .site-blog-card,
body.site-home .site-repo-card {
  max-width: none;
}

body.article-page .article-site-topbar {
  position: sticky;
  top: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-sizing: border-box;
  width: 100%;
  padding: 13px clamp(18px, 4vw, 54px);
  color: var(--theme-text);
  border-bottom: 1px solid var(--theme-line);
  background: var(--theme-nav);
  backdrop-filter: blur(18px);
}

body.site-home .site-topbar {
  width: 100%;
  box-sizing: border-box;
}

body.article-page .article-site-topbar .site-mark,
body.article-page .article-site-topbar .site-nav,
body.article-page .article-site-topbar .site-ghost-btn,
body.article-page .article-site-topbar .theme-toggle {
  flex: 0 0 auto;
}

body.article-page .article-site-topbar .site-mark span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--theme-text-strong);
  border: 1px solid var(--theme-line);
  border-radius: 50%;
  background: var(--theme-surface);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

body.article-page .article-site-topbar .site-mark strong,
body.article-page .article-site-topbar .site-nav a,
body.article-page .article-site-topbar .site-ghost-btn {
  color: var(--theme-text-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

body.article-page .article-site-topbar .site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

body.article-page .article-site-topbar .site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--theme-muted);
}

body.article-page .article-site-topbar .site-nav a:hover,
body.article-page .article-site-topbar .site-nav a.active {
  color: var(--theme-text-strong);
}

body.article-page .article-site-topbar .site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  border-radius: 2px;
  background: var(--theme-text-strong);
}

body.article-page .article-site-topbar .site-ghost-btn {
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  background: var(--theme-surface);
}

body.article-page .article-site-topbar .site-ghost-btn:hover {
  color: var(--theme-link);
  border-color: var(--theme-link);
}

body.article-page .sticky-nav {
  top: 58px;
  z-index: 90;
}

body.article-page .article-site-topbar + .hero,
body.article-page .article-site-topbar + .live26-hero {
  margin-top: 0;
}

body.article-page .chart-card,
body.article-page .finding-card,
body.article-page .method-card,
body.article-page .analogy-card,
body.article-page .callout-banner,
body.article-page .conclusion-box,
body.article-page .insight-card,
body.article-page .matrix-cell,
body.article-page .job-row,
body.article-page .diagram-wrapper,
body.article-page .treemap-wrapper,
body.article-page .job-list,
body.article-page .agent-control-card,
body.article-page .agent-badge-card,
body.article-page .request-card,
body.article-page .fabric-card,
body.article-page .fabric-layer-card,
body.article-page .glasswing-panel,
body.article-page .live26-hero-panel,
body.article-page .live26-control-room,
body.article-page .live26-harness-card,
body.article-page .live26-model-side,
body.article-page .live26-model-core,
body.article-page .live26-exec-query,
body.article-page .live26-exec-evidence,
body.article-page .live26-exec-answer,
body.article-page .live26-pqc-card,
body.article-page .live26-sources-panel,
body.article-page .live26-scope-note > div,
body.article-page .live26-shield-step,
body.article-page .live26-domain-node,
body.article-page .live26-question-pane,
body.article-page .live26-answer-pane,
body.article-page .live26-evidence-list li,
body.article-page .live26-evidence-cloud span,
body.article-page .elevator-gate,
body.article-page .room-node,
body.article-page .building-floor,
body.article-page .agent-checkpoint,
body.article-page .fabric-node,
body.site-home .site-engage-card,
body.site-home .site-comment-panel,
body.site-home .site-comments,
body.site-home .site-like-btn,
body.site-home .site-card-actions a,
body.site-home .site-repo-toolbar a {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
}

body.article-page .diagram-wrapper,
body.article-page .treemap-wrapper,
body.article-page .job-list,
body.article-page .live26-domain-node,
body.article-page .live26-question-pane,
body.article-page .live26-answer-pane,
body.article-page .live26-evidence-list li,
body.article-page .live26-evidence-cloud span,
body.article-page .elevator-gate,
body.article-page .room-node,
body.article-page .building-floor,
body.article-page .agent-checkpoint,
body.article-page .fabric-node,
body.site-home .site-comments {
  background: var(--theme-surface-soft);
}

body.article-page .chart-card h3,
body.article-page .finding-card .fc-title,
body.article-page .method-card h3,
body.article-page .conclusion-box h3,
body.article-page .conclusion-box .cb-lead,
body.article-page .conclusion-box .cb-closing,
body.article-page .insight-card .ic-title,
body.article-page .matrix-cell h4,
body.article-page .job-row .job-title,
body.article-page .fabric-card strong,
body.article-page .fabric-layer-card strong,
body.article-page .live26-sources-panel summary,
body.site-home .site-engage-card h3,
body.site-home .site-comment-panel h3 {
  color: var(--theme-text-strong);
}

body.article-page .chart-card .chart-desc,
body.article-page .finding-card .fc-body,
body.article-page .method-card p,
body.article-page .conclusion-box .cb-detail,
body.article-page .insight-card .ic-body,
body.article-page .matrix-cell p,
body.article-page .matrix-cell .mc-examples,
body.article-page .job-row .job-meta,
body.article-page .agent-card-head p,
body.article-page .room-node small,
body.article-page .elevator-gate small,
body.article-page .agent-badge-card small,
body.article-page .fabric-layer-card p,
body.article-page .live26-sources-note,
body.site-home .site-engage-card p,
body.site-home .site-comment-panel p {
  color: var(--theme-muted);
}

body.site-home .site-like-btn.liked {
  color: #ffffff;
  border-color: var(--theme-text-strong);
  background: var(--theme-text-strong);
}

html[data-theme="dark"] body.site-home .site-like-btn.liked {
  color: #000000;
}

body.live26-page.article-page .live26-briefing-meta span:first-child {
  color: #ffffff;
  border-color: #1d1d1f;
  background: #1d1d1f;
}

html[data-theme="dark"] body.live26-page.article-page .live26-briefing-meta span:first-child {
  color: #000000;
  border-color: #f5f5f7;
  background: #f5f5f7;
}

/* ── Cisco article component polish: final theme correction ───────────── */
body.live26-page.article-page .live26-control-room,
body.live26-page.article-page .live26-harness-card,
body.live26-page.article-page .live26-pqc-risk,
body.live26-page.article-page .live26-pqc-core,
body.live26-page.article-page .live26-scope-note > div {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
}

body.live26-page.article-page .live26-question-pane,
body.live26-page.article-page .live26-answer-pane,
body.live26-page.article-page .live26-domain-map,
body.live26-page.article-page .live26-domain-node,
body.live26-page.article-page .live26-evidence-list li,
body.live26-page.article-page .live26-harness-card > div,
body.live26-page.article-page .live26-harness-card li {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface-soft);
  box-shadow: none;
}

body.live26-page.article-page .live26-control-room {
  border-radius: 12px;
}

body.live26-page.article-page .live26-control-head p,
body.live26-page.article-page .live26-harness-card p,
body.live26-page.article-page .live26-domain-node small,
body.live26-page.article-page .live26-evidence-list small,
body.live26-page.article-page .live26-pqc-risk p,
body.live26-page.article-page .live26-pqc-core small,
body.live26-page.article-page .live26-scope-note p,
body.live26-page.article-page .live26-shield-step small {
  color: var(--theme-muted);
}

body.live26-page.article-page .live26-question-pane p,
body.live26-page.article-page .live26-answer-pane p,
body.live26-page.article-page .live26-domain-node strong,
body.live26-page.article-page .live26-evidence-list b,
body.live26-page.article-page .live26-harness-card strong,
body.live26-page.article-page .live26-harness-card li,
body.live26-page.article-page .live26-pqc-risk strong,
body.live26-page.article-page .live26-pqc-core strong,
body.live26-page.article-page .live26-shield-step strong,
body.live26-page.article-page .live26-scope-note strong {
  color: var(--theme-text-strong);
}

body.live26-page.article-page .live26-question-pane span,
body.live26-page.article-page .live26-answer-pane > span,
body.live26-page.article-page .live26-domain-node span,
body.live26-page.article-page .live26-harness-card span {
  color: var(--theme-link);
}

body.live26-page.article-page .live26-domain-node {
  opacity: 0.78;
  transform: none;
}

body.live26-page.article-page .live26-domain-node.active,
body.live26-page.article-page .live26-evidence-cloud span.active {
  opacity: 1;
  color: var(--theme-text);
  border-color: color-mix(in srgb, var(--theme-link) 46%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--theme-link) 8%, var(--theme-surface));
}

body.live26-page.article-page .live26-domain-node span,
body.live26-page.article-page .live26-harness-card li::before {
  background: color-mix(in srgb, var(--theme-link) 12%, transparent);
  box-shadow: none;
}

body.live26-page.article-page .live26-prompt-chip {
  color: color-mix(in srgb, var(--green) 70%, var(--theme-text-strong));
  border-color: color-mix(in srgb, var(--green) 32%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--green) 10%, var(--theme-surface));
}

body.live26-page.article-page .live26-persona-switch {
  border-color: var(--theme-soft-line);
  background: var(--theme-surface-soft);
}

body.live26-page.article-page .live26-persona-btn {
  color: var(--theme-muted);
  border-color: var(--theme-line);
  background: var(--theme-surface);
}

body.live26-page.article-page .live26-persona-btn:hover {
  color: var(--theme-link);
  border-color: var(--theme-link);
}

body.live26-page.article-page .live26-persona-btn.active {
  color: var(--theme-surface);
  border-color: var(--theme-text-strong);
  background: var(--theme-text-strong);
  box-shadow: none;
}

html[data-theme="dark"] body.live26-page.article-page .live26-persona-btn.active {
  color: #000000;
}

body.live26-page.article-page .live26-pqc-panel::before {
  background: color-mix(in srgb, var(--theme-link) 28%, var(--theme-soft-line));
  box-shadow: none;
}

body.live26-page.article-page .live26-pqc-risk span,
body.live26-page.article-page .live26-pqc-core span,
body.live26-page.article-page .live26-scope-note span {
  color: var(--theme-link);
}

body.live26-page.article-page .live26-pqc-risk:last-child span,
body.live26-page.article-page .live26-scope-note > div:nth-child(2) span {
  color: color-mix(in srgb, var(--yellow) 75%, var(--theme-text-strong));
}

/* ── Agent Shadow IT fabric view polish: final theme correction ───────── */
body.agent-page.article-page .agent-control-card,
body.agent-page.article-page .building-request-panel,
body.agent-page.article-page .security-elevator,
body.agent-page.article-page .enterprise-building,
body.agent-page.article-page .fabric-verdict,
body.agent-page.article-page .microseg-note {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
}

body.agent-page.article-page .request-card,
body.agent-page.article-page .agent-badge-card,
body.agent-page.article-page .sase-cloud,
body.agent-page.article-page .elevator-title,
body.agent-page.article-page .elevator-gate,
body.agent-page.article-page .building-label,
body.agent-page.article-page .building-floor,
body.agent-page.article-page .floor-meta,
body.agent-page.article-page .room-node {
  color: var(--theme-text);
  border-color: var(--theme-soft-line);
  background: var(--theme-surface-soft);
  box-shadow: none;
}

body.agent-page.article-page .agent-mode-switch {
  border-color: var(--theme-soft-line);
  background: var(--theme-surface-soft);
}

body.agent-page.article-page .agent-mode-btn {
  color: var(--theme-muted);
  border: 1px solid transparent;
  background: transparent;
}

body.agent-page.article-page .agent-mode-btn:hover {
  color: var(--theme-link);
  border-color: var(--theme-link);
  background: var(--theme-surface);
}

body.agent-page.article-page .agent-mode-btn.active {
  color: #062c1e;
  border-color: color-mix(in srgb, var(--green) 44%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--green) 22%, var(--theme-surface));
  box-shadow: none;
}

body.agent-page.article-page .agent-mode-btn.active.danger {
  color: #4b0d12;
  border-color: color-mix(in srgb, var(--red) 44%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--red) 18%, var(--theme-surface));
}

html[data-theme="dark"] body.agent-page.article-page .agent-mode-btn.active {
  color: var(--green);
}

html[data-theme="dark"] body.agent-page.article-page .agent-mode-btn.active.danger {
  color: var(--red);
}

body.agent-page.article-page .request-card span,
body.agent-page.article-page .elevator-title span,
body.agent-page.article-page .building-label span,
body.agent-page.article-page .floor-meta span,
body.agent-page.article-page .agent-eyebrow,
body.agent-page.article-page .sase-cloud span {
  color: var(--theme-link);
}

body.agent-page.article-page .request-card p,
body.agent-page.article-page .agent-badge-card small,
body.agent-page.article-page .sase-cloud small,
body.agent-page.article-page .elevator-gate span,
body.agent-page.article-page .elevator-gate small,
body.agent-page.article-page .room-node small,
body.agent-page.article-page .fabric-verdict p,
body.agent-page.article-page .microseg-note p,
body.agent-page.article-page .access-legend span {
  color: var(--theme-muted);
}

body.agent-page.article-page .agent-badge-card strong,
body.agent-page.article-page .sase-cloud strong,
body.agent-page.article-page .elevator-title strong,
body.agent-page.article-page .elevator-gate strong,
body.agent-page.article-page .building-label strong,
body.agent-page.article-page .floor-meta strong,
body.agent-page.article-page .room-node strong,
body.agent-page.article-page .fabric-verdict span,
body.agent-page.article-page .microseg-note span {
  color: var(--theme-text-strong);
}

body.agent-page.article-page .agent-badge-card.active-agent,
body.agent-page.article-page .agent-badge-card:hover {
  border-color: color-mix(in srgb, var(--theme-link) 38%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--theme-link) 8%, var(--theme-surface));
}

body.agent-page.article-page .agent-badge-orb {
  color: var(--theme-link);
  border-color: color-mix(in srgb, var(--theme-link) 35%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--theme-link) 12%, var(--theme-surface));
  box-shadow: none;
}

body.agent-page.article-page .sase-cloud::before,
body.agent-page.article-page .sase-cloud::after {
  background: color-mix(in srgb, var(--theme-link) 10%, transparent);
}

body.agent-page.article-page .elevator-title,
body.agent-page.article-page .fabric-verdict.weak,
body.agent-page.article-page .building-floor.restricted,
body.agent-page.article-page .room-node.open,
body.agent-page.article-page .room-node.blocked,
body.agent-page.article-page .elevator-gate.weak {
  border-color: color-mix(in srgb, var(--red) 24%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--red) 6%, var(--theme-surface));
}

body.agent-page.article-page .agent-control-card[data-agent-state="governed"] .elevator-title,
body.agent-page.article-page .agent-control-card[data-agent-state="governed"] .building-floor,
body.agent-page.article-page .fabric-verdict.strong,
body.agent-page.article-page .elevator-gate.strong,
body.agent-page.article-page .room-node.allowed {
  border-color: color-mix(in srgb, var(--green) 28%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--green) 7%, var(--theme-surface));
}

body.agent-page.article-page .room-node.review {
  border-color: color-mix(in srgb, var(--yellow) 34%, var(--theme-soft-line));
  background: color-mix(in srgb, var(--yellow) 8%, var(--theme-surface));
}

body.agent-page.article-page .building-label strong {
  color: color-mix(in srgb, var(--red) 78%, var(--theme-text-strong));
}

body.agent-page.article-page .agent-control-card[data-agent-state="governed"] .building-label strong {
  color: color-mix(in srgb, var(--green) 78%, var(--theme-text-strong));
}

body.agent-page.article-page .elevator-gate::before,
body.agent-page.article-page .room-node::before {
  border-color: var(--theme-surface);
  box-shadow: none;
}

body.agent-page.article-page .floor-meta {
  min-width: 0;
}

body.site-home .site-hero-note,
body.site-home .site-profile-copy p:last-child,
body.site-home .site-about-principles p {
  color: var(--theme-muted);
}

body.site-home .site-profile-facts,
body.site-home .site-profile-facts div,
body.site-home .site-about-story,
body.site-home .site-about-principles,
body.site-home .site-about-principles div {
  border-color: var(--theme-line);
}

body.site-home .site-profile-facts strong,
body.site-home .site-about-story > div:first-child p,
body.site-home .site-about-principles strong {
  color: var(--theme-text-strong);
}

body.site-home .site-about-story > div:first-child p:last-child {
  color: var(--theme-muted);
}

body.site-home .site-profile-facts span,
body.site-home .site-about-principles span {
  color: var(--theme-muted-2);
}

body.site-home .site-work-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 42px);
}

body.site-home .site-work-note {
  padding: 18px 0 0;
  border-top: 1px solid var(--theme-line);
}

body.site-home .site-work-note span,
body.site-home .site-work-card span {
  display: block;
  color: var(--theme-muted-2);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

body.site-home .site-work-note strong {
  display: block;
  margin-top: 8px;
  color: var(--theme-text-strong);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.42;
}

body.site-home .site-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}

body.site-home .site-work-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--theme-line);
  border-radius: 22px;
  color: inherit;
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
  overflow: hidden;
  transform: none;
}

body.site-home .site-work-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-link), rgba(52, 199, 89, 0.75), rgba(175, 82, 222, 0.65));
  opacity: 0.85;
}

body.site-home .site-work-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

body.site-home .site-work-card strong {
  margin-top: 16px;
  color: var(--theme-text-strong);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

body.site-home .site-work-card p {
  max-width: none;
  margin: 14px 0 0;
  color: var(--theme-muted);
  font-size: 15px;
  line-height: 1.52;
}

body.site-home .site-work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

body.site-home .site-work-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  color: var(--theme-muted);
  background: var(--theme-surface-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

body.site-home .site-work-card small {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--theme-link);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

body.site-home .site-work-card small::after {
  content: ">";
  display: inline-block;
  margin-left: 6px;
}

body.site-home .site-work-card:hover {
  border-color: var(--theme-link);
  color: inherit;
  transform: translateY(-3px);
}

body.site-home .site-work-card:hover strong {
  color: var(--theme-text-strong);
}

body.site-home .site-work-card:hover small {
  opacity: 1;
  transform: translateX(0);
}

body.site-home .site-work-card:focus-visible {
  outline: 3px solid var(--theme-link);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  body.site-home .site-work-intro,
  body.site-home .site-work-grid {
    grid-template-columns: 1fr;
  }

  body.site-home .site-work-note {
    max-width: 620px;
  }

  body.site-home .site-work-card {
    flex-direction: column;
    min-height: 0;
  }

  body.site-home .site-work-card > div {
    min-height: 0;
  }

  body.site-home .site-work-tags {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  body.site-home .site-work-card {
    padding: 20px;
    border-radius: 18px;
  }

  body.site-home .site-work-card small {
    position: static;
    display: inline-flex;
    align-self: flex-start;
    margin-top: 22px;
    opacity: 1;
    transform: none;
  }
}

body.article-page .back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  color: var(--theme-text-strong);
  background: color-mix(in srgb, var(--theme-surface) 88%, transparent);
  box-shadow: var(--theme-shadow);
  backdrop-filter: blur(18px);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

body.article-page .back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.article-page .back-to-top:hover,
body.article-page .back-to-top:focus-visible {
  color: var(--theme-link);
  border-color: var(--theme-link);
  outline: none;
}

@media (max-width: 760px) {
  body.site-home .site-shell,
  body.site-home .site-section,
  body.site-home .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.article-page .article-site-topbar {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 13px 16px;
  }

  body.article-page .article-site-topbar .site-nav {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  body.article-page .article-site-topbar .site-ghost-btn {
    display: none;
  }

  body.article-page .article-site-topbar .site-nav a.active::after {
    bottom: -5px;
  }

  body.article-page .sticky-nav {
    top: 106px;
  }

  body.article-page .back-to-top {
    right: 16px;
    bottom: 16px;
    min-width: 48px;
    min-height: 36px;
    padding: 0 13px;
  }
}

/* ── Final Article Byline Contrast ─────────────────────────────────────── */
body.article-page .author-byline,
body.live26-page.article-page .live26-hero .author-byline {
  color: var(--theme-text-strong);
  border-color: #d2d2d7;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] body.article-page .author-byline,
html[data-theme="dark"] body.live26-page.article-page .live26-hero .author-byline {
  color: #f5f5f7;
  border-color: rgba(255, 255, 255, 0.20);
  background: #1f1f22;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

body.article-page .author-photo {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  background: #ffffff;
}

body.article-page .author-name,
body.live26-page.article-page .live26-hero .author-name {
  color: #1d1d1f;
  font-weight: 750;
}

body.article-page .author-date,
body.live26-page.article-page .live26-hero .author-date {
  color: #515154;
  font-weight: 650;
}

html[data-theme="dark"] body.article-page .author-name,
html[data-theme="dark"] body.live26-page.article-page .live26-hero .author-name {
  color: #ffffff;
}

html[data-theme="dark"] body.article-page .author-date,
html[data-theme="dark"] body.live26-page.article-page .live26-hero .author-date {
  color: rgba(255, 255, 255, 0.72);
}

/* ── Final Homepage Work Section Guard ─────────────────────────────────── */
body.site-home .site-home-preview {
  width: 100%;
  max-width: none;
}

body.site-home .site-work-intro {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

body.site-home .site-work-grid {
  display: grid !important;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.site-home .site-work-card {
  position: relative;
  display: flex !important;
  width: 100%;
  min-width: 0;
  min-height: 300px;
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid var(--theme-line);
  border-radius: 22px;
  color: var(--theme-text);
  text-decoration: none !important;
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
  overflow: hidden;
}

body.site-home .site-work-card *,
body.site-home .site-work-card *::before,
body.site-home .site-work-card *::after {
  text-decoration: none !important;
}

body.site-home .site-work-card > div {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex: 1 1 auto;
  flex-direction: column;
}

body.site-home .site-work-card strong {
  display: block;
  max-width: 10ch;
  margin-top: 16px;
  color: var(--theme-text-strong);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

body.site-home .site-work-card p {
  max-width: 42ch;
  margin: 14px 0 0;
  color: var(--theme-muted);
  font-size: 15px;
  line-height: 1.52;
}

body.site-home .site-work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

body.site-home .site-work-tags em {
  display: inline-flex;
  width: auto;
  white-space: nowrap;
}

body.site-home .site-work-card small {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--theme-link);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
}

@media (max-width: 980px) {
  body.site-home .site-work-intro,
  body.site-home .site-work-grid {
    grid-template-columns: 1fr;
  }

  body.site-home .site-work-card {
    min-height: 0;
  }

  body.site-home .site-work-card strong {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  body.site-home .site-work-card {
    padding: 20px;
  }

  body.site-home .site-work-card small {
    position: static;
    display: inline-flex;
    margin-top: 22px;
    opacity: 1;
  }
}

/* ── Connect Hub + Article Engagement ─────────────────────────────────── */
body.site-home .site-connect-hero {
  padding-bottom: clamp(26px, 4vw, 48px);
}

body.site-home .site-connect-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

body.site-home .site-connect-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--theme-line);
  border-radius: 22px;
  color: var(--theme-text);
  text-decoration: none;
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease;
}

body.site-home .site-connect-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--theme-line);
}

body.site-home .site-connect-card.primary::before {
  background: linear-gradient(90deg, #0071e3, #34c759);
}

body.site-home .site-connect-card span,
body.site-home .site-connect-note span,
body.article-page .article-engagement-kicker {
  color: var(--theme-link);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.site-home .site-connect-card h3 {
  margin: 20px 0 12px;
  color: var(--theme-text-strong);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  letter-spacing: 0;
}

body.site-home .site-connect-card p {
  margin: 0;
  color: var(--theme-muted);
  font-size: 15px;
  line-height: 1.52;
}

body.site-home .site-connect-card strong {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 28px;
  color: var(--theme-link);
  font-size: 13px;
  font-weight: 760;
}

body.site-home .site-connect-card:hover,
body.site-home .site-connect-card:focus-visible {
  border-color: var(--theme-link);
  color: var(--theme-text);
  outline: none;
  transform: translateY(-3px);
}

body.site-home .site-connect-note {
  margin-top: 18px;
}

body.article-page .author-photo,
body.site-home .site-about-photo {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  image-rendering: auto;
  background: #ffffff;
}

body.article-page .article-engagement {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 40px);
  color: var(--theme-text);
  background: var(--theme-page);
}

body.article-page .article-engagement .container {
  max-width: 1040px;
}

body.article-page .article-engagement-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--theme-line);
  border-radius: 24px;
  background: var(--theme-surface);
  box-shadow: var(--theme-shadow);
}

body.article-page .article-engagement-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--theme-line);
}

body.article-page .article-engagement h2 {
  margin: 8px 0 8px;
  color: var(--theme-text-strong);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

body.article-page .article-engagement p {
  margin: 0;
  color: var(--theme-muted);
  font-size: 15px;
  line-height: 1.55;
}

body.article-page .article-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

body.article-page .article-reaction {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--theme-line);
  border-radius: 999px;
  color: var(--theme-text-strong);
  background: var(--theme-surface-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

body.article-page .article-reaction strong {
  min-width: 20px;
  color: var(--theme-link);
  text-align: right;
}

body.article-page .article-reaction:hover,
body.article-page .article-reaction.is-active {
  border-color: var(--theme-link);
  color: var(--theme-link);
  background: color-mix(in srgb, var(--theme-link) 10%, var(--theme-surface));
}

body.article-page .article-comment-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

body.article-page .article-comment-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.article-page .article-comment-form label {
  display: grid;
  gap: 8px;
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.article-page .article-comment-form input,
body.article-page .article-comment-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--theme-line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--theme-text-strong);
  background: var(--theme-surface-soft);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

body.article-page .article-comment-form textarea {
  resize: vertical;
}

body.article-page .article-comment-form input:focus,
body.article-page .article-comment-form textarea:focus {
  border-color: var(--theme-link);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--theme-link) 18%, transparent);
}

body.article-page .article-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

body.article-page .article-comment-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

body.article-page .article-comment-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--theme-text-strong);
  border-radius: 999px;
  color: var(--theme-page);
  background: var(--theme-text-strong);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

body.article-page .article-comment-actions button:disabled,
body.article-page .article-reaction:disabled {
  cursor: wait;
  opacity: 0.58;
}

body.article-page [data-engagement-message] {
  min-height: 20px;
  color: var(--theme-muted);
  font-size: 13px;
}

body.article-page [data-engagement-message][data-tone="error"] {
  color: #c73e1d;
}

body.article-page [data-engagement-message][data-tone="success"] {
  color: #178a4b;
}

body.article-page .article-comments-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

body.article-page .article-comment,
body.article-page .article-comment-empty {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--theme-line);
  border-radius: 16px;
  background: var(--theme-surface-soft);
}

body.article-page .article-comment-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

body.article-page .article-comment-head strong,
body.article-page .article-comment-head a {
  color: var(--theme-text-strong);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

body.article-page .article-comment-head time {
  color: var(--theme-muted-2);
  font-size: 12px;
  white-space: nowrap;
}

body.article-page .article-comment p {
  color: var(--theme-text);
}

@media (max-width: 900px) {
  body.site-home .site-connect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.article-page .article-engagement-head,
  body.article-page .article-comment-fields {
    grid-template-columns: 1fr;
  }

  body.article-page .article-reactions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body.site-home .site-connect-grid {
    grid-template-columns: 1fr;
  }

  body.site-home .site-connect-card {
    min-height: 0;
  }
}

/* ── Final Dark Theme Card Polish ─────────────────────────────────────── */
html[data-theme="dark"] body.site-home .site-work-card,
html[data-theme="dark"] body.site-home .site-connect-card,
html[data-theme="dark"] body.site-home .site-connect-note {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #050506;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] body.site-home .site-work-card::before,
html[data-theme="dark"] body.site-home .site-connect-card::before {
  opacity: 0.95;
}

html[data-theme="dark"] body.site-home .site-work-tags em {
  color: rgba(245, 245, 247, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

html[data-theme="dark"] body.site-home .site-work-card:hover,
html[data-theme="dark"] body.site-home .site-connect-card:hover,
html[data-theme="dark"] body.site-home .site-work-card:focus-visible,
html[data-theme="dark"] body.site-home .site-connect-card:focus-visible {
  border-color: var(--theme-link);
  background:
    linear-gradient(180deg, rgba(0, 113, 227, 0.10), rgba(255, 255, 255, 0.014)),
    #050506;
}
