/* EmberCobalt — AI Client Operations Platform · Linear / Vercel aesthetic */

:root {
 --bg: #F7F7F5;
 --surface: #FFFFFF;
 --navy: #182230;
 --copper: #C96E4A;
 --cobalt: #4A6CF7;
 --cobalt-soft: rgba(74, 108, 247, 0.08);
 --copper-soft: rgba(201, 110, 74, 0.1);
 --border: #E8E8E5;
 --ink: #52525B;
 --heading: #111827;
 --muted-light: #71717A;
 --ok: #16A34A;
 --warn: #D97706;
 --radius: 10px;
 --radius-lg: 14px;
 --max: 1160px;
 --header-h: 64px;
 --announce-h: 36px;
 --ops-h: 34px;
 --sans: "Inter", system-ui, sans-serif;
 --mono: "IBM Plex Mono", ui-monospace, monospace;
 --shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 8px 24px rgba(17, 24, 39, 0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
 font-family: var(--sans);
 background: var(--bg);
 color: var(--ink);
 line-height: 1.6;
 -webkit-font-smoothing: antialiased;
}
a { color: var(--cobalt); text-decoration: none; }
a:hover { color: var(--navy); }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 720px; }

.kicker {
 font-size: 0.72rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 color: var(--copper);
 margin-bottom: 10px;
}
.lead { font-size: 1.05rem; color: var(--ink); line-height: 1.7; max-width: 58ch; }
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--heading); letter-spacing: -0.02em; }
.section-pad { padding: 80px 0; }
.section--muted { background: var(--surface); border-block: 1px solid var(--border); }

