/* JadeLevel — AI Digital Twin Platform */

:root {
 --bg: #050816;
 --surface: #0F172A;
 --card: #0F172A;
 --ink: #CBD5E1;
 --heading: #FFFFFF;
 --muted: #94A3B8;
 --muted-light: #64748B;
 --cyan: #00E5FF;
 --cyan-soft: rgba(0, 229, 255, 0.1);
 --purple: #7C3AED;
 --purple-soft: rgba(124, 58, 237, 0.12);
 --neon: #22D3EE;
 --border: #1E293B;
 --display: "Inter", system-ui, sans-serif;
 --sans: "Inter", system-ui, sans-serif;
 --mono: "JetBrains Mono", monospace;
 --radius: 8px;
 --radius-lg: 12px;
 --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
 --glow: 0 0 40px rgba(0, 229, 255, 0.15);
 --max: 1200px;
 --announce-h: 34px;
 --header-h: 56px;
 --site-top-h: calc(var(--announce-h) + var(--header-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 0.9375rem; line-height: 1.65; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--neon); }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; padding-top: var(--site-top-h); }
main { flex: 1; }

.container { width: min(var(--max), 90vw); margin: 0 auto; }
.container.narrow { max-width: 760px; }
.centered-head { text-align: center; }
.centered { text-align: center; }

