/* CrispNorth — AI Research Workspace · warm editorial / forest palette */
:root {
 --bg: #F4F0E8;
 --bg-warm: #EBE4D8;
 --forest: #1F4D3A;
 --forest-dark: #163828;
 --sage: #5A8F7B;
 --copper: #B85C38;
 --copper-dark: #9A4A2C;
 --gold: #C9A227;
 --surface: #FFFCF7;
 --surface-dark: #1A2420;
 --border: #E0D9CE;
 --body: #57534E;
 --heading: #1C1917;
 --muted: #78716C;
 --muted-light: #A8A29E;
 --serif: "Source Serif 4", Georgia, serif;
 --sans: "DM Sans", system-ui, sans-serif;
 --mono: "IBM Plex Mono", monospace;
 --radius: 10px;
 --radius-lg: 14px;
 --shadow: 0 8px 32px rgba(28, 25, 23, 0.07);
 --max: 1180px;
 /* legacy aliases */
 --navy: var(--forest);
 --blue: var(--sage);
 --cyan: var(--gold);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
 font-family: var(--sans);
 font-size: 1rem;
 line-height: 1.6;
 color: var(--body);
 background: var(--bg);
 -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--copper); text-decoration: none; }
a:hover { color: var(--forest); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
.container { width: min(var(--max), 92vw); margin: 0 auto; }

.site-shell { display: flex; flex-direction: column; min-height: 100dvh; }
main { flex: 1; }

/* Site top — announce + ops */
.site-top { position: sticky; top: 0; z-index: 100; }
.announce-bar {
 display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
 padding: 8px 16px; background: var(--forest-dark); color: rgba(255,255,255,0.82);
 font-size: 0.78rem;
}
.announce-bar a { color: var(--gold); font-weight: 600; }
.announce-bar a:hover { color: #fff; }
.header-ops-bar {
 background: var(--surface); border-bottom: 1px solid var(--border);
 font-size: 0.76rem;
}
.header-ops-inner {
 display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
 padding: 8px 0;
}
.ops-live { display: flex; align-items: center; gap: 8px; color: var(--body); }
.ops-pulse {
 width: 7px; height: 7px; border-radius: 50%; background: var(--sage);
 box-shadow: 0 0 0 3px rgba(90, 143, 123, 0.25);
 animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.ops-cta { color: var(--copper); font-weight: 600; font-size: 0.76rem; }
.ops-cta:hover { color: var(--forest); }

/* Header */
.site-header {
 background: rgba(255, 252, 247, 0.94);
 backdrop-filter: blur(12px);
 border-bottom: 1px solid var(--border);
}
.header-inner {
 display: flex; align-items: center; gap: 24px;
 padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--heading); flex-shrink: 0; }
.brand:hover { color: var(--forest); }
.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 0.95rem; font-weight: 700; color: var(--heading); }
.brand-text span { font-size: 0.68rem; color: var(--muted); }
.nav-main { display: flex; gap: 4px; flex: 1; }
.nav-link {
 padding: 8px 12px; font-size: 0.84rem; font-weight: 500;
 color: var(--body); border-radius: 8px;
}
.nav-link:hover { background: var(--bg-warm); color: var(--forest); }
.nav-link--muted { color: var(--muted); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; font-size: 1.2rem; padding: 8px; color: var(--heading); }

/* Buttons */
.btn {
 display: inline-flex; align-items: center; justify-content: center;
 padding: 10px 18px; font-size: 0.86rem; font-weight: 600;
 border-radius: var(--radius); border: 1px solid transparent;
 transition: 0.15s ease; white-space: nowrap;
}
.btn-sm { padding: 8px 14px; font-size: 0.8rem; }
.btn-full { width: 100%; }
.btn-primary { background: var(--copper); color: #fff; border-color: var(--copper); }
.btn-primary:hover { background: var(--copper-dark); color: #fff; }
.btn-outline { background: var(--surface); color: var(--forest); border-color: var(--border); }
.btn-outline:hover { border-color: var(--sage); color: var(--sage); }
.btn-ghost { background: transparent; color: var(--body); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.text-link { font-weight: 600; font-size: 0.84rem; background: none; border: none; cursor: pointer; padding: 0; }

/* Typography */
.kicker {
 font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
 letter-spacing: 0.1em; color: var(--sage); margin-bottom: 10px;
}
h1, h2, h3 { color: var(--heading); font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 2.85rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 600; }
h3 { font-size: 1.05rem; font-weight: 600; }
.hero-lead, .page-lead { font-size: 1.05rem; line-height: 1.7; max-width: 52ch; color: var(--body); }
.section-sub { font-size: 0.95rem; color: var(--muted); max-width: 56ch; margin-top: 8px; }
.section { padding: clamp(48px, 7vw, 80px) 0; }
.section--alt { background: var(--bg-warm); }
.section--tight { padding-top: 0; }
.section--navy h2 { color: #fff; }

.section-head--light .section-sub { color: rgba(255,255,255,0.65); }
.section-cta { margin-top: 28px; text-align: center; }

/* Hero */
.hero-research { padding: clamp(40px, 6vw, 64px) 0 clamp(32px, 5vw, 48px); }
.hero-research-grid { display: grid; grid-template-columns: 0.95fr 1.35fr; gap: 36px; align-items: center; }
.hero-tagline {
 font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
 color: var(--copper); margin-top: 12px; font-style: italic;
}
.hero-stage {
 background: var(--surface-dark); border-radius: 16px; overflow: hidden;
 box-shadow: 0 24px 64px rgba(22, 56, 40, 0.22); border: 1px solid rgba(255,255,255,0.06);
}
.stage-chrome {
 display: flex; justify-content: space-between; align-items: center; gap: 12px;
 padding: 10px 16px; background: rgba(0,0,0,0.25); border-bottom: 1px solid rgba(255,255,255,0.08);
 font-size: 0.76rem; color: rgba(255,255,255,0.7);
}
.stage-chrome-left { display: flex; align-items: center; gap: 8px; }
.stage-chrome-left strong { color: #fff; }
.stage-chrome-left em { color: var(--gold); font-style: normal; }
.stage-live {
 width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
 box-shadow: 0 0 8px rgba(74, 222, 128, 0.6); animation: pulse 2s infinite;
}
.stage-chrome-right { display: flex; align-items: center; gap: 10px; }
.stage-pill {
 padding: 3px 8px; background: rgba(201, 162, 39, 0.2); color: var(--gold);
 border-radius: 999px; font-size: 0.68rem; font-weight: 600;
}
.stage-chrome time { font-family: var(--mono); color: rgba(255,255,255,0.55); }
.stage-body { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 1px; background: rgba(255,255,255,0.06); }
.stage-col { padding: 14px; background: var(--surface-dark); min-height: 260px; }
.stage-head {
 font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
 color: rgba(255,255,255,0.45); margin-bottom: 12px; display: flex; justify-content: space-between;
}
.stage-head span { color: var(--sage); font-weight: 600; }
.source-stream li {
 display: grid; grid-template-columns: auto 1fr auto; gap: 8px; align-items: start;
 padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.72rem;
}
.source-stream p { color: rgba(255,255,255,0.75); line-height: 1.4; margin: 0; }
.source-stream time { color: rgba(255,255,255,0.35); font-family: var(--mono); font-size: 0.65rem; }
.src-tag { font-size: 0.58rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; }
.src-tag--sec { background: rgba(184, 92, 56, 0.25); color: #f0a88a; }
.src-tag--news { background: rgba(90, 143, 123, 0.25); color: #9fd4b8; }
.src-tag--product { background: rgba(201, 162, 39, 0.2); color: var(--gold); }
.src-tag--jobs { background: rgba(125, 180, 220, 0.2); color: #9ecae8; }
.src-tag--analyst { background: rgba(180, 140, 220, 0.2); color: #d4b8f0; }
.reason-graph { display: flex; gap: 12px; height: 100%; }
.rg-track { width: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; position: relative; }
.rg-fill {
 position: absolute; bottom: 0; left: 0; right: 0;
 background: linear-gradient(to top, var(--sage), var(--gold)); border-radius: 2px; transition: height 1s ease;
}
.rg-nodes { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rg-node {
 display: grid; grid-template-columns: 24px 1fr; gap: 8px; align-items: center;
 padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,0.03);
 border: 1px solid rgba(255,255,255,0.06); font-size: 0.72rem;
}
.rg-node i {
 width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
 font-style: normal; font-size: 0.68rem; font-weight: 700; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
}
.rg-node span { color: rgba(255,255,255,0.85); font-weight: 600; display: block; }
.rg-node em { grid-column: 2; font-size: 0.65rem; color: rgba(255,255,255,0.4); font-style: normal; }
.rg-node.is-done { border-color: rgba(90, 143, 123, 0.35); }
.rg-node.is-done i { background: var(--sage); color: #fff; }
.rg-node.is-active { border-color: rgba(201, 162, 39, 0.5); background: rgba(201, 162, 39, 0.08); }
.rg-node.is-active i { background: var(--gold); color: var(--forest-dark); }
.doc-preview { font-size: 0.72rem; }
.doc-toolbar { display: flex; justify-content: space-between; margin-bottom: 12px; }
.doc-title { color: #fff; font-weight: 600; }
.doc-pages { color: rgba(255,255,255,0.4); font-family: var(--mono); }
.doc-block { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.doc-block strong { display: block; color: rgba(255,255,255,0.55); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.doc-block p { color: rgba(255,255,255,0.8); line-height: 1.45; }
.doc-block--done strong { color: var(--sage); }
.doc-block--active strong { color: var(--gold); }
.doc-skeleton { height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; margin-top: 4px; }
.doc-skeleton--short { width: 60%; }
.citation-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.citation-row span {
 padding: 2px 8px; background: rgba(255,255,255,0.06); border-radius: 4px;
 color: rgba(255,255,255,0.45); font-family: var(--mono); font-size: 0.62rem;
}
.stage-metrics {
 display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
 background: rgba(255,255,255,0.06); border-top: 1px solid rgba(255,255,255,0.08);
}
.stage-metrics div { padding: 12px; text-align: center; background: rgba(0,0,0,0.2); }
.stage-metrics strong { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }
.stage-metrics span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); }

/* Home — stat band (no cards) */
.stat-band {
 padding: 20px 0; border-bottom: 1px solid var(--border);
 background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.stat-band-inner {
 display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 8px;
}
.stat-item { flex: 1; min-width: 120px; text-align: center; }
.stat-item strong {
 display: block; font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.85rem);
 color: var(--forest); line-height: 1.1;
}
.stat-item span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* Home — editorial contrast */
.home-contrast { padding-top: clamp(40px, 5vw, 64px); }
.contrast-editorial {
 display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 56px); align-items: start;
}
.contrast-aside h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 8px 0 14px; }
.contrast-lead { font-size: 0.95rem; line-height: 1.65; max-width: 38ch; }
.contrast-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contrast-panel h3 {
 font-family: var(--sans); font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
 letter-spacing: 0.08em; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border);
}
.contrast-panel--not h3 { color: var(--muted); border-color: var(--border); }
.contrast-panel--is h3 { color: var(--forest); border-color: var(--sage); }
.contrast-panel li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.contrast-panel li:last-child { border-bottom: none; }
.contrast-panel strong { display: block; font-size: 0.92rem; color: var(--heading); margin-bottom: 2px; }
.contrast-panel span { font-size: 0.82rem; color: var(--muted); }

/* Home — workflow rail */
.workflow-rail {
 display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative;
 padding-top: 28px;
}
.workflow-rail::before {
 content: ""; position: absolute; top: 10px; left: 10%; right: 10%; height: 2px;
 background: linear-gradient(90deg, var(--border), var(--sage), var(--copper));
}
.rail-step { position: relative; padding: 0 12px; text-align: center; }
.rail-dot {
 display: block; width: 14px; height: 14px; margin: 0 auto 16px; border-radius: 50%;
 background: var(--surface); border: 3px solid var(--sage); position: relative; z-index: 1;
}
.rail-content strong { display: block; font-size: 0.92rem; color: var(--heading); margin-bottom: 6px; }
.rail-content p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* Home — activity timeline */
.activity-timeline { border-top: 1px solid var(--border); }
.activity-row {
 display: grid; grid-template-columns: 88px 1fr auto; gap: 20px; align-items: center;
 padding: 18px 0; border-bottom: 1px solid var(--border);
}
.activity-row time { font-family: var(--mono); font-size: 0.72rem; color: var(--muted-light); }
.activity-body strong { display: block; font-size: 0.92rem; color: var(--heading); margin-bottom: 2px; }
.activity-body p { font-size: 0.8rem; color: var(--muted); }
.activity-link { font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.activity-row--ready { border-left: 3px solid var(--sage); padding-left: 14px; margin-left: -3px; }
.activity-row--hot { border-left: 3px solid var(--gold); padding-left: 14px; margin-left: -3px; }
.activity-row--live { border-left: 3px solid var(--copper); padding-left: 14px; margin-left: -3px; }
.activity-row--progress { border-left: 3px solid var(--muted-light); padding-left: 14px; margin-left: -3px; }

/* Home — outputs split */
.outputs-split {
 display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: center;
}
.outputs-copy p { margin: 12px 0 20px; max-width: 44ch; }
.outputs-checklist { margin-bottom: 24px; }
.outputs-checklist li {
 padding: 10px 0 10px 28px; position: relative; font-size: 0.88rem;
 border-bottom: 1px solid var(--border);
}
.outputs-checklist li::before {
 content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700;
}
.doc-outline {
 background: var(--forest-dark); color: rgba(255,255,255,0.85); border-radius: var(--radius-lg);
 padding: 24px; box-shadow: var(--shadow);
}
.doc-outline-head {
 display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
 margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.doc-outline-head span { font-weight: 600; font-size: 0.88rem; }
.doc-outline-head em { font-family: var(--mono); font-size: 0.68rem; color: rgba(255,255,255,0.45); font-style: normal; }
.doc-outline-tree li {
 display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 0.84rem;
 color: rgba(255,255,255,0.45); border-left: 2px solid rgba(255,255,255,0.08); padding-left: 14px; margin-left: 8px;
}
.doc-outline-tree li span {
 width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
 font-size: 0.68rem; font-weight: 700; background: rgba(255,255,255,0.08); flex-shrink: 0;
}
.doc-outline-tree .is-done { color: rgba(255,255,255,0.75); border-color: var(--sage); }
.doc-outline-tree .is-done span { background: var(--sage); color: #fff; }
.doc-outline-tree .is-active { color: #fff; font-weight: 600; border-color: var(--gold); }
.doc-outline-tree .is-active span { background: var(--gold); color: var(--forest-dark); }
.doc-outline-foot { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
.doc-outline-foot em { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-style: normal; }
.doc-progress { display: block; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 8px; overflow: hidden; }
.doc-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--sage), var(--gold)); border-radius: 2px; }

/* Home — data flow */
.data-flow-diagram {
 display: flex; align-items: stretch; justify-content: center; gap: 16px; margin-bottom: 28px;
}
.flow-stage {
 flex: 1; max-width: 280px; padding: 24px 20px; text-align: center;
 border: 1px dashed var(--border); border-radius: var(--radius-lg); background: var(--surface);
}
.flow-stage--core {
 background: var(--forest-dark); border-style: solid; border-color: var(--forest-dark);
}
.flow-stage--core p { color: rgba(255,255,255,0.72); }
.flow-label {
 display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
 letter-spacing: 0.08em; color: var(--copper); margin-bottom: 8px;
}
.flow-stage--core .flow-label { color: var(--gold); }
.flow-stage p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.flow-arrow { align-self: center; font-size: 1.4rem; color: var(--sage); font-weight: 300; }
.source-tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.source-tag {
 padding: 8px 16px; font-size: 0.8rem; font-weight: 500; color: var(--body);
 border: 1px solid var(--border); border-radius: 999px; background: var(--surface);
}

/* Home — report showcase */
.report-showcase {
 display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(24px, 4vw, 40px); align-items: start;
}
.report-featured {
 padding: clamp(28px, 4vw, 36px); background: var(--surface);
 border: 1px solid var(--border); border-left: 4px solid var(--copper); border-radius: var(--radius-lg);
}
.report-featured-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--copper); margin-bottom: 8px; }
.report-featured h3 { font-size: 1.35rem; margin-bottom: 6px; }
.report-featured-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; font-family: var(--mono); }
.report-excerpt { margin-bottom: 24px; }
.report-excerpt p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 12px; padding-left: 14px; border-left: 2px solid var(--border); }
.report-index { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.report-index li { border-bottom: 1px solid var(--border); }
.report-index li:last-child { border-bottom: none; }
.report-index a {
 display: block; padding: 16px 18px; color: inherit; transition: background 0.15s;
}
.report-index a:hover { background: var(--bg); color: inherit; }
.report-index-type {
 display: block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
 letter-spacing: 0.08em; color: var(--sage); margin-bottom: 4px;
}
.report-index strong { display: block; font-size: 0.9rem; color: var(--heading); margin-bottom: 2px; }
.report-index em { font-size: 0.72rem; color: var(--muted); font-style: normal; font-family: var(--mono); }

/* Home — audience quotes */
.audience-quotes { display: grid; gap: 0; }
.audience-quote {
 padding: clamp(24px, 4vw, 32px) 0; border-bottom: 1px solid var(--border);
 margin: 0; font-style: normal;
}
.audience-quote:first-child { padding-top: 0; }
.audience-quote:last-child { border-bottom: none; padding-bottom: 0; }
.audience-quote p {
 font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.25rem);
 line-height: 1.55; color: var(--heading); max-width: 62ch;
}
.audience-quote p::before { content: "\201C"; color: var(--copper); margin-right: 2px; }
.audience-quote footer { margin-top: 12px; font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.home-metrics { padding: 0 0 32px; }
.metrics-bento { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 12px; }
.metric-tile {
 padding: 18px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.metric-tile--lg strong { font-size: 2.2rem; }
.metric-tile strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--forest); }
.metric-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); display: block; margin-bottom: 6px; }
.metric-tile p { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feed-card {
 display: block; padding: 18px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg); transition: 0.15s; position: relative;
}
.feed-card:hover { border-color: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow); }
.feed-type { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage); }
.feed-card h3 { font-family: var(--sans); font-size: 0.92rem; margin: 8px 0 6px; color: var(--heading); }
.feed-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.feed-status {
 position: absolute; top: 14px; right: 14px; font-size: 0.6rem; font-weight: 700;
 text-transform: uppercase; padding: 2px 8px; border-radius: 999px;
}
.feed-card--ready .feed-status { background: rgba(90,143,123,0.15); color: var(--sage); }
.feed-card--live .feed-status { background: rgba(184,92,56,0.12); color: var(--copper); }
.feed-card--hot .feed-status { background: rgba(201,162,39,0.15); color: #9a7b10; }
.feed-card--progress .feed-status { background: rgba(87,83,78,0.1); color: var(--muted); }

.deliver-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.deliver-card {
 padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: 0.15s;
}
.deliver-card:hover { border-color: var(--copper); }
.deliver-card h3 { font-family: var(--sans); font-size: 0.86rem; margin-bottom: 4px; }
.deliver-card p { font-size: 0.72rem; color: var(--muted); }

.source-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.source-card {
 padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.source-count { font-family: var(--mono); font-size: 1.1rem; font-weight: 600; color: var(--copper); display: block; margin-bottom: 8px; }
.source-card h3 { font-family: var(--sans); font-size: 0.9rem; margin-bottom: 4px; }
.source-card p { font-size: 0.76rem; color: var(--muted); }

/* Contrast */
.hero-audience { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hero-audience span {
 padding: 4px 10px; font-size: 0.72rem; font-weight: 600;
 background: var(--surface); border: 1px solid var(--border); border-radius: 999px; color: var(--muted);
}

.contrast-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; }
.contrast-col { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.contrast-col h2 { font-size: 1.15rem; margin-bottom: 16px; }
.contrast-col li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.contrast-col li:last-child { border-bottom: none; }
.contrast-col strong { display: block; font-family: var(--sans); font-size: 0.9rem; margin-bottom: 4px; }
.contrast-col p { font-size: 0.84rem; }
.contrast-divider { font-size: 1.5rem; color: var(--copper); padding-top: 40px; }

/* Workflow */
.workflow-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.workflow-step {
 padding: 20px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg); position: relative;
}
.workflow-step span {
 font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
 background: var(--forest); padding: 2px 8px; border-radius: 4px; color: var(--gold);
}
.workflow-step h3 { font-family: var(--sans); font-size: 0.92rem; margin: 12px 0 6px; }
.workflow-step p { font-size: 0.8rem; line-height: 1.55; }

.insight-mosaic {
 display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.insight-card {
 padding: 18px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius); transition: 0.15s;
}
.insight-card:hover { border-color: var(--copper); box-shadow: var(--shadow); }
.insight-stat {
 font-family: var(--mono); font-size: 0.78rem; font-weight: 500; color: var(--copper);
 display: block; margin-bottom: 8px;
}
.insight-card h3 { font-family: var(--sans); font-size: 0.88rem; margin-bottom: 6px; }
.insight-card p { font-size: 0.76rem; line-height: 1.5; color: var(--muted); }

/* Industry scroll */
.industry-scroll { overflow: hidden; }
.industry-track {
 display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
 scroll-snap-type: x mandatory;
}
.industry-card {
 flex: 0 0 min(280px, 80vw); scroll-snap-align: start;
 padding: 22px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.industry-card-top { display: flex; justify-content: space-between; align-items: start; gap: 8px; margin-bottom: 10px; }
.industry-card h3 { font-family: var(--sans); font-size: 1rem; }
.tag { font-size: 0.68rem; font-weight: 700; padding: 3px 8px; background: rgba(125,211,252,0.25); color: var(--navy); border-radius: 999px; }
.industry-card p { font-size: 0.84rem; margin-bottom: 16px; }
.industry-card footer { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--muted); }

.profile-intro { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.profile-intro p { font-size: 0.88rem; line-height: 1.6; margin-top: 6px; }

/* Report detail */
.report-detail { margin-bottom: 32px; }
.report-detail-head { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.report-detail-head h2 { font-size: 1.4rem; margin-bottom: 6px; }
.report-detail-head p { font-size: 0.82rem; color: var(--muted); }
.report-sections section { margin-bottom: 20px; }
.report-sections h3 { font-family: var(--sans); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); margin-bottom: 8px; }
.report-sections p, .report-sections li { font-size: 0.88rem; line-height: 1.65; }
.report-sections ul { margin-top: 6px; }
.report-sections li { padding: 3px 0; }
.ref-list { font-size: 0.8rem; color: var(--muted); }

/* Live demo */
.live-demo-wrap { display: flex; flex-direction: column; gap: 16px; }
.hero-console--demo { grid-template-columns: 1fr 1fr; }

/* Library ask */
.library-ask { margin-bottom: 24px; }
.library-ask-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end; margin-bottom: 16px; }
.library-ask-form { display: flex; gap: 8px; }
.library-ask-form input { flex: 1; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); font: inherit; }
.library-ask-result { padding: 14px; background: var(--bg); border-radius: var(--radius); font-size: 0.86rem; line-height: 1.6; }

/* API examples */
.api-examples { margin-top: 32px; }
.api-examples h3 { margin-bottom: 12px; }
.api-tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.api-tab {
 padding: 6px 14px; font-size: 0.8rem; font-weight: 600;
 background: var(--bg); border: 1px solid var(--border); border-radius: 999px; color: var(--body);
}
.api-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.api-embed-note { font-size: 0.84rem; color: var(--muted); margin-top: 12px; }

/* Supply chain */
.supply-chain { margin-top: 24px; }
.supply-chain h3 { font-size: 1rem; margin-bottom: 16px; }
.chain-flow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.chain-stage { flex: 1; min-width: 140px; padding: 16px; background: var(--bg); border-radius: var(--radius); }
.chain-stage span { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--blue); }
.chain-stage p { font-size: 0.82rem; margin-top: 6px; }
.chain-stage--core { background: rgba(125,211,252,0.2); border: 1px solid var(--cyan); }
.chain-arrow { color: var(--muted); font-size: 1.2rem; }
.chain-notes li { font-size: 0.84rem; padding: 4px 0; }

/* Differentiation */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.diff-card { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.diff-card h3 { font-family: var(--sans); font-size: 0.9rem; margin-bottom: 6px; }
.diff-card p { font-size: 0.82rem; line-height: 1.55; }

/* Research supplement */
.research-supplement { margin-top: 24px; }
.research-supplement h3 { font-size: 1rem; margin-bottom: 14px; }
.supplement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px; }

/* Market overview */
.market-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.overview-card { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.overview-card h3 { font-family: var(--sans); font-size: 0.95rem; margin-bottom: 8px; }
.overview-card p { font-size: 0.84rem; line-height: 1.6; }
.overview-card ul { margin-top: 10px; }
.overview-card li { font-size: 0.8rem; padding: 3px 0; }

/* Trend monitoring */
.trend-monitor { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.monitor-col { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.monitor-col h3 { font-family: var(--sans); font-size: 0.92rem; margin-bottom: 10px; }
.monitor-col li { font-size: 0.82rem; padding: 5px 0; border-bottom: 1px solid var(--border); }

/* Team comments */
.team-comments { margin-top: 24px; grid-column: 1 / -1; }
.team-comments h3 { font-size: 0.95rem; margin-bottom: 12px; }
.comment-feed li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; }
.comment-feed strong { color: var(--heading); margin-right: 8px; }
.comment-feed time { font-size: 0.72rem; color: var(--muted); }
.comment-feed p { margin-top: 4px; line-height: 1.55; }

.notes-explainer { max-width: 65ch; margin: 0 auto 24px; text-align: center; font-size: 0.9rem; color: var(--muted); }

.intel-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; }
.intel-list { margin: 16px 0 20px; }
.intel-list li { padding: 6px 0; font-size: 0.88rem; }
.intel-list li::before { content: "→ "; color: var(--cyan); font-weight: 700; }
.intel-profile {
 background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow);
}
.intel-profile-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.intel-profile-head h3 { font-family: var(--sans); }
.intel-profile-head p { font-size: 0.82rem; color: var(--muted); }
.badge { font-size: 0.68rem; font-weight: 700; padding: 4px 10px; background: rgba(125,211,252,0.3); color: var(--navy); border-radius: 999px; }
.intel-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.intel-profile-grid strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px; }
.intel-profile-grid p { font-size: 0.82rem; line-height: 1.5; }

/* AI engine — light, high-contrast cards */
.section--engine {
 background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.engine-grid {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.engine-node {
 padding: 22px 18px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow);
 transition: border-color 0.15s, transform 0.15s;
}
.engine-node:hover { border-color: var(--sage); transform: translateY(-2px); }
.engine-node--center {
 background: var(--forest-dark); border-color: var(--forest-dark);
 grid-column: span 1;
}
.engine-node--center span { color: #fff; }
.engine-node--center p { color: rgba(255,255,255,0.78); }
.engine-node span { display: block; font-weight: 700; color: var(--heading); font-size: 0.92rem; margin-bottom: 6px; }
.engine-node p { font-size: 0.8rem; color: var(--body); line-height: 1.5; }

.about-trust {
 margin-top: 28px; padding: 20px 24px; background: var(--surface);
 border: 1px solid var(--border); border-radius: var(--radius-lg);
 text-align: center; font-size: 0.9rem; color: var(--muted); line-height: 1.65;
}

/* Report grid */
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.report-card {
 padding: 20px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.report-card time { font-size: 0.68rem; color: var(--muted); }
.report-card h3 { font-family: var(--sans); font-size: 0.95rem; margin: 8px 0 6px; }
.report-card p { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }

/* Trend strip */
.trend-strip { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.trend-strip-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.trend-item { padding: 10px 16px; background: var(--bg); border-radius: var(--radius); font-size: 0.82rem; }
.trend-item strong { color: var(--heading); margin-right: 8px; }
.trend-item span { color: var(--muted); font-family: var(--mono); font-size: 0.75rem; }
.trend-item--hot { border-left: 3px solid #f59e0b; }
.trend-item--rising { border-left: 3px solid var(--cyan); }
.trend-item--watch { border-left: 3px solid var(--blue); }

/* Personas */
.persona-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.persona-card {
 padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.persona-card h3 { font-family: var(--sans); font-size: 0.92rem; margin-bottom: 8px; }
.persona-card p { font-size: 0.8rem; line-height: 1.55; }

/* Integration strip */
.integration-strip {
 text-align: center; padding: 32px 0;
 border-top: 1px solid var(--border);
}
.integration-strip p { font-size: 0.84rem; color: var(--muted); margin-bottom: 14px; }
.integration-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 12px; }
.integration-logos span {
 padding: 8px 14px; background: var(--surface); border: 1px solid var(--border);
 border-radius: 999px; font-size: 0.78rem; font-weight: 500; color: var(--body);
}

/* CTA band */
.cta-band {
 background: var(--forest-dark); padding: clamp(48px, 6vw, 64px) 0;
 text-align: center;
}
.cta-band-inner h2 { color: #fff; margin-bottom: 10px; }
.cta-band-inner p { color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.cta-band .btn-row { justify-content: center; }

/* Page hero */
.page-hero { padding: clamp(40px, 6vw, 56px) 0 32px; }
.page-hero-inner { max-width: 720px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* Research workspace 3-col */
.research-workspace { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.research-col {
 padding: 20px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.col-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; }
.source-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.source-list span { font-weight: 600; color: var(--heading); display: block; }
.source-list em { font-size: 0.76rem; color: var(--muted); font-style: normal; }
.reasoning-path li { padding: 8px 0; font-size: 0.82rem; border-left: 2px solid var(--border); padding-left: 12px; margin-bottom: 4px; }
.reasoning-path li.is-done { border-color: var(--blue); color: var(--body); }
.reasoning-path li.is-active { border-color: var(--cyan); font-weight: 600; color: var(--heading); }
.live-report h3 { font-family: var(--sans); font-size: 0.92rem; margin-bottom: 10px; }
.live-report p { font-size: 0.8rem; margin-bottom: 8px; }
.research-col .btn { margin-top: 14px; }

/* Glass panel */
.glass-panel {
 padding: 24px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg); margin-bottom: 24px;
}

/* Metrics */
.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.metric-card {
 padding: 20px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius); text-align: center;
}
.metric-card strong { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--navy); }
.metric-card span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Market map */
.market-map .map-segment { padding: 12px; background: var(--bg); border-radius: 8px; margin-bottom: 8px; }
.market-map h4 { font-family: var(--sans); font-size: 0.88rem; margin-bottom: 4px; }
.market-map p { font-size: 0.78rem; color: var(--muted); }
.market-insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }

/* Tables */
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.data-table th, .data-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.row-meta { display: block; font-size: 0.76rem; color: var(--muted); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
 padding: 28px; background: var(--surface); border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.price-card--featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow); }
.price-amount { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--navy); margin: 12px 0; }
.price-amount em { font-size: 0.9rem; font-weight: 400; color: var(--muted); font-style: normal; }
.price-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.price-card ul { margin-bottom: 20px; }
.price-card li { padding: 4px 0; font-size: 0.84rem; }
.price-card li::before { content: "✓ "; color: var(--blue); font-weight: 700; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item summary { font-weight: 600; color: var(--heading); cursor: pointer; }
.faq-item p { margin-top: 10px; font-size: 0.88rem; }

/* Feature cards */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.feature-card h3 { font-family: var(--sans); margin-bottom: 8px; }
.feature-card p { font-size: 0.84rem; }

/* Integrations */
.int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.int-tile {
 padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.int-logo {
 display: inline-block; width: 36px; height: 36px; line-height: 36px; text-align: center;
 background: var(--navy); color: var(--cyan); font-weight: 700; font-size: 0.78rem;
 border-radius: 8px; margin-bottom: 12px;
}
.int-tile strong { display: block; margin-bottom: 6px; }
.int-tile p { font-size: 0.82rem; margin-bottom: 10px; }

/* Map showcase */
.map-showcase { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.map-canvas {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
 padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.map-node {
 padding: 14px; background: var(--bg); border: 1px solid var(--border);
 border-radius: 8px; font-size: 0.82rem; font-weight: 500; text-align: center;
}
.map-node--hub { background: var(--navy); color: #fff; border-color: var(--navy); }
.map-legend p { font-size: 0.88rem; margin-bottom: 12px; line-height: 1.6; }

/* Matrix */
.matrix-table { width: 100%; font-size: 0.82rem; border-collapse: collapse; }
.matrix-table th, .matrix-table td { padding: 10px; border: 1px solid var(--border); text-align: left; }
.matrix-table th { background: var(--bg); font-weight: 600; }
.matrix-gap { margin-top: 16px; font-size: 0.88rem; }

/* Trend cards */
.trend-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.trend-card { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.trend-card h3 { font-family: var(--sans); font-size: 0.92rem; margin-bottom: 6px; }
.trend-card p { font-size: 0.82rem; }

/* Library */
.library-search { display: flex; gap: 10px; margin-bottom: 24px; }
.library-search input { flex: 1; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); font: inherit; }
.library-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.library-item { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.library-item span { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--blue); }
.library-item h3 { font-family: var(--sans); font-size: 0.9rem; margin: 8px 0 4px; }
.library-item p { font-size: 0.78rem; color: var(--muted); }

/* Notes */
.notes-list { display: grid; gap: 12px; }
.note-card { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.note-card time { font-size: 0.72rem; color: var(--muted); }
.note-card h3 { font-family: var(--sans); font-size: 0.95rem; margin: 6px 0 4px; }
.note-card p { font-size: 0.84rem; }

/* Team board */
.team-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-col { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.team-tasks li { padding: 8px 0; font-size: 0.84rem; display: flex; justify-content: space-between; }
.task-done { color: var(--blue); }
.task-active { font-weight: 600; color: var(--heading); }
.activity-feed li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.activity-feed time { font-size: 0.72rem; color: var(--muted); display: block; }
.progress-ring {
 width: 80px; height: 80px; border-radius: 50%;
 border: 6px solid var(--border); border-top-color: var(--cyan);
 display: flex; align-items: center; justify-content: center;
 font-weight: 700; color: var(--navy); margin-bottom: 12px;
}

/* Company search */
.company-search .search-row { display: flex; gap: 10px; margin: 12px 0; }
.company-search input { flex: 1; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); font: inherit; }
.search-hint { font-size: 0.82rem; color: var(--muted); }

/* Resource grid */
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.resource-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.resource-card span { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--blue); }
.resource-card h3 { font-family: var(--sans); margin: 8px 0 6px; }
.resource-card p { font-size: 0.84rem; margin-bottom: 12px; }

/* About */
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-grid article { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.about-grid h3 { font-family: var(--sans); margin-bottom: 8px; }
.prose { max-width: 65ch; font-size: 0.95rem; line-height: 1.75; }
.prose p { margin-bottom: 16px; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.contact-aside { padding: 24px; }
.contact-aside h3 { margin-bottom: 10px; }
.contact-aside p { font-size: 0.88rem; margin-bottom: 16px; }

/* Code block */
.code-block {
 padding: 20px; background: var(--navy); color: var(--cyan);
 border-radius: var(--radius-lg); font-family: var(--mono); font-size: 0.82rem;
 overflow-x: auto; margin-bottom: 24px;
}
.api-endpoints { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.api-endpoints article { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.api-endpoints h3 { font-family: var(--sans); font-size: 0.92rem; margin-bottom: 6px; }
.api-endpoints p { font-size: 0.82rem; }

/* Forms */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
 width: 100%; padding: 12px 14px; background: var(--bg);
 border: 1px solid var(--border); border-radius: var(--radius);
 color: var(--heading); font: inherit;
}
.form-field select {
 appearance: none; -webkit-appearance: none; padding-right: 36px; cursor: pointer;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
 background-repeat: no-repeat; background-position: right 14px center;
}
.form-field textarea { resize: vertical; min-height: 100px; }

/* Footer */
.site-footer { margin-top: auto; }
.footer-main { padding: 48px 0 32px; border-top: 1px solid var(--border); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(5, 1fr); gap: 24px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.65; margin-top: 14px; max-width: 38ch; color: var(--body); }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-light); margin-bottom: 12px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.84rem; color: var(--body); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { padding: 18px 0; border-top: 1px solid var(--border); background: var(--surface); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted-light); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: var(--muted); }

/* Auth */
.auth-page { min-height: 100dvh; background: var(--bg); }
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100dvh; }
.auth-aside {
 padding: 40px; background: var(--forest-dark); color: rgba(255,255,255,0.85);
 display: flex; flex-direction: column;
}
.auth-aside .brand { color: #fff; margin-bottom: 32px; }
.auth-aside .brand-text strong { color: #fff; }
.auth-aside-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 16px; }
.auth-report-preview {
 flex: 1; padding: 20px; background: rgba(255,255,255,0.06);
 border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
}
.auth-report-preview h3 { color: #fff; font-family: var(--sans); font-size: 0.95rem; margin-bottom: 8px; }
.auth-report-preview p { font-size: 0.82rem; margin-bottom: 12px; }
.auth-report-preview li { font-size: 0.78rem; padding: 4px 0; }
.auth-aside-foot { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 20px; font-family: var(--mono); }
.auth-main { display: flex; align-items: center; justify-content: center; padding: 40px; }
.auth-card { width: 100%; max-width: 400px; }
.auth-card h1 { font-size: 1.6rem; margin-bottom: 8px; }
.auth-lead { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; font-size: 0.78rem; color: var(--muted-light); }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.auth-social { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.btn-social { padding: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.78rem; color: var(--heading); }
.auth-note { font-size: 0.82rem; margin-top: 20px; text-align: center; }

/* Modal */
.cn-modal-overlay[hidden] { display: none; }
.cn-modal-overlay {
 position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
 padding: 24px; background: rgba(11, 37, 69, 0.45);
}
.cn-modal {
 position: relative; width: min(440px, 100%); padding: 32px; background: var(--surface);
 border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.cn-modal-close {
 position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
 border: 1px solid var(--border); border-radius: 8px; background: var(--surface); font-size: 1.2rem; cursor: pointer; color: var(--muted);
}
.cn-modal h2 { font-size: 1.35rem; margin-bottom: 8px; }
.cn-modal-lead { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; line-height: 1.65; }
.cn-modal-form { display: flex; flex-direction: column; gap: 16px; }
.cn-modal-form .form-field { margin-bottom: 0; }

/* Toast */
.cn-toast {
 position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
 background: var(--forest-dark); color: #fff; padding: 12px 20px; border-radius: 999px;
 font-size: 0.85rem; z-index: 300; opacity: 0; transition: 0.3s; pointer-events: none;
}
.cn-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
 .hero-research-grid, .intel-split, .contrast-grid, .contrast-editorial, .outputs-split,
 .report-showcase, .research-workspace,
 .team-board, .map-showcase, .auth-layout, .stage-body { grid-template-columns: 1fr; }
 .contrast-panels { grid-template-columns: 1fr; }
 .workflow-rail { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
 .workflow-rail::before { display: none; }
 .data-flow-diagram { flex-direction: column; align-items: center; }
 .flow-arrow { transform: rotate(90deg); }
 .stat-divider { display: none; }
 .stat-item { min-width: calc(33% - 12px); }
 .metrics-bento { grid-template-columns: repeat(2, 1fr); }
 .metric-tile--lg { grid-column: 1 / -1; }
 .feed-grid, .deliver-bento, .source-wall { grid-template-columns: repeat(2, 1fr); }
 .contrast-divider { display: none; }
 .workflow-track { grid-template-columns: repeat(2, 1fr); }
 .insight-mosaic { grid-template-columns: repeat(3, 1fr); }
 .persona-row { grid-template-columns: repeat(2, 1fr); }
 .report-grid, .price-grid, .metrics-row { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
 .nav-main {
 position: fixed; inset: 60px 0 auto 0; background: var(--surface);
 border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px;
 transform: translateY(-120%); transition: 0.2s; z-index: 99;
 }
 .nav-main.is-open { transform: translateY(0); }
 .nav-toggle { display: block; }
 .header-actions .btn-ghost { display: none; }
 .feed-grid, .deliver-bento, .source-wall, .metrics-bento { grid-template-columns: 1fr; }
 .hero-console--demo { grid-template-columns: 1fr; }
 .persona-row, .report-grid, .price-grid, .metrics-row, .market-insights,
 .trend-cards, .contact-split { grid-template-columns: 1fr; }
 .workflow-track, .workflow-rail, .insight-mosaic, .feature-cards, .int-grid,
 .library-grid, .about-grid, .api-endpoints { grid-template-columns: 1fr; }
 .activity-row { grid-template-columns: 1fr; gap: 6px; }
 .activity-link { justify-self: start; }
 .capabilities-inner { grid-template-columns: repeat(2, 1fr); }
 .library-ask-grid, .supplement-grid, .diff-grid, .trend-monitor { grid-template-columns: 1fr; }
 .market-overview { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
}