.section--split { background: linear-gradient(180deg, var(--bg) 0%, #EFEFEC 100%); }

/* Top bars + header */
.site-top {
 position: sticky;
 top: 0;
 z-index: 100;
 background: var(--bg);
}
.announce-bar {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 16px;
 flex-wrap: wrap;
 min-height: var(--announce-h);
 padding: 6px 16px;
 background: var(--navy);
 color: rgba(255, 255, 255, 0.88);
 font-size: 0.78rem;
}
.announce-bar a { color: #fff; font-weight: 600; white-space: nowrap; }
.announce-bar a:hover { color: var(--copper); }
.header-ops-bar {
 border-bottom: 1px solid var(--border);
 background: var(--surface);
 font-family: var(--mono);
 font-size: 0.72rem;
}
.header-ops-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 12px;
 min-height: var(--ops-h);
 flex-wrap: wrap;
}
.ops-live { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.ops-pulse {
 width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
 box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}
.ops-cta { font-weight: 600; color: var(--cobalt); white-space: nowrap; }

.site-header {
 background: rgba(247, 247, 245, 0.92);
 backdrop-filter: blur(12px);
 border-bottom: 1px solid var(--border);
}
.header-inner {
 display: flex;
 align-items: center;
 gap: 20px;
 min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--heading); }
.brand:hover { color: var(--heading); }
.logo-mark { width: 28px; height: 28px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 0.95rem; font-weight: 700; }
.brand-text span { font-size: 0.68rem; color: var(--muted-light); }
.nav-main { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-link {
 padding: 8px 12px;
 font-size: 0.88rem;
 font-weight: 500;
 color: var(--ink);
 border-radius: 8px;
}
.nav-link:hover { background: var(--surface); color: var(--heading); }
.nav-link--muted { color: var(--muted-light); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--heading); }

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 10px 18px;
 font-size: 0.88rem;
 font-weight: 600;
 border-radius: var(--radius);
 border: 1px solid transparent;
 cursor: pointer;
 transition: 0.15s ease;
 white-space: nowrap;
}
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }
.btn-xs { padding: 5px 10px; font-size: 0.75rem; }
.btn-full { width: 100%; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: #0f172a; color: #fff; }
.btn-secondary { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.btn-secondary:hover { filter: brightness(1.05); color: #fff; }
.btn-outline { background: var(--surface); color: var(--heading); border-color: var(--border); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: rgba(24, 34, 48, 0.05); color: var(--heading); }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.glass-panel {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow);
}

/* Hero */
.hero-workspace { padding: 64px 0 80px; }
.hero-workspace-grid {
 display: grid;
 grid-template-columns: 1fr 1.15fr;
 gap: 48px;
 align-items: center;
}
.hero-eyebrow { font-size: 0.82rem; font-weight: 600; color: var(--copper); margin-bottom: 14px; }
.hero-copy h1 {
 font-size: clamp(2rem, 4.5vw, 2.75rem);
 line-height: 1.12;
 letter-spacing: -0.03em;
 color: var(--heading);
 margin-bottom: 16px;
}
.hero-lead { font-size: 1.05rem; margin-bottom: 24px; max-width: 48ch; }

/* Portal mockup */
.portal-mockup {
 display: grid;
 grid-template-columns: 1fr 200px;
 gap: 0;
 overflow: hidden;
 min-height: 380px;
}
.portal-mockup-head {
 grid-column: 1 / -1;
 display: flex;
 align-items: center;
 gap: 10px;
 padding: 14px 18px;
 border-bottom: 1px solid var(--border);
 font-size: 0.82rem;
}
.portal-mockup-head strong { color: var(--heading); }
.portal-mockup-head em { color: var(--muted-light); margin-left: auto; font-style: normal; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2); }
.portal-mockup-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 10px;
 padding: 14px;
}
.portal-widget {
 padding: 12px;
 background: var(--bg);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 font-size: 0.78rem;
}
.portal-widget--wide { grid-column: 1 / -1; }
.portal-widget--alert { border-color: rgba(201, 110, 74, 0.35); background: var(--copper-soft); }
.widget-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-light); margin-bottom: 6px; }
.portal-widget strong { display: block; font-size: 0.88rem; color: var(--heading); margin-bottom: 4px; }
.progress-bar { height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; margin: 8px 0; }
.progress-bar span { display: block; height: 100%; background: var(--cobalt); border-radius: 99px; }
.progress-bar--lg { height: 8px; margin: 16px 0; }
.mini-timeline { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; }
.mini-timeline li { padding: 4px 8px; border-radius: 6px; font-size: 0.72rem; background: var(--surface); border: 1px solid var(--border); }
.mini-timeline .is-done { opacity: 0.55; text-decoration: line-through; }
.mini-timeline .is-active { border-color: var(--cobalt); color: var(--cobalt); font-weight: 600; }
.ai-sidebar {
 padding: 14px;
 border-left: 1px solid var(--border);
 background: #FAFAF8;
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.ai-chat { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ai-msg { padding: 8px 10px; border-radius: 8px; font-size: 0.72rem; line-height: 1.5; }
.ai-msg--user { background: var(--cobalt-soft); align-self: flex-end; max-width: 95%; }
.ai-msg--bot { background: var(--surface); border: 1px solid var(--border); }
.ai-sidebar input {
 padding: 8px 10px;
 border: 1px solid var(--border);
 border-radius: 8px;
 font-size: 0.72rem;
 background: var(--surface);
}

/* Grids */
/* Home — varied layouts (not card grids) */

.industry-bento {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 grid-auto-rows: minmax(120px, auto);
 gap: 12px;
}
.industry-tile {
 padding: 22px;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 position: relative;
 overflow: hidden;
}
.industry-tile.bento-lg { grid-column: span 2; grid-row: span 2; padding: 28px; }
.industry-tile.bento-wide { grid-column: span 2; }
.industry-tile.bento-lg h3 { font-size: 1.2rem; }
.industry-icon {
 display: block;
 width: 32px;
 height: 4px;
 border-radius: 99px;
 background: linear-gradient(90deg, var(--copper), var(--cobalt));
 margin-bottom: 14px;
}
.industry-tile h3 { font-size: 0.95rem; color: var(--heading); margin-bottom: 6px; }
.industry-tile p { font-size: 0.82rem; }

.unified-split {
 display: grid;
 grid-template-columns: minmax(260px, 340px) 1fr;
 gap: 40px;
 align-items: start;
}
.unified-sticky { position: sticky; top: calc(var(--announce-h) + var(--ops-h) + var(--header-h) + 16px); }
.unified-sticky h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--heading); letter-spacing: -0.02em; margin-bottom: 12px; }
.unified-stat {
 margin-top: 24px;
 padding: 16px 20px;
 background: var(--navy);
 color: #fff;
 border-radius: var(--radius-lg);
 display: inline-flex;
 align-items: baseline;
 gap: 10px;
}
.unified-stat strong { font-size: 2rem; font-family: var(--mono); }
.unified-stat span { font-size: 0.82rem; opacity: 0.8; }
.feature-rail { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.feature-row {
 display: grid;
 grid-template-columns: 48px 1fr;
 gap: 16px;
 padding: 18px 20px;
 border-bottom: 1px solid var(--border);
 align-items: start;
}
.feature-row:last-child { border-bottom: none; }
.feature-num { font-family: var(--mono); font-size: 0.78rem; color: var(--cobalt); font-weight: 600; padding-top: 2px; }
.feature-row h3 { font-size: 0.92rem; color: var(--heading); margin-bottom: 4px; }
.feature-row p { font-size: 0.82rem; }

.journey-split {
 display: grid;
 grid-template-columns: 1fr 1.1fr;
 gap: 48px;
 align-items: start;
}
.journey-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--heading); letter-spacing: -0.02em; margin-bottom: 12px; }
.journey-timeline {
 position: relative;
 padding-left: 28px;
 border-left: 2px solid var(--border);
}
.journey-node {
 position: relative;
 padding: 0 0 28px 20px;
}
.journey-node:last-child { padding-bottom: 0; }
.journey-dot {
 position: absolute;
 left: -37px;
 top: 2px;
 width: 28px;
 height: 28px;
 border-radius: 50%;
 background: var(--surface);
 border: 2px solid var(--cobalt);
 display: flex;
 align-items: center;
 justify-content: center;
 font-family: var(--mono);
 font-size: 0.68rem;
 font-weight: 600;
 color: var(--cobalt);
}
.journey-node h3 { font-size: 0.95rem; color: var(--heading); margin-bottom: 4px; }
.journey-node p { font-size: 0.84rem; }