.kicker { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--heading); letter-spacing: -0.02em; line-height: 1.2; }
.lead { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 56ch; }
.section-head { margin-bottom: 32px; }
.section-head .lead { margin-top: 12px; }
.section-intro { font-size: 0.84rem; color: var(--muted-light); margin-bottom: 20px; }
.card-lead { font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.value-list { font-size: 0.88rem; color: var(--muted); padding-left: 18px; line-height: 1.75; list-style: disc; }
.text-glow { background: linear-gradient(135deg, #00E5FF 0%, #22D3EE 45%, #7C3AED 100%); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 0 28px rgba(0, 229, 255, 0.35)); }
.kicker--pulse { animation: kicker-pulse 3s ease-in-out infinite; }
@keyframes kicker-pulse { 50% { opacity: 0.65; } }
.btn-glow { box-shadow: 0 0 24px rgba(0, 229, 255, 0.25); }
.btn-glow:hover { box-shadow: 0 0 32px rgba(0, 229, 255, 0.45); }

/* Announce */
.announce-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 110; height: var(--announce-h); background: linear-gradient(90deg, rgba(0,229,255,0.08), rgba(124,58,237,0.08)); border-bottom: 1px solid var(--border); }
.announce-bar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; height: 100%; width: min(var(--max), 90vw); margin: 0 auto; font-size: 0.75rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce-bar-inner a { color: var(--cyan); font-weight: 600; flex-shrink: 0; }

/* Header — single row */
[data-site-header] { flex-shrink: 0; }
.site-header { position: fixed; top: var(--announce-h); left: 0; right: 0; z-index: 100; background: rgba(5,8,22,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: nowrap; min-height: var(--header-h); width: min(var(--max), 90vw); margin: 0 auto; padding: 0 clamp(16px, 3vw, 24px); }
.brand { display: flex; align-items: center; gap: 10px; color: var(--heading); flex-shrink: 0; }
.brand:hover { opacity: 0.9; color: var(--heading); }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 0.95rem; font-weight: 700; white-space: nowrap; color: var(--heading); }
.brand-text span { font-size: 0.62rem; color: var(--muted); white-space: nowrap; }
.nav-main { display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 2px; flex: 1; min-width: 0; }
.nav-link { font-size: 0.8rem; font-weight: 500; color: var(--muted); padding: 6px 9px; white-space: nowrap; border-radius: var(--radius); }
.nav-link:hover { color: var(--cyan); background: var(--cyan-soft); }
.nav-link--login { padding: 6px 8px; }
.header-actions { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; flex-shrink: 0; }
.nav-toggle { display: none; font-size: 1rem; padding: 6px 10px; border: 1px solid var(--border); border-radius: var(--radius); color: var(--ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 18px; border-radius: var(--radius); font-size: 0.84rem; font-weight: 600; border: 1px solid transparent; transition: opacity 0.15s, box-shadow 0.15s; white-space: nowrap; }
.btn-sm { padding: 7px 14px; font-size: 0.78rem; }
.btn-lg { padding: 14px 24px; font-size: 0.92rem; }
.btn-full { width: 100%; }
.btn-primary { background: var(--cyan); color: #050816; border-color: var(--cyan); }
.btn-primary:hover { box-shadow: 0 0 20px rgba(0,229,255,0.35); color: #050816; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline-light { background: transparent; color: var(--ink); border-color: rgba(203,213,225,0.3); }
.btn-outline-light:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--cyan); }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* Hero — split twin layout */
.twin-hero { position: relative; padding: 48px 0 64px; overflow: hidden; }
.twin-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.twin-hero-mesh { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 15%, transparent 70%); opacity: 0.5; }
.twin-hero-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 45% at 75% 45%, rgba(0,229,255,0.1), transparent 60%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; }
.hero-orb--1 { width: 200px; height: 200px; background: rgba(0,229,255,0.08); top: 15%; right: 22%; }
.hero-orb--2 { width: 140px; height: 140px; background: rgba(124,58,237,0.08); bottom: 20%; left: 10%; }
.hero-orb--3, .hero-beam { display: none; }
.twin-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 36px; align-items: stretch; }
.twin-hero-copy {
 min-width: 0; display: flex; flex-direction: column; gap: 0;
}
.twin-hero h1 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); font-weight: 700; color: var(--heading); line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 14px; }
.hero-lead { font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; max-width: 42ch; }
.hero-btns { margin-bottom: 16px; }
.hero-trust { display: none; }
.hero-metrics {
 display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
 margin-bottom: 12px;
}
.hero-metric {
 padding: 12px 10px; text-align: left;
 background: rgba(15,23,42,0.75); border: 1px solid var(--border);
}
.hero-metric strong { display: block; font-size: 1.15rem; color: var(--cyan); font-family: var(--mono); line-height: 1.2; }
.hero-metric span { font-size: 0.62rem; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.06em; }
.metric-spark { display: none; }
.hero-side-stack { display: grid; gap: 10px; margin-top: auto; }
.hero-capability, .hero-signal {
 padding: 14px 14px 12px; background: rgba(15,23,42,0.72); border: 1px solid var(--border);
}
.hero-capability .twin-readout-label,
.hero-signal .twin-readout-label { margin: 0 0 8px; }
.hero-cap-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.hero-cap-list li {
 display: grid; gap: 1px; padding-left: 10px;
 border-left: 2px solid rgba(0,229,255,0.35);
}
.hero-cap-list strong { font-size: 0.82rem; color: var(--heading); font-weight: 600; }
.hero-cap-list span { font-size: 0.74rem; color: var(--muted); line-height: 1.4; }
.hero-signal strong { display: block; font-size: 0.9rem; color: var(--heading); margin-bottom: 4px; }
.hero-signal p { margin: 0 0 8px; font-size: 0.76rem; color: var(--muted); line-height: 1.45; }
.hero-signal .text-link { font-size: 0.78rem; font-weight: 600; color: var(--cyan); }
.twin-hero-viz { min-width: 0; width: 100%; display: flex; }
.twin-hero-viz > .twin-readout { flex: 1; width: 100%; }
.viz-frame { position: relative; background: rgba(15,23,42,0.92); border: 1px solid rgba(0,229,255,0.2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 32px rgba(0,229,255,0.06); }
.viz-frame--hero { width: 100%; max-width: 100%; }
.viz-frame--hero.is-demo-active { border-color: rgba(0,229,255,0.45); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(0,229,255,0.12); }
.viz-chrome { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: rgba(5,8,22,0.65); border-bottom: 1px solid var(--border); }
.viz-chrome > span:not(.viz-chrome-tag) { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.viz-chrome > span:nth-child(1) { background: #F87171; }
.viz-chrome > span:nth-child(2) { background: #FBBF24; }
.viz-chrome > span:nth-child(3) { background: var(--neon); }
.viz-chrome em { margin-left: 6px; font-size: 0.66rem; color: var(--muted-light); font-style: normal; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.viz-chrome-tag {
 display: inline-flex; align-items: center; gap: 6px;
 font-size: 0.62rem; color: var(--cyan); padding: 3px 9px; border: 1px solid rgba(0,229,255,0.25);
 border-radius: 999px; background: rgba(0,229,255,0.06); width: auto; height: auto;
}
.live-dot {
 width: 6px; height: 6px; border-radius: 50%; background: var(--neon);
 box-shadow: 0 0 0 0 rgba(34,211,238,0.55); animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
 0% { box-shadow: 0 0 0 0 rgba(34,211,238,0.45); }
 70% { box-shadow: 0 0 0 6px rgba(34,211,238,0); }
 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); }
}

/* Static twin readout (replaces animated graph) */
.twin-readout-body { padding: 14px 14px 12px; display: grid; gap: 8px; height: 100%; }
.twin-readout-head {
 display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 10px;
 margin-bottom: 2px;
}
.twin-readout-head .kicker { margin-bottom: 4px; }
.twin-readout-head strong {
 display: block; font-size: 1.08rem; color: var(--heading); letter-spacing: -0.02em; line-height: 1.25;
}
.twin-readout-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.twin-readout-label {
 margin: 4px 0 0; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em;
 text-transform: uppercase; color: var(--muted-light);
}
.twin-domain-grid {
 display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.twin-domain {
 padding: 10px 10px 11px; border-radius: var(--radius);
 background: linear-gradient(180deg, rgba(15,23,42,0.9), rgba(5,8,22,0.75));
 border: 1px solid var(--border);
 display: grid; gap: 2px; transition: border-color 0.2s ease;
}
.twin-domain:hover { border-color: rgba(0,229,255,0.28); }
.twin-domain em {
 font-style: normal; font-size: 0.58rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted-light);
}
.twin-domain strong {
 font-family: var(--mono); font-size: 1.05rem; color: var(--cyan); line-height: 1.2;
}
.twin-domain span { font-size: 0.68rem; color: var(--muted); line-height: 1.35; }
.twin-domain--warn { border-color: rgba(251,191,36,0.35); background: linear-gradient(180deg, rgba(251,191,36,0.06), rgba(5,8,22,0.75)); }
.twin-domain--warn strong { color: #FBBF24; }
.twin-link-row { display: grid; gap: 6px; }
.twin-link {
 display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px;
 padding: 8px 10px; border-radius: 8px; background: rgba(0,229,255,0.04);
 border: 1px solid rgba(0,229,255,0.12); font-size: 0.78rem; color: var(--muted);
}
.twin-link em { font-style: normal; color: var(--ink); font-weight: 600; }
.twin-link strong { margin-left: auto; font-size: 0.68rem; font-family: var(--mono); color: var(--cyan); font-weight: 500; }
.twin-insight-list {
 list-style: none; margin: 0; padding: 0; display: grid; gap: 8px;
}
.twin-insight-list li {
 display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
 padding: 10px 10px; border-radius: 8px; border: 1px solid var(--border); background: rgba(15,23,42,0.65);
}
.twin-insight-list strong { display: block; font-size: 0.86rem; color: var(--heading); margin-bottom: 2px; }
.twin-insight-list p { margin: 0; font-size: 0.74rem; color: var(--muted); line-height: 1.4; }
.twin-readout-foot {
 display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px;
 padding-top: 10px; margin-top: 2px; border-top: 1px solid var(--border); font-size: 0.68rem; color: var(--muted-light);
 font-family: var(--mono);
}
.twin-readout-foot .text-link { font-family: var(--sans); font-weight: 600; color: var(--cyan); }
.twin-readout-foot .text-link:hover { color: var(--neon); }

@media (max-width: 900px) {
 .twin-domain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
 .twin-domain-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Legacy twin graph (inner pages) */
.twin-graph-svg { width: 100%; height: auto; display: block; }
.twin-label { font-size: 10px; fill: var(--muted); text-anchor: middle; font-family: var(--sans); }
.twin-graph-svg.is-animating .twin-edge { animation: flow-line 2.5s ease-in-out infinite; stroke-dasharray: 8 6; }
.twin-graph-svg.is-animating .twin-edge:nth-child(odd) { animation-delay: 0.4s; }
.twin-graph-svg.is-animating .twin-pulse { animation: pulse-node 1.8s ease-in-out infinite alternate; }
.twin-graph-svg.is-animating .twin-node--hub { animation: hub-pulse 2s ease-in-out infinite; }
.twin-graph-svg.is-animating .twin-ring { animation: ring-spin 24s linear infinite; transform-origin: 450px 240px; }
.twin-ring--slow { animation-direction: reverse; animation-duration: 36s !important; }
@keyframes flow-line { 0%, 100% { stroke-opacity: 0.45; stroke-dashoffset: 0; } 50% { stroke-opacity: 1; stroke-dashoffset: -14; } }
@keyframes pulse-node { from { opacity: 0.35; } to { opacity: 1; } }
@keyframes hub-pulse { 50% { filter: drop-shadow(0 0 14px rgba(0,229,255,0.8)); } }
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.twin-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.twin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.twin-stats div { padding: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.twin-stats strong { display: block; font-size: 1.4rem; color: var(--cyan); font-family: var(--mono); }
.twin-stats span { font-size: 0.7rem; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.04em; }
.twin-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; font-size: 0.78rem; color: var(--muted); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; }
.dot--team { background: var(--neon); }
.dot--project { background: var(--purple); }
.dot--customer { background: var(--neon); }
.dot--product { background: var(--purple); }

/* Sections */
.section-breathe { padding: clamp(48px, 6vw, 80px) 0; }
.section--card { background: var(--surface); border-block: 1px solid var(--border); }
.module-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.module-pill { padding: 10px 18px; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.module-pill:hover { border-color: var(--cyan); color: var(--cyan); }

/* Company health */
.health-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.health-card { padding: 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.health-card strong { display: block; font-size: 1.5rem; color: var(--cyan); font-family: var(--mono); margin: 8px 0 4px; }
.health-card span { font-size: 0.72rem; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.04em; }
.health-card p { font-size: 0.8rem; color: var(--muted); margin-top: 8px; }

/* Demo panel */
.demo-panel { margin-top: 16px; padding: 16px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.demo-steps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.demo-steps span { padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px; font-size: 0.75rem; color: var(--muted); }
.demo-steps span.is-active { border-color: var(--cyan); background: var(--cyan-soft); color: var(--cyan); font-weight: 600; }

.home-cta { border-top: 1px solid var(--border); background: linear-gradient(180deg, transparent, rgba(0,229,255,0.04)); }

/* Sync workflow */
.sync-workflow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.sync-step { flex: 1; min-width: 120px; padding: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.sync-step span { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; background: var(--cyan-soft); color: var(--cyan); border-radius: 50%; font-size: 0.72rem; font-weight: 700; margin-bottom: 8px; }
.sync-step strong { display: block; color: var(--heading); font-size: 0.88rem; margin-bottom: 4px; }
.sync-step p { font-size: 0.75rem; color: var(--muted); }
.sync-arrow { color: var(--muted-light); font-size: 1.2rem; }

/* Structure explorer */
.structure-explorer { margin-bottom: 16px; }
.structure-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.structure-tab { padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px; font-size: 0.78rem; color: var(--muted); }
.structure-tab.is-active, .structure-tab:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }
.structure-toolbar { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.structure-hint { font-size: 0.78rem; color: var(--muted); margin-left: auto; }
.structure-stage { transition: opacity 0.3s; }
.structure-stage.is-searching { opacity: 0.7; }

/* Knowledge flow */
.flow-viz { display: flex; flex-direction: column; gap: 12px; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 24px; }
.flow-lane { display: grid; grid-template-columns: 100px 1fr auto; gap: 12px; align-items: center; font-size: 0.82rem; }
.flow-bar { height: 8px; background: linear-gradient(90deg, var(--purple), var(--cyan)); border-radius: 999px; width: calc(var(--w) * 1%); max-width: 100%; }
.flow-lane strong { font-family: var(--mono); color: var(--cyan); font-size: 0.78rem; }

/* Demo features */
.demo-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 8px; }
.demo-feature { padding: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.demo-feature h3 { color: var(--heading); font-size: 0.92rem; margin-bottom: 6px; }
.demo-feature p { font-size: 0.82rem; color: var(--muted); }

/* Pricing table */
.data-table { width: 100%; border-collapse: collapse; margin-top: 28px; font-size: 0.84rem; }
.data-table th, .data-table td { padding: 12px 14px; border: 1px solid var(--border); text-align: left; }
.data-table th { background: var(--bg); color: var(--heading); font-weight: 600; }
.data-table td { color: var(--muted); }
.pricing-compare { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; }

.is-searching { animation: search-flash 0.5s ease; }
@keyframes search-flash { 50% { box-shadow: 0 0 0 2px var(--cyan-soft); } }

/* Insights */
.insight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.insight-card { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.insight-card--risk { border-left: 3px solid #F87171; }
.insight-card--warn { border-left: 3px solid #FBBF24; }
.insight-card--growth { border-left: 3px solid var(--neon); }
.insight-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.insight-card-top strong { color: var(--heading); font-size: 0.9rem; }
.insight-metric { font-size: 1.1rem; font-weight: 700; color: var(--heading); font-family: var(--mono); margin-bottom: 6px; }
.insight-desc { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.tag { font-size: 0.68rem; font-weight: 600; padding: 3px 8px; border-radius: 999px; }
.tag-risk { background: rgba(248,113,113,0.15); color: #F87171; }
.tag-warn { background: rgba(251,191,36,0.15); color: #FBBF24; }
.tag-growth { background: var(--cyan-soft); color: var(--neon); }
.tag-neutral { background: var(--purple-soft); color: var(--purple); }

/* Timeline */
.timeline-scrubber { padding: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.timeline-range { display: flex; gap: 8px; margin-bottom: 16px; }
.timeline-chip { padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px; font-size: 0.78rem; color: var(--muted); }
.timeline-chip.is-active, .timeline-chip:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }
.timeline-track { position: relative; height: 6px; background: var(--border); border-radius: 999px; margin-bottom: 14px; }
.timeline-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--cyan)); border-radius: 999px; transition: width 0.4s; }
.timeline-marker { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 14px; height: 14px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 12px rgba(0,229,255,0.5); }
.timeline-caption { font-size: 0.84rem; color: var(--muted); margin-bottom: 14px; }
.timeline-scrubber.is-replaying .timeline-fill { animation: replay-flash 2s ease; }
@keyframes replay-flash { 50% { opacity: 0.5; } }

/* Signals */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.feature-copy .section-title { margin: 10px 0 14px; text-align: left; }
.signal-feed { display: flex; flex-direction: column; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.signal-row { display: grid; grid-template-columns: 52px 1fr; gap: 4px 12px; padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.signal-row:last-child { border-bottom: none; }
.signal-row time { color: var(--muted-light); font-family: var(--mono); font-size: 0.72rem; grid-row: span 2; }
.signal-row strong { color: var(--heading); font-size: 0.84rem; }
.signal-row span { color: var(--muted); grid-column: 2; font-size: 0.78rem; }

/* Integrations */
.integration-pill-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.integration-pill { padding: 8px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.8rem; font-weight: 500; color: var(--ink); }
.integration-result { margin-top: 12px; padding: 12px; background: var(--cyan-soft); border-radius: var(--radius); font-size: 0.84rem; color: var(--cyan); }

/* Stories */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.story-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.story-meta { font-size: 0.76rem; color: var(--muted-light); display: block; margin-bottom: 10px; }
.story-card p:last-child { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-grid--teaser .pricing-card { padding: 22px; }
.pricing-card { padding: 28px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.pricing-card.is-featured { border-color: var(--cyan); box-shadow: var(--glow); }
.pricing-card h3 { color: var(--heading); font-size: 1.1rem; margin-bottom: 6px; }
.pricing-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.pricing-price { font-size: 2rem; font-weight: 700; color: var(--heading); font-family: var(--mono); margin-bottom: 16px; }
.pricing-price span { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.pricing-card ul { font-size: 0.84rem; color: var(--muted); margin-bottom: 20px; padding-left: 16px; list-style: disc; line-height: 1.75; }
.pricing-cta-row { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }

/* Architecture */
.arch-flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.arch-col span { display: block; padding: 8px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.8rem; margin-bottom: 6px; }
.arch-engine { padding: 20px; background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(124,58,237,0.15)); border: 1px solid var(--cyan); border-radius: var(--radius); text-align: center; min-width: 140px; }
.arch-engine strong { display: block; color: var(--heading); font-size: 0.9rem; }
.arch-engine span { font-size: 0.72rem; color: var(--muted); }

/* Page */
.page-hero { padding: clamp(40px, 6vw, 64px) 0 32px; text-align: center; border-bottom: 1px solid var(--border); }
.page-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--heading); letter-spacing: -0.02em; margin-bottom: 14px; }
.page-body { padding: clamp(32px, 5vw, 56px) 0; }
.content-card { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.content-card h3 { color: var(--heading); font-size: 1rem; margin-bottom: 10px; }
.editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.about-values .glass-card { padding: 24px; }
.about-values h3 { color: var(--heading); font-size: 0.95rem; margin-bottom: 8px; }
.about-values p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* Projects */
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.project-card { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.project-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.project-card-top strong { color: var(--heading); }
.project-health { font-family: var(--mono); color: var(--cyan); font-weight: 600; margin-bottom: 6px; }
.project-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }

/* Resources */
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.resource-card { padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.resource-type { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cyan); }
.resource-card strong { display: block; color: var(--heading); margin: 8px 0 4px; }
.resource-card time { font-size: 0.76rem; color: var(--muted-light); }

/* Status */
.status-list { display: flex; flex-direction: column; gap: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.status-row { display: flex; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.status-row:last-child { border-bottom: none; }
.status-row strong { color: var(--heading); }
.status-ok { color: var(--neon); font-size: 0.84rem; font-weight: 600; }

.code-block { display: block; padding: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--mono); font-size: 0.78rem; color: var(--neon); margin-top: 10px; }

/* Footer */
.footer-cta { padding: clamp(48px, 6vw, 72px) 0; background: linear-gradient(180deg, var(--surface), var(--bg)); border-top: 1px solid var(--border); text-align: center; }
.footer-cta h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--heading); margin-bottom: 12px; max-width: 20ch; margin-inline: auto; }
.footer-cta p { color: var(--muted); max-width: 52ch; margin: 0 auto 24px; font-size: 0.92rem; }
.footer-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.site-footer { padding: 48px 0 32px; border-top: 1px solid var(--border); }
.footer-panel { display: flex; flex-direction: column; gap: 32px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-tagline { font-size: 0.84rem; color: var(--muted); max-width: 36ch; line-height: 1.6; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 600; color: var(--heading); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.84rem; color: var(--muted); }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--muted-light); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: var(--muted); }

/* Auth */
.auth-page { padding-top: 0; min-height: 100vh; background: var(--bg); }
.auth-page .site-shell { padding-top: 0; }
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-visual { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 48px; overflow: hidden; border-right: 1px solid var(--border); }
.auth-visual-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(0,229,255,0.1), transparent 60%), radial-gradient(ellipse 50% 40% at 80% 70%, rgba(124,58,237,0.08), transparent 55%); }
.auth-visual-mesh { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.5; }
.auth-visual-copy { position: relative; z-index: 1; max-width: 400px; }
.auth-visual-copy h2 { font-size: 1.6rem; color: var(--heading); margin: 12px 0; line-height: 1.25; }
.auth-visual-copy p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.auth-visual-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.auth-visual-stats div strong { display: block; font-size: 1.2rem; color: var(--cyan); font-family: var(--mono); }
.auth-visual-stats div span { font-size: 0.68rem; color: var(--muted-light); text-transform: uppercase; }
.auth-visual-graph { position: relative; z-index: 1; margin-top: 32px; opacity: 0.85; }
.auth-panel { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px 24px; position: relative; }
.auth-top { position: absolute; top: 0; left: 0; right: 0; padding: 20px 24px; z-index: 2; }
.auth-top .brand { display: inline-flex; align-items: center; gap: 10px; color: var(--heading); }
.auth-header { padding: 20px; width: min(var(--max), 90vw); margin: 0 auto; }
.auth-center { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 40px 20px; }
.auth-card { width: min(420px, 100%); padding: 36px; background: rgba(15,23,42,0.9); border: 1px solid rgba(0,229,255,0.12); border-radius: var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 60px rgba(0,229,255,0.06); backdrop-filter: blur(16px); }
.auth-card h1 { font-size: 1.5rem; color: var(--heading); margin-bottom: 8px; letter-spacing: -0.02em; }
.auth-lead { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.form-field input, .form-field textarea, .form-field select { padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font: inherit; background: var(--bg); color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s; }
.form-field input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,0.12); }
.auth-form-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--muted); }
.auth-remember { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.auth-divider { text-align: center; font-size: 0.78rem; color: var(--muted-light); margin: 22px 0; position: relative; }
.auth-divider span { background: rgba(15,23,42,0.95); padding: 0 12px; position: relative; z-index: 1; }
.auth-divider::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--border); }
.auth-social { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.btn-social { padding: 11px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.84rem; color: var(--ink); background: var(--bg); transition: border-color 0.15s; }
.btn-social:hover { border-color: var(--cyan); color: var(--cyan); }
.auth-note { font-size: 0.82rem; color: var(--muted); margin-top: 22px; text-align: center; }
.auth-forgot { color: var(--muted); font-size: 0.8rem; }
.auth-forgot:hover { color: var(--cyan); }

/* Modals */
.site-modal[hidden] { display: none; }
.site-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.site-modal-backdrop { position: absolute; inset: 0; background: rgba(5,8,22,0.75); }
.site-modal-panel { position: relative; width: min(420px, 100%); padding: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.site-modal-close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border: 1px solid var(--border); border-radius: var(--radius); color: var(--muted); }
.site-modal-panel h2 { color: var(--heading); font-size: 1.3rem; margin-bottom: 8px; }
.site-modal-lead { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.site-modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-success { font-size: 0.84rem; color: var(--cyan); font-weight: 500; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.45s, transform 0.45s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Glass cards */
.glass-card {
 background: rgba(15, 23, 42, 0.72);
 border: 1px solid rgba(30, 41, 59, 0.9);
 border-radius: var(--radius-lg);
 backdrop-filter: blur(12px);
 box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Snapshot grid */
.snapshot-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.snapshot-card { padding: 20px; text-align: center; }
.snapshot-card strong { display: block; font-size: 1.6rem; color: var(--cyan); font-family: var(--mono); margin: 8px 0 4px; }
.snapshot-card .kicker { margin-bottom: 4px; }
.trend { font-size: 0.72rem; color: var(--muted-light); }
.trend--up { color: var(--neon); }
.trend--warn { color: #FBBF24; }

/* Product mockups */
.product-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-mock { overflow: hidden; }
.mock-chrome { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--bg); border-bottom: 1px solid var(--border); }
.mock-chrome span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.mock-chrome span:nth-child(1) { background: #F87171; }
.mock-chrome span:nth-child(2) { background: #FBBF24; }
.mock-chrome span:nth-child(3) { background: var(--neon); }
.mock-chrome em { margin-left: auto; font-size: 0.68rem; color: var(--muted-light); font-style: normal; }
.mock-body { padding: 16px; }
.mock-sub { font-size: 0.76rem; color: var(--muted); margin-bottom: 12px; }
.mock-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.mock-row:last-child { border-bottom: none; }
.mock-row strong { display: block; color: var(--heading); font-size: 0.82rem; }
.mock-row span { color: var(--muted-light); font-size: 0.72rem; }
.mock-row em { font-style: normal; font-size: 0.72rem; color: var(--cyan); font-family: var(--mono); }

/* Insight centers */
.center-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.center-card { padding: 20px; }
.center-card h3 { color: var(--heading); font-size: 0.95rem; margin-bottom: 12px; }
.center-card ul { display: flex; flex-direction: column; gap: 10px; }
.center-card li strong { display: block; color: var(--heading); font-size: 0.84rem; }
.center-card li span { font-size: 0.78rem; color: var(--cyan); font-family: var(--mono); }
.center-card li p { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.center-card--risk { border-left: 3px solid #F87171; }
.center-card--warn { border-left: 3px solid #FBBF24; }
.center-card--growth { border-left: 3px solid var(--neon); }

/* Analysis cards */
.analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.analysis-card { padding: 20px; }
.analysis-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.analysis-top strong { color: var(--heading); font-size: 0.9rem; }
.analysis-dl { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.analysis-dl dt { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-light); }
.analysis-dl dd { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.analysis-card--risk { border-left: 3px solid #F87171; }
.analysis-card--warn { border-left: 3px solid #FBBF24; }
.analysis-card--growth { border-left: 3px solid var(--neon); }

/* Timeline events */
.timeline-events { display: flex; flex-direction: column; gap: 0; margin-top: 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.timeline-event { display: grid; grid-template-columns: 80px 120px 1fr; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 0.82rem; align-items: center; }
.timeline-event:last-child { border-bottom: none; }
.timeline-event time { color: var(--muted-light); font-family: var(--mono); font-size: 0.76rem; }
.timeline-event .event-type { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--cyan); }
.timeline-event strong { color: var(--heading); }

/* Case studies */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-card { padding: 24px; }
.case-metric { display: block; margin-top: 14px; font-size: 1.1rem; color: var(--cyan); font-family: var(--mono); }
.case-card p:not(.kicker) { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-top: 8px; }

/* Architecture stack */
.arch-stack { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 560px; margin: 0 auto; }
.arch-layer { width: 100%; padding: 20px 24px; text-align: center; }
.arch-layer span { display: inline-block; padding: 6px 12px; margin: 4px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.78rem; }
.arch-layer p { font-size: 0.84rem; color: var(--muted); margin-top: 8px; }
.arch-layer--engine { border-color: var(--cyan); box-shadow: var(--glow); }
.arch-layer--ai { border-color: var(--purple); }
.arch-connector { font-size: 1.2rem; color: var(--muted-light); padding: 4px 0; transition: color 0.3s; }
.arch-connector.is-flowing { color: var(--cyan); animation: flow-pulse 0.6s ease; }
@keyframes flow-pulse { 50% { transform: scale(1.2); } }

/* Twin explorer */
.twin-explorer { display: grid; grid-template-columns: 1fr 280px; gap: 16px; }
.explorer-toolbar { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }
.explorer-actions { display: flex; align-items: center; gap: 8px; }
.explorer-search { padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); color: var(--ink); font-size: 0.82rem; width: 180px; }
.explorer-stage { transition: opacity 0.3s, transform 0.3s; overflow: hidden; }
.explorer-stage.is-searching { opacity: 0.7; }
.entity-panel { padding: 20px; transform: translateX(20px); opacity: 0.6; transition: opacity 0.3s, transform 0.3s; }
.entity-panel.is-open { transform: none; opacity: 1; }
.entity-dl { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.entity-dl dt { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-light); }
.entity-dl dd { font-size: 0.84rem; color: var(--muted); margin-top: 2px; }

/* Team / project grids */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.team-card { padding: 20px; }
.team-card strong { color: var(--heading); display: block; margin-bottom: 8px; }
.team-metrics { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.76rem; color: var(--muted-light); margin-bottom: 8px; }
.team-card p { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.project-owner { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.progress-bar { height: 6px; background: var(--border); border-radius: 999px; margin-bottom: 10px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--purple), var(--cyan)); border-radius: 999px; }

/* Integration matrix */
.integration-matrix { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.integration-card { padding: 20px; }
.integration-card strong { color: var(--heading); display: block; margin-bottom: 6px; }
.integration-card p { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.integration-meta { display: block; font-size: 0.72rem; color: var(--muted-light); margin-bottom: 12px; }

/* Operations */
.ops-dashboard { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.ops-metric { padding: 18px; text-align: center; }
.ops-metric span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-light); }
.ops-metric strong { display: block; font-size: 1.4rem; color: var(--cyan); font-family: var(--mono); margin: 8px 0 4px; }
.ops-metric p { font-size: 0.76rem; color: var(--muted); }
.alert-panel { padding: 20px; }
.alert-panel h3 { color: var(--heading); font-size: 0.95rem; margin-bottom: 10px; }

/* Knowledge */
.knowledge-assets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.knowledge-assets h3 { color: var(--heading); font-size: 0.92rem; margin-bottom: 10px; }

/* API showcase */
.api-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* Resource hub */
.resource-toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 16px 20px; margin-bottom: 20px; }
.resource-search { flex: 1; min-width: 200px; padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); color: var(--ink); }
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-chip { padding: 5px 12px; border: 1px solid var(--border); border-radius: 999px; font-size: 0.74rem; color: var(--muted); }
.filter-chip.is-active, .filter-chip:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }

/* Demo layout */
.demo-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-bottom: 28px; }
.demo-sidebar .product-mock { height: 100%; }

/* Customer table */
.customer-table { margin-top: 20px; }

/* Highlights bar */
.highlights-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; padding: 20px; }
.highlight-item { text-align: center; }
.highlight-item strong { display: block; font-size: 1.5rem; color: var(--cyan); font-family: var(--mono); margin: 6px 0; }
.highlight-item p { font-size: 0.76rem; color: var(--muted); }

/* Detail panels */
.project-detail, .customer-detail { padding: 24px; margin-top: 24px; }
.project-detail[hidden], .customer-detail[hidden] { display: none; }

/* Demo features grid */
.demo-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.demo-feature-block { padding: 18px; }
.demo-feature-block h3 { color: var(--heading); font-size: 0.9rem; margin-bottom: 8px; }
.demo-feature-block p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* Operations trends */
.trend-bars { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.trend-bar-row { display: grid; grid-template-columns: 140px 1fr 48px; gap: 12px; align-items: center; font-size: 0.82rem; }
.trend-bar-row span { color: var(--muted); }
.trend-bar { height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.trend-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--purple), var(--cyan)); border-radius: 999px; }
.trend-bar--growth span { background: linear-gradient(90deg, var(--neon), var(--cyan)); }
.trend-bar-row em { font-style: normal; color: var(--cyan); font-family: var(--mono); font-size: 0.78rem; text-align: right; }

/* Explorer drag */
.explorer-stage { cursor: grab; user-select: none; }
.explorer-stage:active { cursor: grabbing; }
.explorer-stage .twin-graph-svg { transform-origin: center center; transition: transform 0.15s ease-out; }
.twin-explorer.is-fullscreen { position: fixed; inset: var(--site-top-h) 0 0 0; z-index: 90; background: var(--bg); padding: 24px; overflow: auto; }
.twin-explorer.is-fullscreen .explorer-stage { min-height: 60vh; }

@media (max-width: 1024px) {
 .twin-hero-grid { grid-template-columns: 1fr; gap: 28px; }
 .twin-hero-viz { order: -1; max-width: none; width: 100%; margin: 0; justify-self: stretch; }
 .twin-hero-copy { padding-top: 0; }
 .hero-side-stack { margin-top: 12px; }
 .hero-metrics { max-width: none; grid-template-columns: repeat(4, 1fr); }
 .feature-split, .editorial-grid, .story-grid, .pricing-grid, .about-values,
 .product-showcase-grid, .center-grid, .case-grid, .analysis-grid,
 .integration-matrix, .knowledge-assets, .api-showcase, .team-grid { grid-template-columns: 1fr; }
 .insight-grid, .project-grid, .resource-grid { grid-template-columns: 1fr; }
 .hero-metrics, .snapshot-grid, .ops-dashboard { grid-template-columns: repeat(2, 1fr); }
 .health-row, .demo-features { grid-template-columns: 1fr; }
 .sync-workflow { flex-direction: column; }
 .sync-arrow { display: none; }
 .arch-flow { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
 .twin-explorer { grid-template-columns: 1fr; }
 .entity-panel { transform: none; opacity: 1; }
 .demo-layout { grid-template-columns: 1fr; }
 .timeline-event { grid-template-columns: 1fr; gap: 4px; }
 .highlights-bar, .demo-features-grid { grid-template-columns: repeat(2, 1fr); }
 .auth-layout { grid-template-columns: 1fr; }
 .auth-visual { display: none; }
}

@media (max-width: 768px) {
 .brand-text span { display: none; }
 .header-actions .btn-outline { display: none; }
 .header-actions .nav-link--login { display: none; }
 .auth-social { grid-template-columns: 1fr; }
 .nav-toggle { display: block; }
 .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); flex-direction: column; padding: 12px; }
 .nav-main.is-open { display: flex; }
 .site-header { position: fixed; }
 .header-inner { position: relative; }
 .announce-bar-inner span { display: none; }
}

@media (min-width: 769px) and (max-width: 1180px) {
 .brand-text span { display: none; }
 .nav-link { font-size: 0.74rem; padding: 6px 7px; }
 .header-actions .btn-sm { padding: 6px 10px; font-size: 0.72rem; }
}