.auto-bento {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-template-rows: auto auto;
 gap: 12px;
}
.auto-bento__hero {
 grid-column: span 2;
 grid-row: span 2;
 padding: 28px;
 background: var(--navy);
 color: #fff;
 border: none;
}
.auto-bento__hero .kicker { color: var(--copper); }
.auto-bento__hero h3 { font-size: 1.25rem; color: #fff; margin: 8px 0; }
.auto-bento__hero p { color: rgba(255,255,255,0.78); font-size: 0.9rem; max-width: 42ch; }
.mini-pipeline {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 8px;
 margin-top: 20px;
 font-family: var(--mono);
 font-size: 0.72rem;
 color: rgba(255,255,255,0.65);
}
.mini-pipeline span:nth-child(odd) {
 padding: 4px 10px;
 background: rgba(255,255,255,0.1);
 border-radius: 6px;
 color: #fff;
}
.auto-bento__card {
 padding: 18px;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.auto-bento__card h3 { font-size: 0.9rem; color: var(--heading); margin-bottom: 6px; }
.auto-bento__card p { font-size: 0.8rem; }
.auto-bento__wide {
 grid-column: span 3;
 padding: 22px 24px;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
}
.auto-bento__wide h3 { font-size: 0.95rem; color: var(--heading); }
.auto-bento__wide p { font-size: 0.84rem; flex: 1; min-width: 200px; }
.update-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.update-chips span {
 padding: 6px 12px;
 background: var(--bg);
 border: 1px solid var(--border);
 border-radius: 99px;
 font-size: 0.75rem;
 font-weight: 500;
}

.hub-split {
 display: grid;
 grid-template-columns: 1.2fr 0.8fr;
 gap: 16px;
 align-items: stretch;
}
.file-stack { padding: 0; overflow: hidden; }
.file-stack-list { list-style: none; }
.file-row {
 display: grid;
 grid-template-columns: 72px 1fr auto;
 gap: 12px;
 align-items: center;
 padding: 14px 20px;
 border-bottom: 1px solid var(--border);
 font-size: 0.82rem;
}
.file-row:last-child { border-bottom: none; }
.file-type { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--cobalt); }
.file-main strong { display: block; font-size: 0.9rem; color: var(--heading); }
.file-main em { font-size: 0.75rem; color: var(--muted-light); font-style: normal; }
.file-status {
 font-size: 0.72rem;
 font-weight: 600;
 padding: 4px 10px;
 border-radius: 99px;
 background: var(--bg);
 white-space: nowrap;
}
.file-row--warn .file-status { background: rgba(217,119,6,0.12); color: var(--warn); }
.file-row--ok .file-status { background: rgba(22,163,74,0.1); color: var(--ok); }
.file-row--mid .file-status { background: var(--cobalt-soft); color: var(--cobalt); }
.hub-preview-side { padding: 24px; }
.hub-preview-side h4 { font-size: 0.95rem; color: var(--heading); margin: 8px 0 12px; }
.version-list { list-style: none; font-size: 0.82rem; }
.version-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.hub-note { font-size: 0.8rem; margin-top: 16px; color: var(--muted-light); }

.case-showcase { display: grid; gap: 14px; }
.case-featured {
 padding: 36px 32px;
 background: linear-gradient(135deg, var(--navy) 0%, #243044 100%);
 color: #fff;
 border: none;
}
.case-featured .kicker { color: var(--copper); }
.case-featured h3 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: #fff; margin: 10px 0; }
.case-featured h3 em { font-style: normal; color: var(--copper); }
.case-featured p { color: rgba(255,255,255,0.75); max-width: 48ch; }
.case-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.case-metric {
 padding: 24px;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.case-metric strong { display: block; font-size: 1.5rem; color: var(--heading); font-family: var(--mono); margin: 8px 0 2px; }
.case-metric span { font-size: 0.78rem; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.06em; }
.case-metric p { font-size: 0.84rem; margin-top: 10px; }

/* Legacy grids — subpages */
.industry-grid, .auto-grid, .case-grid, .module-grid, .template-grid, .int-grid, .resource-grid, .analytics-grid, .knowledge-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 14px;
}
.industry-card, .auto-card, .case-card, .module-card, .template-card, .int-card, .knowledge-card, .metric-card {
 padding: 22px;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.industry-card h3, .auto-card h3, .module-card h3, .template-card h3, .int-card h3, .knowledge-card h3 { font-size: 0.95rem; color: var(--heading); margin-bottom: 8px; }
.case-card h3 { font-size: 1rem; color: var(--heading); margin: 8px 0; }

.journey-flow, .workflow-lifecycle, .setup-steps {
 display: grid;
 grid-template-columns: repeat(5, 1fr);
 gap: 12px;
}
.workflow-lifecycle { grid-template-columns: repeat(4, 1fr); }
.setup-steps { grid-template-columns: repeat(4, 1fr); margin-top: 16px; }
.journey-step, .lifecycle-step, .setup-step {
 padding: 20px;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.journey-step span, .lifecycle-step span, .setup-step span {
 display: inline-flex;
 width: 28px;
 height: 28px;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 background: var(--cobalt-soft);
 color: var(--cobalt);
 font-family: var(--mono);
 font-size: 0.75rem;
 font-weight: 600;
 margin-bottom: 10px;
}
.journey-step h3, .lifecycle-step h3, .setup-step h3 { font-size: 0.92rem; color: var(--heading); margin-bottom: 6px; }
.journey-step p, .lifecycle-step p, .setup-step p { font-size: 0.82rem; }

/* Home CTA */
.home-cta {
 padding: 80px 0;
 background: var(--navy);
 color: #fff;
}
.home-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.home-cta h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: #fff; margin-bottom: 12px; letter-spacing: -0.02em; }
.home-cta .lead { color: rgba(255,255,255,0.75); margin: 0 auto 24px; }
.home-cta .btn-row { justify-content: center; }
.home-cta .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.home-cta .btn-ghost { color: rgba(255,255,255,0.85); }
.home-cta .btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Page */
.page-hero { padding: 56px 0 32px; border-bottom: 1px solid var(--border); background: var(--surface); }
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); color: var(--heading); letter-spacing: -0.02em; margin-bottom: 12px; }
.page-body { padding: 48px 0 72px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

/* Dashboard / ops */
.dash-preview, .ops-overview { margin-bottom: 8px; }
.dash-head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.dash-head h3 { font-size: 0.95rem; color: var(--heading); }
.dash-head span { font-size: 0.78rem; color: var(--muted-light); }
.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px; }
.dash-card { padding: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); }
.dash-card--warn { border-color: rgba(217, 119, 6, 0.35); }
.dash-card strong { display: block; font-size: 0.9rem; color: var(--heading); margin: 6px 0; }
.file-list { list-style: none; font-size: 0.82rem; }
.file-list li { padding: 4px 0; border-bottom: 1px solid var(--border); }
.ops-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.ops-stat { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.ops-stat strong { display: block; font-size: 1.6rem; color: var(--heading); font-family: var(--mono); }
.ops-stat span { font-size: 0.82rem; color: var(--muted-light); }
.ops-stat--warn strong { color: var(--warn); }

.status-pill {
 display: inline-block;
 padding: 3px 10px;
 border-radius: 99px;
 font-size: 0.72rem;
 font-weight: 600;
 background: var(--bg);
 border: 1px solid var(--border);
}
.status-pill--on, .status-pill--ontrack { background: rgba(22,163,74,0.1); color: var(--ok); border-color: transparent; }
.status-pill--at, .status-pill--risk { background: rgba(217,119,6,0.1); color: var(--warn); border-color: transparent; }
.status-pill--blocked { background: rgba(201,110,74,0.12); color: var(--copper); border-color: transparent; }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.data-table th, .data-table td { padding: 12px 16px; 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-light); background: var(--bg); }

/* Project */
.project-layout { display: grid; grid-template-columns: 1fr 260px; gap: 16px; }
.project-main, .project-side { padding: 24px; }
.project-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.project-head h3 { font-size: 1.1rem; color: var(--heading); }
.project-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.project-meta strong { display: block; font-size: 0.9rem; color: var(--heading); }
.risk-block { padding: 14px; background: var(--copper-soft); border-radius: var(--radius); margin: 16px 0; font-size: 0.85rem; }
.activity-log { list-style: none; }
.activity-log li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.activity-log time { font-family: var(--mono); font-size: 0.75rem; color: var(--muted-light); min-width: 52px; }
.vert-timeline { list-style: none; }
.vert-timeline li { padding: 10px 0 10px 16px; border-left: 2px solid var(--border); font-size: 0.85rem; margin-left: 6px; }
.vert-timeline .is-done { color: var(--muted-light); }
.vert-timeline .is-active { border-left-color: var(--cobalt); color: var(--cobalt); font-weight: 600; }

/* Lists */
.meeting-list, .approval-queue { display: flex; flex-direction: column; gap: 10px; }
.meeting-card, .approval-card {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 18px 20px;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
}
.meeting-card h3, .approval-card h3 { font-size: 0.95rem; color: var(--heading); }
.meeting-card p, .approval-card p { font-size: 0.82rem; }
.meeting-card em { font-size: 0.78rem; color: var(--muted-light); font-style: normal; }
.approval-actions { display: flex; gap: 8px; }

.deliverable-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.deliverable-card { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.del-tag { font-size: 0.68rem; text-transform: uppercase; color: var(--cobalt); font-weight: 600; }
.deliverable-card h3 { font-size: 0.95rem; color: var(--heading); margin: 8px 0 4px; }
.deliverable-card time { font-size: 0.75rem; color: var(--muted-light); }

.update-report { padding: 24px; }
.report-head h3 { font-size: 1.05rem; color: var(--heading); margin-top: 6px; }
.report-sections { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.report-sections h4 { font-size: 0.82rem; color: var(--heading); margin-bottom: 8px; }
.report-sections ul { padding-left: 18px; font-size: 0.85rem; }
.report-sections p { font-size: 0.85rem; }

.ai-examples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ai-example { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.ai-example .q { font-size: 0.85rem; font-weight: 600; color: var(--heading); margin-bottom: 8px; }
.ai-example .a { font-size: 0.82rem; color: var(--ink); }

.search-bar { display: flex; gap: 10px; padding: 14px; margin-bottom: 20px; }
.search-bar input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }

.metric-card strong { display: block; font-size: 1.4rem; color: var(--heading); font-family: var(--mono); margin: 6px 0; }
.metric-card span { font-size: 0.78rem; color: var(--muted-light); }
.metric-card--warn strong { color: var(--warn); }

.int-logo {
 display: inline-flex;
 width: 36px;
 height: 36px;
 align-items: center;
 justify-content: center;
 border-radius: 8px;
 background: var(--cobalt-soft);
 color: var(--cobalt);
 font-weight: 700;
 font-size: 0.78rem;
 margin-bottom: 10px;
}

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; }
.price-card--featured { border-color: var(--cobalt); box-shadow: 0 0 0 1px var(--cobalt), var(--shadow); }
.price-amount { font-size: 2rem; font-weight: 700; color: var(--heading); margin: 12px 0 4px; }
.price-amount em { font-size: 0.9rem; font-weight: 400; color: var(--muted-light); font-style: normal; }
.price-sub { font-size: 0.82rem; color: var(--muted-light); margin-bottom: 16px; }
.price-card ul { list-style: none; flex: 1; margin-bottom: 20px; }
.price-card li { font-size: 0.85rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
.price-card li::before { content: "✓ "; color: var(--cobalt); }
.pricing-compare { margin-top: 40px; padding: 24px; }
.pricing-compare h3 { margin-bottom: 16px; color: var(--heading); }
.faq-list { margin-top: 32px; display: grid; gap: 12px; }
.faq-item { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.faq-item h3 { font-size: 0.95rem; color: var(--heading); margin-bottom: 8px; }
.faq-item p { font-size: 0.85rem; }

/* Demo */
.demo-workspace { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.demo-nav { display: flex; gap: 4px; padding: 10px 12px; border-bottom: 1px solid var(--border); background: var(--bg); flex-wrap: wrap; }
.demo-nav button {
 padding: 6px 12px;
 border: none;
 background: transparent;
 border-radius: 6px;
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--ink);
 cursor: pointer;
}
.demo-nav button.is-active { background: var(--surface); color: var(--heading); box-shadow: var(--shadow); }
.demo-panels { padding: 0; }
.demo-panels .dash-preview { border: none; box-shadow: none; border-radius: 0; }
.demo-note { padding: 14px 18px; font-size: 0.82rem; color: var(--muted-light); border-top: 1px solid var(--border); background: var(--bg); }

.hub-head { padding: 20px 20px 0; }
.hub-head h3 { font-size: 1.05rem; color: var(--heading); margin-top: 6px; }

.platform-arch { padding: 24px; margin-bottom: 32px; }
.arch-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.arch-pills span { padding: 6px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 99px; font-size: 0.78rem; font-weight: 500; }
.arch-layer--ai ul { margin-top: 10px; padding-left: 18px; font-size: 0.85rem; }
.workflow-lifecycle--full { grid-template-columns: repeat(4, 1fr); }

.ops-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.ops-panel { padding: 16px; }
.workload-list, .risk-list { list-style: none; font-size: 0.82rem; }
.workload-list li, .risk-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.workload-list strong, .risk-list strong { display: block; font-size: 0.88rem; color: var(--heading); }

.meeting-outputs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.output-chip { padding: 8px 14px; background: var(--cobalt-soft); color: var(--cobalt); border-radius: 99px; font-size: 0.78rem; font-weight: 600; }

.del-meta { font-size: 0.75rem; color: var(--muted-light); margin: 4px 0; }

.report-tabs { display: flex; gap: 6px; margin-bottom: 16px; }
.report-tabs button { padding: 6px 12px; border: 1px solid var(--border); background: var(--bg); border-radius: 6px; font-size: 0.78rem; cursor: pointer; }
.report-tabs button.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.ai-chat-panel { padding: 20px; margin-bottom: 24px; max-width: 560px; }
.ai-chat-panel-head { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.78rem; color: var(--muted-light); }
.ai-chat-panel input { width: 100%; margin-top: 12px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; background: var(--bg); }

.compare-panel { padding: 20px; margin-top: 24px; }
.data-table--compact th, .data-table--compact td { padding: 10px 12px; font-size: 0.82rem; }

.int-card p { font-size: 0.78rem; margin-top: 4px; }
.int-card p strong { color: var(--heading); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }

.template-grid { grid-template-columns: repeat(3, 1fr); }

/* API */
.api-preview { padding: 24px; margin-bottom: 20px; overflow-x: auto; }
.api-preview pre { font-family: var(--mono); font-size: 0.8rem; color: var(--navy); }
.api-endpoints { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.api-card { padding: 18px; }
.api-card h3 { font-family: var(--mono); font-size: 0.85rem; color: var(--cobalt); margin-bottom: 8px; }
.api-card p { font-size: 0.82rem; }

/* Resources */
.resource-block { margin-bottom: 36px; }
.resource-block h3 { font-size: 1.05rem; color: var(--heading); margin-bottom: 14px; }
.resource-card { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.res-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--copper); font-weight: 600; }
.resource-card h3 { font-size: 0.92rem; color: var(--heading); margin: 8px 0; }
.resource-card p { font-size: 0.82rem; margin-bottom: 12px; }

/* About / contact */
.about-blocks { display: grid; gap: 16px; }
.about-blocks article { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.about-blocks h3 { font-size: 1rem; color: var(--heading); margin-bottom: 8px; }
.about-blocks p { font-size: 0.9rem; line-height: 1.7; }
.contact-form { padding: 28px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.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='%236B7280' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 14px center;
}

/* Footer */
.footer-main { padding: 48px 0 32px; border-top: 1px solid var(--border); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(5, 1fr); gap: 24px; }
.footer-brand p { font-size: 0.84rem; color: var(--ink); margin-top: 14px; line-height: 1.65; max-width: 36ch; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-light); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.84rem; color: var(--ink); }
.footer-col a:hover { color: var(--cobalt); }
.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-light); }

/* Auth */
.auth-page { min-height: 100vh; background: var(--bg); }
.auth-shell { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-panel { padding: 40px; background: var(--surface); border-right: 1px solid var(--border); }
.auth-panel-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-light); margin: 32px 0 16px; }
.auth-feed { list-style: none; }
.auth-feed li { padding: 14px 0; border-bottom: 1px solid var(--border); }
.auth-feed strong { display: block; font-size: 0.9rem; color: var(--heading); }
.auth-feed em { font-size: 0.78rem; color: var(--muted-light); font-style: normal; }
.auth-panel-foot { font-size: 0.78rem; color: var(--muted-light); margin-top: 24px; 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; color: var(--heading); margin-bottom: 8px; }
.auth-lead { font-size: 0.9rem; 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; cursor: pointer; color: var(--heading); }
.auth-note { font-size: 0.82rem; margin-top: 20px; text-align: center; }

.reveal { opacity: 0; transform: translateY(12px); transition: 0.45s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.ec-toast {
 position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
 background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 8px;
 font-size: 0.85rem; z-index: 300; opacity: 0; transition: 0.3s; pointer-events: none;
}
.ec-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

.ec-modal-overlay[hidden] { display: none; }
.ec-modal-overlay {
 position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
 padding: 24px; background: rgba(24, 34, 48, 0.45);
}
.ec-modal {
 position: relative; width: min(440px, 100%); padding: 32px; background: var(--surface);
 border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 20px 50px rgba(24, 34, 48, 0.12);
}
.ec-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; line-height: 1; cursor: pointer; color: var(--muted);
}
.ec-modal h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; color: var(--heading); }
.ec-modal-lead { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; line-height: 1.65; }
.ec-modal-form { display: flex; flex-direction: column; gap: 16px; }
.ec-modal-form .form-field { margin-bottom: 0; }

@media (max-width: 1024px) {
 .hero-workspace-grid, .portal-mockup, .project-layout,
 .unified-split, .journey-split, .hub-split { grid-template-columns: 1fr; }
 .unified-sticky { position: static; }
 .portal-mockup { grid-template-columns: 1fr; }
 .ai-sidebar { border-left: none; border-top: 1px solid var(--border); }
 .industry-bento { grid-template-columns: 1fr 1fr; }
 .industry-tile.bento-lg, .industry-tile.bento-wide { grid-column: span 2; grid-row: span 1; }
 .auto-bento { grid-template-columns: 1fr 1fr; }
 .auto-bento__hero { grid-column: span 2; grid-row: span 1; }
 .auto-bento__wide { grid-column: span 2; }
 .industry-grid, .auto-grid, .case-grid, .module-grid, .dash-grid, .ops-stats,
 .price-grid, .analytics-grid, .knowledge-grid, .int-grid, .resource-grid,
 .journey-flow, .workflow-lifecycle, .setup-steps, .api-endpoints,
 .ops-panels, .workflow-lifecycle--full, .case-pair { grid-template-columns: 1fr 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .header-ops-inner { font-size: 0.68rem; }
}
@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-main {
 display: none; position: absolute; top: 100%; left: 0; right: 0;
 flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px;
 }
 .nav-main.is-open { display: flex; }
 .site-header { position: relative; }
 .header-actions .btn-outline, .header-actions .btn-secondary { display: none; }
 .announce-bar { font-size: 0.72rem; text-align: center; }
 .header-ops-bar { display: none; }
 .industry-bento, .auto-bento, .auto-bento__hero, .auto-bento__wide,
 .industry-grid, .auto-grid, .case-grid, .module-grid, .dash-grid, .ops-stats,
 .price-grid, .deliverable-grid, .ai-examples, .report-sections,
 .journey-flow, .workflow-lifecycle, .setup-steps, .api-endpoints,
 .ops-panels, .template-grid, .workflow-lifecycle--full, .case-pair { grid-template-columns: 1fr; }
 .file-row { grid-template-columns: 1fr; gap: 6px; }
 .auth-shell { grid-template-columns: 1fr; }
 .auth-panel { display: none; }
 .footer-grid { grid-template-columns: 1fr; }
 .project-meta { grid-template-columns: 1fr; }
}
