:root {
  --ink: #0d1215;
  --ink-soft: #59615d;
  --paper: #f2f2ed;
  --panel: #fafaf7;
  --white: #fff;
  --line: rgba(13, 18, 21, .13);
  --line-strong: rgba(13, 18, 21, .26);
  --signal: #6a4cff;
  --signal-soft: #927fff;
  --violet: #6a4cff;
  --blue: #6a4cff;
  --pink: #d85e9f;
  --mint: #37b989;
  --live: #169c68;
  --danger: #d64b35;
  --radius: 3px;
  --control-radius: 7px;
  --shadow: 0 18px 48px rgba(18, 24, 28, .08);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1280px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Avenir, "Avenir Next", Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }
::selection { color: #fff; background: var(--signal); }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  border-radius: var(--control-radius);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(242, 242, 237, .9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand-symbol,
.brand-word {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}
.brand-symbol { width: 36px; height: 36px; }
.brand-word { width: 132px; height: 25px; }
.brand-symbol img,
.brand-word img {
  position: absolute;
  max-width: none;
  filter: invert(1);
}
.brand-symbol img { top: -18px; left: -36px; width: 105px; }
.brand-word img { top: -94px; left: -19px; width: 175px; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 2.4vw, 34px); }
.site-nav > a {
  font-size: .91rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav > a:not(.button) { transition: opacity .2s ease; }
.site-nav > a:not(.button):hover { opacity: .55; }
.site-nav > a.active { color: var(--signal); }
.site-nav .nav-login { margin-left: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { color: #fff; background: var(--signal); box-shadow: none; }
.button-dark:hover { background: #5635f0; box-shadow: 0 9px 22px rgba(106, 76, 255, .18); }
.button-light { color: var(--ink); background: var(--panel); border-color: var(--line-strong); }
.button-light:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.nav-cta { min-height: 42px; padding-inline: 18px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 108px 0 92px;
  overflow: hidden;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(13, 18, 21, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 18, 21, .035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero::after { content:"";position:absolute;inset:0;background:linear-gradient(90deg,var(--paper) 0,transparent 24%,transparent 76%,var(--paper) 100%);pointer-events:none; }
.hero-inner { position: relative; z-index: 1; text-align: left; }
.hero-stage { display:grid;grid-template-columns:minmax(0,.92fr) minmax(470px,1.08fr);align-items:center;gap:clamp(48px,7vw,108px);min-height:560px; }
.hero-intro { position:relative;z-index:2; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 5.2vw, 6rem);
  font-weight: 590;
  line-height: .9;
  letter-spacing: -.068em;
}
.hero h1 span {
  color: var(--signal);
}
.hero-copy {
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}
.hero-actions { display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display:flex;flex-wrap:wrap;gap:12px 26px;margin:30px 0 0;padding:22px 0 0;border-top:1px solid var(--line);list-style:none; }
.hero-proof li { display:flex;align-items:center;gap:8px;color:#434b47;font-family:var(--mono);font-size:.68rem;letter-spacing:.04em;text-transform:uppercase; }
.hero-proof i { width:7px;height:7px;background:var(--live);border-radius:50%;box-shadow:0 0 0 3px rgba(22,156,104,.1); }

.system-field { position:relative;min-height:520px;overflow:hidden;background:#ecece6;border:1px solid var(--line-strong);box-shadow:10px 10px 0 rgba(13,18,21,.055); }
.system-field::before,.system-field::after { content:"";position:absolute;z-index:4;width:24px;height:24px;pointer-events:none; }
.system-field::before { top:-1px;left:-1px;border-top:2px solid var(--signal);border-left:2px solid var(--signal); }
.system-field::after { right:-1px;bottom:-1px;border-right:2px solid var(--signal);border-bottom:2px solid var(--signal); }
.system-field-canvas { position:absolute;inset:42px 0 44px;width:100%;height:calc(100% - 86px); }
.system-field-head,.system-ledger { position:absolute;z-index:3;right:0;left:0;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:0 16px;font-family:var(--mono);font-size:.59rem;letter-spacing:.08em; }
.system-field-head { top:0;height:42px;border-bottom:1px solid var(--line); }
.system-field-head span:last-child { display:flex;align-items:center;gap:7px;color:var(--live); }
.system-field-head i { width:6px;height:6px;background:var(--live);border-radius:50%;animation:system-live 1.8s ease-in-out infinite; }
@keyframes system-live { 50% { opacity:.35;box-shadow:0 0 0 5px rgba(22,156,104,.12); } }
.system-ledger { bottom:0;height:44px;border-top:1px solid var(--line); }
.system-ledger span { display:flex;min-width:0;align-items:center;gap:6px;color:#737a76;white-space:nowrap; }.system-ledger strong { display:inline-block;color:var(--ink);font-weight:700;transition:opacity .16s ease,transform .16s ease; }.system-ledger strong.is-changing { opacity:0;transform:translateY(4px); }
.system-ledger-model i { display:grid;width:19px;height:19px;place-items:center;background:#fafaf7;border:1px solid var(--line);font-style:normal; }.system-ledger-model img { width:13px;height:13px;object-fit:contain;transition:opacity .16s ease,transform .16s ease; }
.system-node { position:absolute;z-index:3;display:grid;gap:2px;width:170px;padding:12px 14px;background:rgba(250,250,247,.92);border:1px solid var(--line-strong);box-shadow:4px 4px 0 rgba(13,18,21,.04);font-family:var(--mono);transition:border-color .25s ease,background .25s ease,box-shadow .25s ease,transform .25s ease; }
.system-node::before,.system-node::after { content:"";position:absolute;width:9px;height:9px; }
.system-node::before { top:-1px;left:-1px;border-top:1px solid var(--signal);border-left:1px solid var(--signal); }
.system-node::after { right:-1px;bottom:-1px;border-right:1px solid var(--signal);border-bottom:1px solid var(--signal); }
.system-node small { color:var(--signal);font-size:.51rem;letter-spacing:.08em; }.system-node strong { font-family:inherit;font-size:.9rem; }.system-node span { color:#69716d;font-size:.5rem; }
.system-node.is-active { color:#fff;background:var(--signal);border-color:var(--signal);box-shadow:0 0 0 5px rgba(106,76,255,.12),5px 5px 0 rgba(13,18,21,.1);transform:translateY(-2px); }
.system-node.is-active small,.system-node.is-active span { color:rgba(255,255,255,.72); }
.system-node.is-active::before,.system-node.is-active::after { border-color:#fff; }
.system-node-eve { top:15%;left:50%;transform:translateX(-50%); }.system-node-eve.is-active { transform:translateX(-50%) translateY(-2px); }.system-node-pcp { bottom:12%;left:4%; }.system-node-lab { right:4%;bottom:12%; }
.product-window {
  --eve-paper: #f3f0ea;
  --eve-panel: #f8f6f2;
  --eve-line: #d8d4cc;
  --eve-muted: #77736d;
  --eve-gold: #b48a43;
  --eve-green: #27bd91;
  position: relative;
  max-width: 1180px;
  margin: 86px auto 0;
  overflow: hidden;
  text-align: left;
  color: #292824;
  background: var(--eve-paper);
  border: 1px solid rgba(16, 17, 20, .12);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(64, 48, 100, .16), 0 3px 8px rgba(20, 18, 30, .05);
  isolation: isolate;
}
.eve-demo button { color: inherit;font: inherit; }
.eve-demo-topbar {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) minmax(410px,46%);
  min-height: 57px;
  background: #f7f4ef;
  border-bottom: 1px solid var(--eve-line);
}
.eve-demo-brand { display:grid;place-items:center;align-content:center;gap:0;border-right:1px solid var(--eve-line);font-size:.64rem;line-height:.8;letter-spacing:-.08em; }
.eve-demo-brand strong { font-size:.85rem;font-weight:780; }
.eve-demo-brand span { margin-top:3px;font-size:.42rem;letter-spacing:0; }
.eve-demo-project { display:flex;min-width:0;align-items:center;justify-content:space-between;gap:18px;padding:0 18px;font-size:.67rem; }
.eve-demo-project strong { overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:620; }
.eve-demo-project > span { display:flex;flex:0 0 auto;align-items:center;gap:7px;color:var(--eve-muted);font-size:.58rem; }
.eve-demo-project i { width:7px;height:7px;background:var(--eve-green);border-radius:50%;box-shadow:0 0 0 4px rgba(39,189,145,.12); }
.eve-artifact-tabs { display:grid;grid-template-columns:repeat(3,1fr);min-width:0;border-left:1px solid var(--eve-line); }
.eve-artifact-tabs button { position:relative;display:flex;min-width:0;align-items:center;justify-content:center;gap:7px;padding:0 9px;background:transparent;border:0;border-right:1px solid var(--eve-line);cursor:pointer;font-size:.61rem;white-space:nowrap;transition:background .2s ease,color .2s ease; }
.eve-artifact-tabs button[hidden] { display:none; }
.eve-artifact-tabs button:not([hidden]) { animation:eve-artifact-tab-enter .32s cubic-bezier(.2,.8,.2,1) both; }
@keyframes eve-artifact-tab-enter { from { opacity:0;transform:translateX(9px); } to { opacity:1;transform:none; } }
.eve-artifact-tabs button:last-child { border-right:0; }
.eve-artifact-tabs button::after { content:"";position:absolute;right:11px;bottom:-1px;left:11px;height:2px;background:var(--eve-gold);transform:scaleX(0);transition:transform .22s ease; }
.eve-artifact-tabs button:hover { background:#fffaf2; }
.eve-artifact-tabs button[aria-selected="true"] { color:#8d672b;background:#fffaf2; }
.eve-artifact-tabs button[aria-selected="true"]::after { transform:scaleX(1); }
.eve-artifact-tabs button span { font-size:.82rem; }
.eve-artifact-tabs button:disabled { color:#aaa69e;background:#f3f1ec;cursor:not-allowed;opacity:.62; }
.eve-artifact-tabs button:disabled:hover { background:#f3f1ec; }
.eve-artifact-tabs button:disabled::after { transform:scaleX(0); }
.eve-demo-body { display:grid;grid-template-columns:58px minmax(0,1fr) minmax(410px,46%);min-height:610px; }
.eve-demo-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 14px 0 12px;
  background: #f7f4ef;
  border-right: 1px solid var(--eve-line);
}
.eve-demo-rail button { display:grid;width:46px;min-height:50px;place-items:center;align-content:center;gap:3px;padding:5px 0;color:#77736d;background:transparent;border:0;border-radius:8px;cursor:pointer;font-size:.8rem; }
.eve-demo-rail button small { font-size:.46rem; }
.eve-demo-rail button:hover,.eve-demo-rail button.active { color:#1e1d1a;background:#ece8e1; }
.eve-rail-spacer { flex:1; }
.eve-demo-avatar { display:grid;width:31px;height:31px;place-items:center;color:#fff;background:#2a2925;border-radius:50%;font-size:.5rem;font-weight:750; }
.eve-thread-pane { display:flex;min-width:0;flex-direction:column;padding:18px;background:var(--eve-paper);border-right:1px solid var(--eve-line); }
.eve-thread-heading { display:flex;align-items:center;justify-content:space-between;gap:14px;padding-bottom:14px;border-bottom:1px solid var(--eve-line);font-size:.58rem; }
.eve-thread-heading > div { display:grid;gap:3px; }
.eve-thread-heading > div span { color:var(--eve-muted);font-size:.48rem;letter-spacing:.11em; }
.eve-thread-heading strong { font-size:.72rem;font-weight:650; }
.eve-thread-heading > span { color:#1a8f6f;background:#e1f6ef;border-radius:99px;padding:5px 8px;white-space:nowrap; }
.eve-user-prompt { margin:15px 0 12px 42px;padding:12px 13px;background:#e9e6e1;border:1px solid #d1cdc5;border-radius:12px;font-size:.63rem;line-height:1.5; }
.eve-user-prompt[hidden],.eve-agent-summary[hidden],.eve-task-list button[hidden],.eve-thread-result[hidden] { display:none; }
.eve-user-prompt.is-entering,.eve-agent-summary.is-entering,.eve-task-list button.is-entering,.eve-thread-result.is-entering { animation:eve-thread-enter .48s cubic-bezier(.2,.8,.2,1) both; }
@keyframes eve-thread-enter { from { opacity:0;transform:translateY(10px) scaleY(.82);transform-origin:top; } to { opacity:1;transform:none; } }
.eve-user-prompt.is-awaiting { min-height:44px;color:transparent;background:#eceae5;border-style:dashed; }.eve-user-prompt.is-submitted { animation:eve-submit .35s ease both; }
@keyframes eve-submit { from { opacity:.3;transform:translateY(5px); } }
.eve-agent-summary { display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;padding:12px;background:#faf9f6;border:1px solid var(--eve-line);border-left:3px solid var(--eve-green);border-radius:11px; }
.eve-agent-summary[data-state="idle"] { border-left-color:#a9a69f; }.eve-agent-summary[data-state="idle"] .eve-agent-icon { color:#77736d;background:#ece9e3; }.eve-agent-summary[data-state="complete"] { background:#f1fff9; }
.eve-agent-icon { display:grid;width:27px;height:27px;place-items:center;color:#169873;background:#e1f6ee;border-radius:8px;font-size:.64rem; }
.eve-agent-summary > div { display:grid;gap:3px;min-width:0; }
.eve-agent-summary strong { overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.65rem; }
.eve-agent-summary p { margin:0;color:var(--eve-muted);font-size:.52rem;line-height:1.35; }
.eve-agent-summary > i { color:var(--eve-green);font-size:.6rem;font-style:normal; }
.eve-task-list { display:grid;gap:7px;margin-top:12px; }
.eve-task-list button { display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:9px;width:100%;padding:9px 10px;text-align:left;background:#f9f7f3;border:1px solid var(--eve-line);border-radius:9px;cursor:pointer;transition:border-color .2s ease,background .2s ease,transform .2s ease; }
.eve-task-list button:hover { transform:translateX(2px);background:#fff; }
.eve-task-list button.is-active { border-color:#82d7bd;background:#f4fffb;box-shadow:inset 3px 0 0 var(--eve-green); }
.eve-task-list button.is-complete { background:#f7fbf8;border-color:#bedfd4; }.eve-task-list button.is-complete > span { color:#148c6c;background:#e4f4ee; }.eve-task-list button.is-complete > i { color:#148c6c; }
.eve-task-list button > span { display:grid;width:25px;height:25px;place-items:center;background:#ece9e3;border-radius:7px;font-size:.6rem; }
.eve-task-list button.is-active > span { color:#148c6c;background:#ddf5ed; }
.eve-task-list p { display:grid;gap:2px;margin:0;min-width:0; }
.eve-task-list strong { overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.58rem; }
.eve-task-list small,.eve-task-list i { color:#8a867f;font-size:.47rem;font-style:normal; }
.eve-thread-result { margin-top:12px;padding:12px 13px;background:#f8f6f1;border-top:1px solid var(--eve-line);border-bottom:1px solid var(--eve-line); }
.eve-thread-result.is-pending { opacity:.62; }.eve-thread-result.is-pending p::after { content:"";display:inline-block;width:3px;height:3px;margin-left:5px;background:currentColor;border-radius:50%;box-shadow:6px 0 currentColor,12px 0 currentColor;animation:eve-wait 1.1s ease-in-out infinite; }
@keyframes eve-wait { 50% { opacity:.22;transform:translateY(-2px); } }
.eve-thread-result strong { font-size:.58rem; }.eve-thread-result p { margin:5px 0 0;color:#5f5c57;font-size:.54rem;line-height:1.45; }
.eve-composer { display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding:11px 12px;color:#aaa69f;background:#e9e6e1;border:1px solid #d2cec7;border-radius:11px;font-size:.55rem; }
.eve-composer span.is-typing { color:#4d4a45; }.eve-composer span.is-typing::after { content:"";display:inline-block;width:1px;height:.9em;margin-left:2px;background:var(--signal);animation:eve-caret .7s steps(1) infinite; }
@keyframes eve-caret { 50% { opacity:0; } }
.eve-composer i { display:grid;width:24px;height:24px;place-items:center;color:#fff;background:#c8b48d;border-radius:50%;font-style:normal; }
.eve-artifact-pane { min-width:0;background:#f8f6f2; }
.eve-artifact-idle { position:relative;display:grid;height:100%;min-height:610px;place-content:center;justify-items:start;gap:9px;padding:clamp(34px,6vw,72px);overflow:hidden;background-color:#f4f2ed;background-image:radial-gradient(#d4d0c8 .8px,transparent .8px);background-size:12px 12px; }
.eve-artifact-idle[hidden] { display:none; }
.eve-artifact-idle::before { content:"";position:absolute;top:19%;left:50%;width:240px;height:240px;border:1px solid rgba(106,76,255,.22);transform:translateX(-50%) rotate(45deg); }
.eve-artifact-idle::after { content:"";position:absolute;top:33%;left:50%;width:116px;height:116px;background:rgba(106,76,255,.08);border:1px solid rgba(106,76,255,.36);transform:translateX(-50%) rotate(45deg);animation:eve-idle-pulse 2.8s ease-in-out infinite; }
.eve-artifact-idle > * { position:relative;z-index:1; }
.eve-artifact-idle > p { margin:185px 0 0;color:var(--signal);font-family:var(--mono);font-size:.48rem;letter-spacing:.08em; }
.eve-artifact-idle > strong { color:#282824;font-size:1.15rem;font-weight:630;letter-spacing:-.025em; }
.eve-artifact-idle > small { max-width:340px;color:#77736d;font-size:.55rem;line-height:1.55; }
.eve-artifact-idle > div { display:grid;grid-template-columns:repeat(3,1fr);width:min(100%,390px);margin-top:18px;border:1px solid var(--eve-line); }
.eve-artifact-idle > div span { padding:9px 10px;color:#8c8880;background:rgba(250,249,246,.9);border-right:1px solid var(--eve-line);font-family:var(--mono);font-size:.42rem; }
.eve-artifact-idle > div span:last-child { border-right:0; }
.eve-idle-signal { position:absolute!important;z-index:2!important;top:calc(33% + 50px);left:50%;display:flex;gap:6px;transform:translate(-50%,-50%); }
.eve-idle-signal i { width:5px;height:5px;background:var(--signal);border-radius:50%;animation:eve-idle-dot 1.2s ease-in-out infinite; }
.eve-idle-signal i:nth-child(2) { animation-delay:.18s; }.eve-idle-signal i:nth-child(3) { animation-delay:.36s; }
@keyframes eve-idle-pulse { 50% { opacity:.42;transform:translateX(-50%) rotate(45deg) scale(.86); } }
@keyframes eve-idle-dot { 50% { opacity:.25;transform:translateY(-3px); } }
.eve-artifact-panel { display:flex;height:100%;min-height:610px;flex-direction:column;animation:eve-artifact-in .3s ease both; }
.eve-artifact-panel[hidden] { display:none; }
@keyframes eve-artifact-in { from { opacity:.35;transform:translateY(5px); } to { opacity:1;transform:none; } }
.eve-artifact-header { display:flex;min-height:62px;align-items:center;justify-content:space-between;gap:14px;padding:12px 15px;border-bottom:1px solid var(--eve-line); }
.eve-artifact-header > div { display:grid;gap:3px;min-width:0; }
.eve-artifact-header span { color:var(--eve-muted);font-size:.49rem;letter-spacing:.04em; }
.eve-artifact-header strong { overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.69rem; }
.artifact-status { flex:0 0 auto;padding:5px 8px;color:#7d612f!important;background:#f2e6cf;border-radius:99px;letter-spacing:0!important; }
.eve-viewer { position:relative;display:grid;min-height:330px;place-items:center;overflow:hidden;background:#fff;border-bottom:1px solid var(--eve-line); }
.viewer-controls { position:absolute;z-index:4;top:10px;right:10px;display:grid;gap:4px; }
.viewer-controls button { display:grid;width:28px;height:28px;place-items:center;background:rgba(248,246,242,.94);border:1px solid #e2ded7;border-radius:5px;cursor:pointer;font-size:.67rem;transition:background .2s ease,transform .2s ease; }
.viewer-controls button:hover { background:#fff;transform:translateY(-1px); }
.molecule-mode-switch { position:absolute;z-index:5;top:10px;left:10px;display:flex;border:1px solid #ddd8d0; }.molecule-mode-switch button { min-width:35px;height:27px;padding:0 8px;color:#77736d;background:#f7f5f0;border:0;border-right:1px solid #ddd8d0;cursor:pointer;font-family:var(--mono);font-size:.46rem; }.molecule-mode-switch button:last-child { border-right:0; }.molecule-mode-switch button.is-active { color:#fff;background:var(--signal); }
.molecule-stage { display:grid;width:100%;height:330px;place-items:center;transform:scale(var(--artifact-scale,1));transition:transform .3s ease;transform-origin:center;touch-action:none;cursor:grab; }.molecule-stage:active { cursor:grabbing; }.molecule-3d-canvas { width:100%;height:100%; }.molecule-2d-canvas { width:min(82%,390px);max-height:300px;object-fit:contain; }.molecule-3d-canvas[hidden],.molecule-2d-canvas[hidden] { display:none; }
.viewer-caption { position:absolute;right:16px;bottom:11px;color:#8c8881;font-size:.47rem; }
.molecule-detail-grid,.structure-summary { display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--eve-line); }
.molecule-detail-grid > div,.structure-summary > div { display:grid;gap:4px;padding:12px 14px;border-right:1px solid var(--eve-line); }
.molecule-detail-grid > div:last-child,.structure-summary > div:last-child { border-right:0; }
.molecule-detail-grid span,.structure-summary span { color:var(--eve-muted);font-size:.46rem; }.molecule-detail-grid strong,.structure-summary strong { font-size:.58rem; }
.artifact-rationale { margin:0;padding:12px 15px;color:#67635d;font-size:.53rem;line-height:1.45; }.artifact-rationale strong { display:block;margin-bottom:3px;color:#2b2a26;font-size:.55rem; }
.protein-viewer { background:#fff; }
.protein-video { display:block;width:100%;height:330px;background:#fff;object-fit:contain; }
.protein-legend { position:absolute;left:13px;bottom:10px;display:flex;gap:10px;color:#76726c;font-size:.45rem; }.protein-legend span { display:flex;align-items:center;gap:4px; }.protein-legend i { width:7px;height:7px;border-radius:50%; }.chain-a { background:#1c956d; }.chain-b { background:#6b5aa8; }.chain-c { background:#e3aa2f; }
.workflow-viewer { min-height:390px;place-items:stretch;overflow:hidden;background-color:#fbfaf7;background-image:radial-gradient(#d2cec6 1px,transparent 1px);background-size:11px 11px; }
.workflow-map-shell { position:relative;width:100%;height:390px;transform:scale(var(--artifact-scale,1));transition:transform .3s ease;transform-origin:center; }
.workflow-map { display:block;width:100%;height:100%;overflow:visible; }
.workflow-map-mobile { display:none; }
.workflow-edge { fill:none;stroke:#bbb7af;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:stroke .22s ease,stroke-width .22s ease; }
.workflow-edge.is-active { stroke:var(--eve-gold);stroke-width:2.6; }
.workflow-map marker path { fill:context-stroke; }
.workflow-map foreignObject { overflow:visible; }
.workflow-node { display:grid;width:100%;height:100%;min-height:0;align-content:center;gap:1px;padding:7px 8px;text-align:left;background:#fff;border:1px solid #d6d2ca;border-radius:7px;box-shadow:0 3px 10px rgba(50,46,39,.06);cursor:pointer;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease; }
.workflow-node:hover,.workflow-node:focus-visible { border-color:var(--eve-gold);outline:0;box-shadow:0 6px 17px rgba(92,70,32,.14);transform:translateY(-2px); }
.workflow-node.is-running { border-color:#e4bd79;box-shadow:inset 3px 0 0 var(--eve-gold),0 5px 14px rgba(92,70,32,.1); }
.workflow-node span { color:#978f82;font-size:.4rem; }.workflow-node strong { font-size:.49rem; }.workflow-node small { color:#8d8982;font-size:.39rem; }
.workflow-console { display:grid;gap:5px;padding:11px 15px;background:#f2efe9;border-top:1px solid var(--eve-line); }.workflow-console > span { display:flex;align-items:center;gap:5px;color:#77736d;font-size:.43rem;letter-spacing:.1em; }.workflow-console > span i { width:6px;height:6px;background:var(--eve-green);border-radius:50%; }.workflow-console > strong { font-size:.55rem; }.workflow-console > div { display:flex;gap:6px; }.workflow-console small { padding:4px 6px;background:#faf9f6;border:1px solid var(--eve-line);border-radius:99px;font-size:.42rem; }

.sovereignty-section { background:var(--paper);border-bottom:1px solid var(--line); }
.sovereignty-heading { display:grid;grid-template-columns:1.2fr .58fr;align-items:end;gap:70px;margin-bottom:58px; }
.sovereignty-heading .eyebrow { margin-bottom:20px; }
.sovereignty-heading h2 { margin:0;font-size:clamp(2.8rem,5.3vw,5.5rem);font-weight:590;line-height:.95;letter-spacing:-.06em; }
.sovereignty-heading > p { max-width:470px;margin:0;color:var(--ink-soft);font-size:1.07rem;line-height:1.65; }
.control-grid { display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line-strong);border-left:1px solid var(--line-strong); }
.control-card { position:relative;display:flex;min-height:490px;flex-direction:column;padding:28px;background:var(--panel);border-right:1px solid var(--line-strong);border-bottom:1px solid var(--line-strong);transition:background .25s ease,color .25s ease; }
.control-card::before,.deployment-module::before { content:"";position:absolute;top:-1px;left:-1px;width:16px;height:16px;border-top:2px solid var(--signal);border-left:2px solid var(--signal); }
.control-card:hover { background:#fff; }
.control-index { color:var(--signal);font-family:var(--mono);font-size:.62rem;letter-spacing:.09em; }
.control-card h3 { max-width:340px;margin:28px 0 0;font-size:clamp(1.55rem,2.25vw,2.25rem);font-weight:620;line-height:1.04;letter-spacing:-.045em; }
.control-card > p { margin:auto 0 0;color:var(--ink-soft);font-size:.91rem;line-height:1.62; }
.model-router { margin:42px 0 25px;background:#efefea;border:1px solid var(--line-strong); }
.model-symbols { display:grid;grid-template-columns:repeat(3,1fr); }
.model-symbol { position:relative;display:grid;min-width:0;min-height:82px;place-items:center;align-content:center;gap:6px;padding:10px;color:#676f6b;background:rgba(250,250,247,.68);border-right:1px solid var(--line);border-bottom:1px solid var(--line);transition:color .25s ease,background .25s ease,box-shadow .25s ease; }
.model-symbol:nth-child(3n) { border-right:0; }.model-symbol:nth-last-child(-n+3) { border-bottom:0; }
.model-symbol i { display:grid;width:31px;height:31px;place-items:center;color:inherit;font-family:var(--mono);font-size:.94rem;font-style:normal;font-weight:760;line-height:1; }.model-symbol i img { width:27px;height:27px;object-fit:contain;filter:saturate(.9);transition:filter .2s ease,transform .2s ease; }
.model-symbol b { overflow:hidden;max-width:100%;font-family:var(--mono);font-size:.5rem;font-weight:650;letter-spacing:.02em;text-overflow:ellipsis;white-space:nowrap; }
.model-symbol.is-active { z-index:1;color:var(--signal);background:#fff;box-shadow:inset 0 0 0 2px var(--signal); }.model-symbol.is-active i img { filter:saturate(1.15);transform:scale(1.08); }
.model-symbol.is-active::after { content:"";position:absolute;inset:5px;border:1px solid rgba(106,76,255,.3);animation:model-scan 1.9s ease-in-out infinite; }
@keyframes model-scan { 50% { inset:9px;opacity:.25; } }
.model-router-status { display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:10px;min-height:46px;padding:0 12px;border-top:1px solid var(--line-strong);font-family:var(--mono); }
.model-router-status > span { display:flex;align-items:center;gap:7px;color:#707873;font-size:.49rem;letter-spacing:.07em; }.model-router-status > span i { width:6px;height:6px;background:var(--live);border-radius:50%;animation:system-live 1.8s ease-in-out infinite; }
.model-router-status strong { color:var(--signal);font-size:.64rem; }.model-router-status small { color:#6d746f;font-size:.46rem;letter-spacing:.06em; }

.rl-console { margin:35px 0 23px;background:#f3f3ee;border:1px solid var(--line-strong);color:var(--ink);box-shadow:4px 4px 0 rgba(13,18,21,.045);font-family:var(--mono); }
.rl-console-head,.rl-reward { display:flex;min-height:37px;align-items:center;justify-content:space-between;gap:10px;padding:0 11px;border-bottom:1px solid var(--line);font-size:.47rem;letter-spacing:.05em; }
.rl-console-head b { color:var(--signal);font-size:.48rem; }.rl-objectives { display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--line); }
.rl-objectives span { display:flex;min-height:38px;align-items:center;justify-content:center;gap:6px;color:#68706c;border-right:1px solid var(--line);font-size:.45rem; }.rl-objectives span:last-child { border-right:0; }.rl-objectives b { color:var(--signal); }
.rl-trace { width:100%;height:102px;padding:12px 10px 5px;overflow:visible; }
.rl-trace-grid { fill:none;stroke:rgba(13,18,21,.1);stroke-width:1; }.rl-trace-line { fill:none;stroke:var(--signal);stroke-width:2.5;stroke-linecap:square;stroke-dasharray:340;stroke-dashoffset:340;animation:trace-run 4.8s cubic-bezier(.2,.7,.2,1) infinite; }.rl-trace-dot { fill:var(--signal);filter:drop-shadow(0 0 5px rgba(106,76,255,.45));animation:trace-dot 4.8s ease-in-out infinite; }
@keyframes trace-run { 0%,8% { stroke-dashoffset:340; } 72%,100% { stroke-dashoffset:0; } } @keyframes trace-dot { 0%,8% { opacity:0; } 68%,100% { opacity:1; } }
.rl-steps { display:grid;grid-template-columns:repeat(4,1fr);margin:0 10px 10px;border:1px solid var(--line); }
.rl-steps span { display:grid;min-height:32px;place-items:center;color:#7d8581;border-right:1px solid var(--line);font-size:.42rem;transition:color .2s ease,background .2s ease; }.rl-steps span:last-child { border-right:0; }.rl-steps span.is-active { color:#fff;background:var(--signal); }
.rl-reward { border-top:1px solid var(--line);border-bottom:0;color:#68706c; }.rl-reward strong { color:var(--ink);font-size:.5rem; }.rl-reward strong b { color:var(--signal);font-size:.65rem; }
.context-ledger { display:grid;margin:52px 0 28px;border-top:1px solid var(--line); }
.context-ledger span { display:flex;min-height:54px;align-items:center;justify-content:space-between;gap:12px;border-bottom:1px solid var(--line);font-size:.78rem; }
.context-ledger b { color:var(--live);font-family:var(--mono);font-size:.54rem;letter-spacing:.06em; }.context-ledger span:last-child b { color:#b07817; }
.context-audit { position:relative;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:8px;min-height:39px;margin:-10px 0 22px;padding:0 10px;overflow:hidden;color:#67706b;background:#efefea;border:1px solid var(--line);font-family:var(--mono);font-size:.43rem;letter-spacing:.04em; }
.context-audit::after { content:"";position:absolute;top:0;bottom:0;width:28%;background:linear-gradient(90deg,transparent,rgba(106,76,255,.12),transparent);animation:audit-scan 3.6s linear infinite; }.context-audit > i { width:6px;height:6px;background:var(--live);border-radius:50%; }.context-audit b { color:var(--live);font-size:.42rem; }
@keyframes audit-scan { from { left:-30%; } to { left:110%; } }

.deployment-module { position:relative;display:grid;grid-template-columns:.76fr 1.24fr;margin-top:22px;background:#101514;border:1px solid #101514;color:#f4f5f1; }
.deployment-copy { display:flex;flex-direction:column;padding:clamp(34px,5vw,68px);border-right:1px solid rgba(255,255,255,.14); }
.deployment-copy .control-index { color:#8ea0ff; }.deployment-copy h3 { margin:28px 0 0;font-size:clamp(2.25rem,2.9vw,3.35rem);font-weight:580;line-height:.96;letter-spacing:-.055em; }
.deployment-copy > p { margin:28px 0;color:#aeb6b1;line-height:1.68; }
.deployment-copy ul { display:grid;gap:10px;margin:auto 0 0;padding:26px 0 0;border-top:1px solid rgba(255,255,255,.14);list-style:none; }
.deployment-copy li { position:relative;padding-left:20px;color:#d7dcd8;font-family:var(--mono);font-size:.68rem; }.deployment-copy li::before { content:"+";position:absolute;left:0;color:#7f94ff; }
.deployment-console { min-width:0;padding:22px;background:#171d1b; }
.deployment-tabs { display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.18);border-left:1px solid rgba(255,255,255,.18); }
.deployment-tabs button { min-height:54px;padding:10px;color:#98a09b;background:transparent;border:0;border-right:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.18);font-family:var(--mono);font-size:.62rem;cursor:pointer;transition:background .2s ease,color .2s ease; }
.deployment-tabs button:hover { color:#fff;background:rgba(255,255,255,.04); }.deployment-tabs button[aria-selected="true"] { color:#fff;background:var(--signal); }
.deployment-frame { min-height:510px;margin-top:18px;padding:18px;background-color:#edf0ec;background-image:radial-gradient(rgba(13,18,21,.18) .8px,transparent .8px);background-size:12px 12px;color:var(--ink);border:1px solid rgba(255,255,255,.18);transition:opacity .18s ease,transform .18s ease; }
.deployment-frame.is-changing { opacity:.25;transform:translateY(5px); }
.deployment-scene { display:flex;min-height:472px;flex-direction:column;gap:15px;padding:6px;animation:deployment-in .28s ease both; }.deployment-scene[hidden] { display:none; }
@keyframes deployment-in { from { opacity:.2;transform:translateY(6px); } }
.deployment-frame-head { display:flex;align-items:center;justify-content:space-between;gap:16px;padding-bottom:16px;border-bottom:1px solid var(--line-strong);font-family:var(--mono);font-size:.6rem;letter-spacing:.06em; }
.deployment-frame-head i { color:var(--live);font-style:normal; }
.deployment-control { display:grid;gap:8px;padding:24px;background:rgba(106,76,255,.075);border:1px solid var(--signal); }
.deployment-control small { color:var(--signal);font-family:var(--mono);font-size:.54rem;letter-spacing:.08em; }.deployment-control strong { font-size:1.04rem;font-weight:620; }
.deployment-scene > p { margin:auto 0 0;padding-top:14px;color:#525b56;border-top:1px solid var(--line);font-size:.78rem;line-height:1.55; }
.deployment-cloud-grid,.airgap-local-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:8px; }.deployment-cloud-grid > span,.airgap-local-grid > span,.deployment-site-map > span { display:grid;min-height:82px;place-items:center;align-content:center;gap:5px;padding:10px;background:rgba(250,250,247,.94);border:1px solid var(--line-strong);box-shadow:3px 3px 0 rgba(13,18,21,.05);text-align:center; }.deployment-cloud-grid b,.airgap-local-grid b,.deployment-site-map b { font-family:var(--mono);font-size:.55rem;letter-spacing:.04em; }.deployment-cloud-grid small,.airgap-local-grid small,.deployment-site-map small { color:#727a75;font-size:.49rem; }
.deployment-private .deployment-cloud-grid > span:nth-child(2) { color:#fff;background:var(--signal);border-color:var(--signal); }.deployment-private .deployment-cloud-grid > span:nth-child(2) small { color:rgba(255,255,255,.72); }
.deployment-boundary { display:grid;grid-template-columns:1fr 28px 1fr 28px 1fr;align-items:center;padding:16px;background:rgba(250,250,247,.88);border:1px dashed var(--line-strong); }.deployment-boundary span { font-family:var(--mono);font-size:.46rem;text-align:center; }.deployment-boundary i { position:relative;height:1px;background:var(--signal); }.deployment-boundary i::after { content:"";position:absolute;top:-2px;right:-1px;width:5px;height:5px;background:var(--signal);transform:rotate(45deg); }
.deployment-site-map { position:relative;display:grid;grid-template-columns:repeat(2,1fr);gap:10px;padding:18px;background:rgba(250,250,247,.62);border:1px dashed var(--line-strong); }.deployment-site-map::before,.deployment-site-map::after { content:"";position:absolute;z-index:0;background:rgba(106,76,255,.38); }.deployment-site-map::before { top:50%;right:30px;left:30px;height:1px; }.deployment-site-map::after { top:30px;bottom:30px;left:50%;width:1px; }.deployment-site-map > span { position:relative;z-index:1;min-height:74px; }.deployment-site-map .site-core { color:#fff;background:#151918;border-color:#151918; }.deployment-site-map .site-core small { color:#aeb6b1; }.deployment-onprem .deployment-control { background:#f7f7f2;border-color:#151918; }.deployment-onprem .deployment-control small { color:#59615d; }
.airgap-seal { display:grid;grid-template-columns:58px 1fr;align-items:center;gap:14px;padding:13px;color:#ecefeb;background:#151918;border:1px solid #151918; }.airgap-lock { display:grid;width:44px;height:44px;place-items:center;color:#fff;background:#d64b35;border:1px solid #f17a64;font-family:var(--mono);font-size:1.35rem; }.airgap-seal div { display:grid;gap:3px; }.airgap-seal b { font-family:var(--mono);font-size:.59rem;letter-spacing:.05em; }.airgap-seal small { color:#a9afab;font-size:.5rem; }.airgap-local-grid { grid-template-columns:repeat(4,1fr); }.airgap-local-grid > span { min-height:76px;border-style:dashed;box-shadow:none; }.deployment-airgap { outline:2px solid rgba(214,75,53,.18);outline-offset:-1px; }.deployment-airgap .deployment-frame-head i { color:#d64b35; }.deployment-airgap .deployment-control { color:#fff;background:#151918;border-color:#151918; }.deployment-airgap .deployment-control small { color:#9f92f7; }

.support-strip { padding: 42px 0; background: #fff; border-bottom: 1px solid var(--line); }
.support-inner { display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 55px; }
.support-inner > p { margin: 0; color: #77777e; font-size: .68rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.logo-row { position:relative;min-width:0;overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
.logo-track { display:flex;width:max-content;animation:support-marquee 34s linear infinite;will-change:transform; }
.logo-sequence { --support-gap:clamp(38px,4.5vw,72px);display:flex;align-items:center;gap:var(--support-gap);padding-right:var(--support-gap); }
.logo-row img { flex:0 0 clamp(104px,9vw,142px);width:clamp(104px,9vw,142px);height:58px;max-height:58px;object-fit:contain;filter:grayscale(1);opacity:.48;transition:filter .2s ease,opacity .2s ease; }
.logo-row .support-logo-cnrs { transform:scale(1.25); }
.logo-row .support-logo-nvidia { transform:scale(1.15); }
.logo-row img:hover { filter: grayscale(0); opacity: .85; }
.logo-row:hover .logo-track,.logo-row:focus-within .logo-track { animation-play-state:paused; }
@keyframes support-marquee { to { transform:translateX(-50%); } }

.section { padding:clamp(72px,8vw,108px) 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .6fr; align-items: end; gap: 70px; margin-bottom: 62px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -42px; }
.section-heading h2, .research-heading h2, .mission-card h2, .people-heading h2, .news-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 520;
  line-height: .98;
  letter-spacing: -.065em;
}
.section-heading > p:last-child, .research-heading > p, .people-heading > p { max-width: 470px; margin: 0; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.65; }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered .eyebrow { margin-bottom: 20px; }
.section-heading.centered h2 { max-width: 800px; margin-inline: auto; }

.platform-section { background: #fff; }
.journey-console { color:#f2f3ef;background:#111413;border:1px solid #111413;box-shadow:10px 10px 0 rgba(106,76,255,.12); }
.journey-console-head,.journey-console-foot { display:flex;min-height:45px;align-items:center;justify-content:space-between;gap:16px;padding:0 15px;background:#171a19;border-bottom:1px solid rgba(255,255,255,.14);font-family:var(--mono);font-size:.53rem;letter-spacing:.07em; }
.journey-console-head b { display:flex;align-items:center;gap:7px;color:#56cca0;font-size:.46rem; }.journey-console-head b i,.journey-console-foot > span i { width:6px;height:6px;background:#45c895;border-radius:50%;animation:system-live 1.8s ease-in-out infinite; }
.journey-track { position:relative;display:grid;grid-template-columns:repeat(4,1fr);padding:18px;background-color:#141716;background-image:radial-gradient(rgba(255,255,255,.12) .7px,transparent .7px);background-size:11px 11px; }
.journey-track::before { content:"";position:absolute;z-index:2;top:50%;right:8%;left:8%;height:1px;background:rgba(255,255,255,.18); }.journey-track::after { content:"";position:absolute;z-index:2;top:calc(50% - 1px);left:8%;width:18%;height:3px;background:var(--signal-soft);box-shadow:0 0 9px var(--signal);animation:journey-signal 5.4s linear infinite; }
@keyframes journey-signal { from { transform:translateX(-100%); } to { transform:translateX(405%); } }
.journey-stage { position:relative;z-index:3;display:flex;min-width:0;min-height:390px;flex-direction:column;padding:15px;text-align:left;color:#d6dad7;background:rgba(25,28,27,.96);border:1px solid rgba(255,255,255,.17);border-right:0;cursor:pointer;transition:background .25s ease,border-color .25s ease,transform .25s ease; }.journey-stage:last-child { border-right:1px solid rgba(255,255,255,.17); }.journey-stage:hover,.journey-stage:focus-visible { z-index:4;outline:0;border-color:var(--signal-soft); }.journey-stage.is-active { z-index:4;background:linear-gradient(180deg,rgba(106,76,255,.24),rgba(25,28,27,.98) 48%);border-color:var(--signal-soft);box-shadow:inset 0 3px 0 var(--signal);transform:translateY(-4px); }
.journey-stage-head { display:grid;grid-template-columns:auto 1fr;align-items:end;gap:1px 10px; }.journey-stage-head i { grid-row:1/3;color:#9586f7;font-family:var(--mono);font-size:.48rem;font-style:normal; }.journey-stage-head b { font-size:1.1rem;letter-spacing:-.025em; }.journey-stage-head small { color:#777f7b;font-family:var(--mono);font-size:.39rem;letter-spacing:.08em; }.journey-stage.is-active .journey-stage-head small { color:#b8aefb; }
.journey-visual { position:relative;display:block;height:155px;margin:44px 0 24px;background:rgba(9,11,10,.4);border:1px solid rgba(255,255,255,.13);overflow:hidden; }.journey-visual > b { position:absolute;color:#9da39f;font-family:var(--mono);font-size:.38rem;font-weight:520;letter-spacing:.04em; }
.journey-copy { margin-top:auto;color:#999f9b;font-size:.76rem;line-height:1.55; }.journey-stage.is-active .journey-copy { color:#d8dbd9; }
.journey-explore > i { position:absolute;left:16px;height:7px;background:#6c736f; }.journey-explore > i:nth-child(1) { top:25px;width:64%; }.journey-explore > i:nth-child(2) { top:45px;width:48%; }.journey-explore > i:nth-child(3) { top:70px;width:72%;background:var(--signal);animation:explore-type 2.6s steps(5) infinite; }.journey-explore > b:nth-of-type(1) { right:13px;bottom:13px; }.journey-explore > b:nth-of-type(2) { left:13px;bottom:13px;color:#64d4a8; } @keyframes explore-type { 50% { width:34%; } }
.journey-design > i { position:absolute;width:9px;height:9px;background:#b2b6b3;border:2px solid #171a19;border-radius:50%;box-shadow:0 0 0 1px #7f8782; }.journey-design > i::after { content:"";position:absolute;top:3px;left:7px;width:35px;height:1px;background:#737b76;transform-origin:left; }.journey-design > i:nth-child(1) { top:35px;left:35px; }.journey-design > i:nth-child(1)::after { transform:rotate(18deg); }.journey-design > i:nth-child(2) { top:52px;left:76px;background:var(--signal-soft); }.journey-design > i:nth-child(2)::after { width:29px;transform:rotate(-42deg); }.journey-design > i:nth-child(3) { top:25px;left:111px; }.journey-design > i:nth-child(3)::after { width:34px;transform:rotate(54deg); }.journey-design > i:nth-child(4) { top:67px;left:144px; }.journey-design > i:nth-child(4)::after { width:26px;transform:rotate(17deg); }.journey-design > i:nth-child(5) { top:77px;left:178px;background:#4fc99a; }.journey-design > i:nth-child(5)::after { display:none; }.journey-design > b { right:13px;bottom:13px; }
.journey-compute > i { position:absolute;width:24px;height:19px;background:#242826;border:1px solid #78807b; }.journey-compute > i::after { content:"";position:absolute;top:8px;left:100%;width:28px;height:1px;background:#626964; }.journey-compute > i:nth-child(1) { top:27px;left:20px;border-color:var(--signal-soft); }.journey-compute > i:nth-child(2) { top:27px;left:74px; }.journey-compute > i:nth-child(3) { top:27px;left:128px; }.journey-compute > i:nth-child(4) { top:68px;left:101px;border-color:#4fc99a; }.journey-compute > i:nth-child(3)::after { left:-16px;top:27px;width:40px;transform:rotate(90deg); }.journey-compute > i:nth-child(4)::after { display:none; }.journey-compute > b { right:13px;bottom:13px;color:#64d4a8; }
.journey-experiment { display:grid;grid-template-columns:repeat(4,15px);grid-template-rows:repeat(3,15px);align-content:start;gap:9px;padding:24px; }.journey-experiment > i { display:block;width:15px;height:15px;background:#252a27;border:1px solid #757d78;border-radius:50%; }.journey-experiment > i:nth-child(3n),.journey-experiment > i:nth-child(5) { background:var(--signal);border-color:#aa9cff;box-shadow:0 0 7px rgba(106,76,255,.55);animation:assay-pulse 2.8s ease-in-out infinite; }.journey-experiment > b { right:13px;bottom:13px;color:#64d4a8; } @keyframes assay-pulse { 50% { opacity:.35; } }
.journey-loop { display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:10px;min-height:38px;padding:0 15px;color:#998bf4;background:#141716;border-top:1px solid rgba(255,255,255,.14); }.journey-loop span { height:1px;background:repeating-linear-gradient(90deg,var(--signal-soft) 0 4px,transparent 4px 9px);animation:return-flow 2.8s linear infinite; }.journey-loop small { font-family:var(--mono);font-size:.39rem;letter-spacing:.06em; }.journey-loop i { font-style:normal; }
.journey-console-foot { grid-template-columns:auto 1fr auto;border-top:1px solid rgba(255,255,255,.14);border-bottom:0; }.journey-console-foot > span { display:flex;align-items:center;gap:7px;color:#767d79; }.journey-console-foot strong { overflow:hidden;color:#c6cac7;font-size:.5rem;font-weight:520;text-overflow:ellipsis;white-space:nowrap;transition:opacity .18s ease,transform .18s ease; }.journey-console-foot strong.is-changing { opacity:.2;transform:translateX(4px); }.journey-console-foot small { color:#9c8ff3; }

.products-section { overflow: hidden; background: linear-gradient(180deg, #f7f7f4, #f2f1f7); }
.product-tabs { display: flex; max-width: 650px; margin: 0 auto 24px; padding: 5px; background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 999px; }
.product-tabs button { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 48px; gap: 8px; background: transparent; border: 0; border-radius: 99px; cursor: pointer; font-weight: 650; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.product-tabs button span { font-size: .58rem; opacity: .5; }
.product-tabs button[aria-selected="true"] { color: #fff; background: #111216; box-shadow: 0 7px 20px rgba(17,18,22,.16); }
.product-panels { position: relative; max-width: 1160px; min-height: 590px; margin: auto; }
.product-panel { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 590px; background: #fff; border: 1px solid var(--line); border-radius: 34px; overflow: hidden; box-shadow: 0 26px 80px rgba(32,28,60,.08); }
.product-panel[hidden] { display: none; }
.product-panel.active { animation: panel-in .45s ease both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.product-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 76px); }
.product-label { margin: 0 0 18px; color: #7156e2; font-size: .7rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.product-copy h3 { margin: 0; font-size: clamp(2rem, 3.2vw, 3.45rem); font-weight: 520; line-height: 1.04; letter-spacing: -.055em; }
.product-copy > p:not(.product-label) { margin: 24px 0; color: var(--ink-soft); line-height: 1.65; }
.product-copy ul { display: grid; gap: 9px; margin: 0 0 28px; padding: 0; list-style: none; }
.product-copy li { position: relative; padding-left: 22px; font-size: .88rem; }
.product-copy li::before { content: "✓"; position: absolute; left: 0; color: #7258e4; font-size: .76rem; font-weight: 800; }
.text-link { align-self: flex-start; display: inline-flex; gap: 14px; padding-bottom: 4px; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--ink); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.product-visual { position: relative; min-height: 590px; overflow: hidden; background: linear-gradient(145deg, #eefbff, #f7effb 62%, #eeeafd); }
.product-visual::after { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.7); border-radius: 26px; }
.visual-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(84,70,158,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 390px; height: 390px; }
.orbit-two { width: 245px; height: 245px; border-style: dashed; animation: spin 32s linear infinite; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.agent-node { position: absolute; z-index: 2; display: grid; place-items: center; gap: 6px; background: rgba(255,255,255,.78); border: 1px solid rgba(34,28,66,.12); border-radius: 20px; box-shadow: 0 13px 32px rgba(48,38,91,.1); backdrop-filter: blur(12px); }
.agent-node span { color: #7559e7; }
.agent-node small { font-size: .67rem; font-weight: 650; }
.node-center { top: 50%; left: 50%; width: 125px; height: 125px; color: #fff; background: linear-gradient(145deg,#17181c,#363145); border-radius: 34px; transform: translate(-50%,-50%); }
.node-center span { color: #c6b9ff; font-size: 1.4rem; }
.node-one { top: 14%; left: 22%; width: 100px; height: 76px; }
.node-two { top: 23%; right: 12%; width: 100px; height: 76px; }
.node-three { bottom: 18%; left: 15%; width: 100px; height: 76px; }
.node-four { right: 19%; bottom: 12%; width: 100px; height: 76px; }
.protocol-core { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 180px; height: 180px; place-items: center; align-content: center; gap: 4px; color: #fff; background: #15161a; border: 14px solid rgba(255,255,255,.58); border-radius: 50%; box-shadow: 0 20px 50px rgba(27,23,54,.2); transform: translate(-50%,-50%); }
.protocol-core span { font-size: 2rem; font-weight: 720; letter-spacing: -.05em; }
.protocol-core small { color: #a9a6b5; font-size: .65rem; }
.protocol-node { position: absolute; z-index: 2; display: grid; width: 82px; height: 82px; place-items: center; background: rgba(255,255,255,.82); border: 1px solid rgba(34,28,66,.12); border-radius: 22px; box-shadow: 0 12px 32px rgba(48,38,91,.1); font-size: .68rem; font-weight: 750; }
.protocol-one { top: 14%; left: 16%; }.protocol-two { top: 18%; right: 13%; }.protocol-three { left: 12%; bottom: 14%; }.protocol-four { right: 18%; bottom: 11%; }
.protocol-line { position: absolute; z-index: 1; top: 50%; left: 50%; width: 70%; height: 1px; background: linear-gradient(90deg,transparent,#8068d5,transparent); transform-origin: center; }
.line-b { transform: translate(-50%,-50%) rotate(58deg); }.line-c { transform: translate(-50%,-50%) rotate(-55deg); }.line-a { transform: translate(-50%,-50%); }
.lab-visual { display: grid; grid-template-columns: repeat(2, 145px); align-content: center; justify-content: center; gap: 32px 65px; }
.lab-step { position: relative; z-index: 2; display: grid; height: 115px; place-items: center; align-content: center; gap: 7px; background: rgba(255,255,255,.82); border: 1px solid rgba(34,28,66,.12); border-radius: 25px; box-shadow: 0 12px 32px rgba(48,38,91,.1); }
.lab-step span { color: #775ce8; font-size: .6rem; }.lab-step strong { font-size: .95rem; }
.lab-track { position: absolute; top: 50%; left: 50%; width: 370px; height: 280px; border: 2px dashed rgba(112,83,224,.3); border-radius: 80px; transform: translate(-50%,-50%); }
.lab-pulse { position: absolute; width: 13px; height: 13px; background: #775ce8; border: 4px solid #fff; border-radius: 50%; box-shadow: 0 0 0 5px rgba(119,92,232,.18); animation: pulse-path 7s linear infinite; }
@keyframes pulse-path { 0% { top:-7px;left:60px } 25% { top:-7px;left:300px } 50% { top:267px;left:300px } 75% { top:267px;left:60px } 100% { top:-7px;left:60px } }

.products-intro { max-width:690px!important;margin:24px auto 0!important;color:var(--ink-soft);font-size:1rem!important;line-height:1.65!important; }
.os-stack { display:grid;grid-template-columns:minmax(320px,.78fr) minmax(530px,1.22fr);max-width:1180px;margin:0 auto;color:#f4f3f7;background:#101114;border:1px solid #101114;box-shadow:12px 12px 0 rgba(106,76,255,.12); }
.os-stack-copy { display:flex;min-width:0;flex-direction:column;background:#f7f7f3;border-right:1px solid rgba(255,255,255,.15);color:var(--ink); }
.os-layer-tabs { display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--line-strong); }
.os-layer-tabs button { display:grid;min-width:0;min-height:82px;align-content:center;gap:2px;padding:12px 10px;text-align:left;background:#efefea;border:0;border-right:1px solid var(--line);cursor:pointer;transition:color .2s ease,background .2s ease; }
.os-layer-tabs button:last-child { border-right:0; }.os-layer-tabs button span { color:#878d89;font-family:var(--mono);font-size:.46rem; }.os-layer-tabs button strong { font-size:.8rem;letter-spacing:-.02em; }.os-layer-tabs button small { overflow:hidden;color:#767d78;font-family:var(--mono);font-size:.39rem;letter-spacing:.04em;text-overflow:ellipsis;white-space:nowrap; }
.os-layer-tabs button[aria-selected="true"] { color:#fff;background:var(--signal); }.os-layer-tabs button[aria-selected="true"] span,.os-layer-tabs button[aria-selected="true"] small { color:rgba(255,255,255,.7); }
.os-copy-panels { display:grid;flex:1; }
.os-copy-panel { display:flex;min-height:535px;flex-direction:column;justify-content:center;padding:clamp(34px,4vw,58px);animation:panel-in .35s ease both; }
.os-copy-panel[hidden] { display:none; }.os-copy-panel h3 { margin:0;font-size:clamp(2rem,3.2vw,3.35rem);font-weight:570;line-height:1;letter-spacing:-.055em; }.os-copy-panel > p:not(.product-label) { margin:24px 0;color:var(--ink-soft);line-height:1.65; }
.os-copy-panel ul { display:grid;gap:9px;margin:0 0 30px;padding:0;list-style:none; }.os-copy-panel li { position:relative;padding-left:20px;font-size:.82rem; }.os-copy-panel li::before { content:"+";position:absolute;left:0;color:var(--signal);font-family:var(--mono);font-weight:800; }
.os-copy-panel .text-link { margin-top:auto; }

.os-stack-visual { position:relative;display:flex;min-width:0;min-height:618px;flex-direction:column;padding:18px 22px 20px;overflow:hidden;background-color:#141619;background-image:radial-gradient(rgba(255,255,255,.12) .7px,transparent .7px);background-size:11px 11px; }
.os-stack-visual::before { content:"";position:absolute;top:-20%;right:-25%;width:70%;aspect-ratio:1;background:radial-gradient(circle,rgba(106,76,255,.2),transparent 68%);pointer-events:none; }
.os-stack-head,.os-stack-console { position:relative;z-index:1;display:flex;min-height:38px;align-items:center;justify-content:space-between;gap:14px;padding:0 10px;background:rgba(20,22,25,.9);border:1px solid rgba(255,255,255,.15);font-family:var(--mono);font-size:.48rem;letter-spacing:.06em; }
.os-stack-head b { display:flex;align-items:center;gap:6px;color:#66d2a8;font-size:.45rem; }.os-stack-head b i,.os-stack-console > span i { width:6px;height:6px;background:#45c895;border-radius:50%;animation:system-live 1.8s ease-in-out infinite; }
.os-stack-inputs { position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin:12px 0; }
.os-stack-inputs span { display:grid;min-height:35px;place-items:center;color:#898f8c;background:rgba(20,22,25,.92);border:1px solid rgba(255,255,255,.12);font-family:var(--mono);font-size:.43rem; }
.os-layer { position:relative;z-index:1;display:grid;grid-template-columns:35px minmax(150px,1fr) auto;align-items:center;gap:12px;width:100%;min-height:83px;padding:12px 14px;text-align:left;color:#d5d7d5;background:rgba(23,25,28,.94);border:1px solid rgba(255,255,255,.17);cursor:pointer;transition:border-color .25s ease,background .25s ease,transform .25s ease,box-shadow .25s ease; }
.os-layer:hover,.os-layer:focus-visible { border-color:rgba(146,127,255,.85);outline:0; }.os-layer.is-active { color:#fff;background:linear-gradient(90deg,rgba(106,76,255,.28),rgba(23,25,28,.96) 72%);border-color:var(--signal-soft);box-shadow:inset 3px 0 0 var(--signal),0 0 22px rgba(106,76,255,.1);transform:translateX(3px); }
.os-layer-index { color:#8e9490;font-family:var(--mono);font-size:.5rem; }.os-layer.is-active .os-layer-index { color:#a99aff; }.os-layer-title { display:grid;gap:2px; }.os-layer-title strong { font-size:1.05rem;letter-spacing:-.025em; }.os-layer-title small { color:#858d89;font-size:.56rem; }.os-layer.is-active .os-layer-title small { color:#babdc0; }
.os-layer-modules { display:flex;gap:5px; }.os-layer-modules i { padding:6px 7px;color:#808783;background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.12);font-family:var(--mono);font-size:.38rem;font-style:normal;letter-spacing:.03em; }.os-layer.is-active .os-layer-modules i { color:#d8d4ff;border-color:rgba(146,127,255,.42); }
.os-flow-link { position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;align-items:center;gap:10px;height:32px;padding-left:35px; }.os-flow-link span { position:relative;height:1px;background:rgba(255,255,255,.16);overflow:hidden; }.os-flow-link span::after { content:"";position:absolute;top:0;left:-20%;width:18%;height:1px;background:var(--signal-soft);box-shadow:0 0 7px var(--signal);animation:os-flow 2.7s linear infinite; }.os-flow-link small { width:106px;color:#696f6c;font-family:var(--mono);font-size:.35rem;letter-spacing:.04em; }
@keyframes os-flow { to { left:105%; } }
.os-return-path { position:relative;z-index:1;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:8px;min-height:35px;color:#a99aff; }.os-return-path span { font-size:1.1rem; }.os-return-path i { height:1px;background:repeating-linear-gradient(90deg,var(--signal-soft) 0 4px,transparent 4px 9px);animation:return-flow 2.8s linear infinite; }.os-return-path small { font-family:var(--mono);font-size:.39rem;letter-spacing:.05em; }
@keyframes return-flow { to { background-position:-27px 0; } }
.os-stack-console { grid-template-columns:auto 1fr;justify-content:start;margin-top:auto; }.os-stack-console > span { display:flex;align-items:center;gap:6px;color:#777e7a;font-size:.43rem; }.os-stack-console strong { overflow:hidden;color:#c8cbc9;font-size:.48rem;font-weight:520;text-overflow:ellipsis;white-space:nowrap;transition:opacity .18s ease,transform .18s ease; }.os-stack-console strong.is-changing { opacity:.15;transform:translateX(5px); }

.research-section { position: relative; color: #f4f2f8; background: #121318; overflow: hidden; }
.research-glow { position: absolute; top: -60%; right: -25%; width: 80vw; height: 80vw; background: radial-gradient(circle, rgba(113,83,227,.34), transparent 63%); pointer-events: none; }
.research-heading { position: relative; display: grid; grid-template-columns: 1fr .62fr; align-items: end; gap: 80px; margin-bottom: 70px; }
.research-heading .eyebrow { color: #a29faa; }
.research-heading > p { color: #aaa8b2; }
.research-list { position: relative; border-top: 1px solid rgba(255,255,255,.18); }
.research-row { display: grid; grid-template-columns: 70px 1.5fr .8fr 24px; align-items: center; gap: 24px; min-height: 108px; color: inherit; border-bottom: 1px solid rgba(255,255,255,.16); text-decoration: none; transition: padding .2s ease, background .2s ease; }
.research-row:hover { padding-inline: 15px; background: rgba(255,255,255,.035); }
.research-row .research-year { color: #92909a; font-size: .72rem; }
.research-row strong { font-size: 1.03rem; font-weight: 550; }
.research-row > span:nth-child(3) { color: #98969f; font-size: .78rem; }
.research-row i { font-style: normal; transition: transform .2s ease; }.research-row:hover i { transform: translate(3px,-3px); }

.company-section { background: #fff; }
.mission-card { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; padding: clamp(38px,6vw,76px); background: linear-gradient(135deg,#eefaff,#f9f6f8 50%,#f1edff); border: 1px solid rgba(16,17,20,.08); border-radius: 34px; }
.mission-card .eyebrow { margin-bottom: 34px; }
.mission-copy { align-self: end; }
.mission-copy p { margin: 0; color: #55565e; font-size: 1.08rem; line-height: 1.7; }
.mission-copy p + p { margin-top: 18px; }
.people-heading { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 60px; margin: 110px 0 42px; }
.people-heading .eyebrow { margin-bottom: 20px; }
.people-heading h2 { font-size: clamp(2.5rem,4.2vw,4.2rem); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.person-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; min-height: 108px; padding: 18px; background: #f8f8f6; border: 1px solid var(--line); border-radius: 20px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.person-card:hover { background: #fff; transform: translateY(-4px); box-shadow: 0 14px 34px rgba(32,29,50,.09); }
.person-avatar { display: grid; width: 68px; height: 68px; place-items: center; color: rgba(21,22,26,.76); border-radius: 17px; font-weight: 720; letter-spacing: -.03em; }
.avatar-one { background: linear-gradient(145deg,#c3efff,#e3dfff); }.avatar-two { background: linear-gradient(145deg,#e5dbff,#ffdced); }.avatar-three { background: linear-gradient(145deg,#c7f3df,#dff2ff); }.avatar-four { background: linear-gradient(145deg,#ffe2c5,#efdfff); }.avatar-five { background: linear-gradient(145deg,#ffd5e8,#d7eeff); }.avatar-six { background: linear-gradient(145deg,#d8e5ff,#e7dbff); }
.person-card > span:nth-child(2) { display: grid; }.person-card strong { font-size: .96rem; }.person-card small { margin-top: 3px; color: #818087; font-size: .72rem; }.person-card i { display: grid; width: 28px; height: 28px; place-items: center; color: #fff; background: #111216; border-radius: 50%; font-size: .62rem; font-style: normal; font-weight: 700; }
.advisors { margin-top: 14px; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.advisors summary { display: flex; align-items: center; justify-content: space-between; min-height: 106px; padding: 24px 30px; cursor: pointer; list-style: none; }
.advisors summary::-webkit-details-marker { display:none; }
.advisors summary > span:first-child { display: grid; font-size: 1.24rem; font-weight: 650; }.advisors summary small { color:#89888f;font-size:.6rem;letter-spacing:.1em;text-transform:uppercase; }
.summary-action { display:flex;align-items:center;gap:18px;color:#69686f;font-size:.78rem; }.summary-action i { display:grid;width:36px;height:36px;place-items:center;background:#f2f1ef;border-radius:50%;font-style:normal;font-size:1.25rem;transition:transform .25s ease; }
.advisors[open] .summary-action i { transform:rotate(45deg); }
.advisor-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1px;padding:1px 0 0;background:var(--line);border-top:1px solid var(--line); }
.advisor-grid article { min-height:180px;padding:25px;background:#fff; }.advisor-grid strong,.advisor-grid small { display:block; }.advisor-grid small { margin:4px 0 18px;color:#755be1;font-size:.65rem;text-transform:uppercase;letter-spacing:.07em; }.advisor-grid p { margin:0;color:#6b6a71;font-size:.8rem;line-height:1.6; }

.blog-section { background:#fff; }
.blog-heading { display:flex;align-items:end;justify-content:space-between;gap:42px;margin-bottom:48px; }
.blog-heading .eyebrow { margin-bottom:20px; }
.blog-heading h2 { margin:0;max-width:760px;font-size:clamp(2.5rem,4.8vw,4.8rem);font-weight:520;line-height:.98;letter-spacing:-.065em; }
.blog-feature { display:grid;grid-template-columns:1.12fr .88fr;min-height:510px;color:var(--ink);background:#f5f3fa;border:1px solid var(--line);border-radius:32px;overflow:hidden;text-decoration:none;box-shadow:0 24px 75px rgba(42,37,75,.08);transition:transform .28s ease,box-shadow .28s ease; }
.blog-feature:hover { transform:translateY(-7px);box-shadow:0 34px 90px rgba(42,37,75,.15); }
.blog-feature-art { position:relative;display:grid;min-height:510px;place-items:center;overflow:hidden;color:#fff;background:radial-gradient(circle at 72% 25%,rgba(240,143,197,.62),transparent 30%),radial-gradient(circle at 22% 82%,rgba(85,201,244,.36),transparent 35%),linear-gradient(145deg,#11121a,#3a2c72 55%,#7459e6); }
.blog-grid-lines { position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);background-size:52px 52px;mask-image:linear-gradient(to bottom right,#000,transparent 80%); }
.blog-feature-art::before,.blog-feature-art::after { content:"";position:absolute;border:1px solid rgba(255,255,255,.24);border-radius:50%; }
.blog-feature-art::before { width:55%;aspect-ratio:1; }
.blog-feature-art::after { width:78%;aspect-ratio:1;border-style:dashed;animation:spin 35s linear infinite; }
.blog-feature-art i { position:relative;z-index:1;font-size:clamp(5rem,10vw,9.6rem);font-style:normal;font-weight:620;letter-spacing:-.09em; }
.blog-feature-art b { position:absolute;z-index:1;right:32px;bottom:32px;font-size:.65rem;font-weight:720;line-height:1.35;letter-spacing:.08em;text-align:right;text-transform:uppercase; }
.blog-feature-art small { position:absolute;z-index:1;top:30px;left:30px;font-size:.62rem;font-weight:720;letter-spacing:.12em; }
.blog-feature-copy { display:flex;flex-direction:column;justify-content:center;padding:clamp(38px,5vw,72px);background:linear-gradient(145deg,#fff,#f5f1fb); }
.blog-feature-copy .news-meta { margin:0 0 24px; }
.blog-feature-copy strong { font-size:clamp(2rem,3.4vw,3.8rem);font-weight:520;line-height:1.03;letter-spacing:-.055em; }
.blog-feature-copy p { margin:25px 0;color:var(--ink-soft);font-size:1rem;line-height:1.7; }
.blog-feature-copy .card-link { margin-top:auto;padding-top:22px;font-size:.78rem;font-weight:720; }

.news-section { background:#f2f1f7;overflow:hidden; }
.news-heading { display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:48px; }.news-heading .eyebrow { margin-bottom:20px; }.news-heading h2 { font-size:clamp(2.5rem,4.8vw,4.8rem); }
.news-controls { display:flex;gap:8px; }.news-controls button { width:48px;height:48px;background:rgba(255,255,255,.75);border:1px solid var(--line);border-radius:50%;cursor:pointer;transition:background .2s ease,transform .2s ease; }.news-controls button:hover { background:#fff;transform:translateY(-2px); }
.news-track { display:grid;grid-auto-flow:column;grid-auto-columns:minmax(330px,1fr);gap:16px;overflow-x:auto;overscroll-behavior-inline:contain;scroll-snap-type:inline mandatory;scrollbar-width:none;padding-bottom:20px; }.news-track::-webkit-scrollbar { display:none; }
.news-card { display:flex;flex-direction:column;min-height:530px;padding:12px 12px 26px;background:#fff;border:1px solid var(--line);border-radius:25px;text-decoration:none;scroll-snap-align:start;transition:transform .25s ease,box-shadow .25s ease; }.news-card:hover { transform:translateY(-7px);box-shadow:0 22px 55px rgba(42,37,75,.12); }
.news-art { position:relative;display:flex;height:240px;padding:25px;align-items:center;justify-content:center;overflow:hidden;border-radius:17px;font-style:normal; }.news-art::after { content:"";position:absolute;inset:20%;border:1px solid rgba(255,255,255,.55);border-radius:50%; }.news-art i,.news-art b { position:relative;z-index:1;font-style:normal; }.news-art i { font-size:clamp(2.2rem,4vw,4.6rem);font-weight:650;letter-spacing:-.06em; }.news-art b { position:absolute;right:20px;bottom:18px;font-size:.68rem;letter-spacing:.08em; }
.art-one { color:#fff;background:linear-gradient(140deg,#1b1532,#795dea 55%,#ff9bcf); }.art-two { background:linear-gradient(145deg,#c6efff,#f8e7ee); }.art-three { background:linear-gradient(145deg,#16171b,#3d2c75);color:#fff; }.art-four { background:linear-gradient(145deg,#d8f5e8,#e6ddff); }
.news-meta { margin:23px 12px 10px;color:#7d7c84;font-size:.66rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase; }.news-card h3 { margin:0 12px;font-size:1.37rem;line-height:1.16;letter-spacing:-.035em; }.news-card p { margin:14px 12px;color:#6a6970;font-size:.84rem;line-height:1.6; }.card-link { margin:auto 12px 0;font-size:.75rem;font-weight:700; }

.closing-section { position:relative;padding:clamp(86px,9vw,124px) 0;overflow:hidden;background:linear-gradient(135deg,#e9faff,#f7f5f3 45%,#f4eafa);text-align:center; }
.closing-glow { position:absolute;inset:-70%;background:conic-gradient(from 180deg at 50% 50%,transparent,#93e2ff33,transparent,#e798dd44,transparent);animation:closing-spin 24s linear infinite; }
@keyframes closing-spin { to { transform:rotate(360deg); } }
.closing-inner { position:relative;z-index:1; }.closing-inner h2 { max-width:1000px;margin:0 auto;font-size:clamp(3.1rem,6.4vw,6.5rem);font-weight:520;line-height:.95;letter-spacing:-.07em; }.closing-inner > p:not(.eyebrow) { max-width:620px;margin:28px auto 0;color:#65646b;font-size:1.06rem; }

/* Sharper DeltaWaveOS system language */
.product-window,.workflow-grid,.product-tabs,.product-panel,.mission-card,.person-card,.advisors,.blog-feature,.news-card,.news-art { border-radius:var(--radius);box-shadow:none; }
.product-window { margin-top:92px;border-color:var(--line-strong);box-shadow:9px 9px 0 rgba(13,18,21,.05); }
.eve-demo-rail button,.eve-user-prompt,.eve-agent-summary,.eve-agent-icon,.eve-task-list button,.eve-task-list button>span,.eve-composer,.viewer-controls button,.workflow-node { border-radius:3px; }
.artifact-status,.workflow-console small,.eve-thread-heading>span { border-radius:2px; }
.workflow-card:hover { background:#fff;border-radius:0;box-shadow:inset 0 3px 0 var(--signal);transform:none; }
.workflow-number { color:var(--signal);font-family:var(--mono);letter-spacing:.08em; }
.workflow-icon { border-radius:2px;background:#f0f0eb;border-color:var(--line-strong); }
.products-section { background:#ecece7;border-top:1px solid var(--line); }
.product-tabs { max-width:720px;padding:0;background:var(--panel);border-color:var(--line-strong); }
.product-tabs button { min-height:56px;border-right:1px solid var(--line);border-radius:0;font-family:var(--mono);font-size:.72rem; }
.product-tabs button:last-child { border-right:0; }
.product-tabs button[aria-selected="true"] { background:var(--signal);box-shadow:none; }
.product-panel { border-color:var(--line-strong); }
.product-label { color:var(--signal);font-family:var(--mono); }
.product-copy li::before { color:var(--signal); }
.product-visual { background-color:#edeee9;background-image:radial-gradient(rgba(13,18,21,.17) .8px,transparent .8px);background-size:13px 13px; }
.product-visual::after { inset:20px;border-color:var(--line);border-radius:2px; }
.agent-node,.node-center,.protocol-node,.lab-step { border-radius:3px;box-shadow:4px 4px 0 rgba(13,18,21,.06);backdrop-filter:none; }
.node-center { background:var(--ink); }.agent-node span,.lab-step span { color:var(--signal); }
.protocol-core { border-radius:3px;border-width:8px;box-shadow:6px 6px 0 rgba(13,18,21,.08); }
.lab-track { border-radius:3px; }
.research-glow { background:linear-gradient(115deg,rgba(106,76,255,.22),transparent 56%); }
.company-section { background:var(--paper);border-top:1px solid var(--line);border-bottom:1px solid var(--line); }
.mission-card { background:var(--panel);border-color:var(--line-strong); }
.person-card { background:var(--panel); }.person-card:hover { border-color:var(--signal);box-shadow:4px 4px 0 rgba(106,76,255,.12);transform:none; }
.person-avatar { border-radius:2px; }.avatar-one,.avatar-four { background:#dfe5ff; }.avatar-two,.avatar-five { background:#e9e5ff; }.avatar-three,.avatar-six { background:#dff1e9; }
.person-card i,.summary-action i { border-radius:2px; }.advisor-grid small { color:var(--signal); }
.blog-feature { border-color:var(--line-strong); }.blog-feature:hover { box-shadow:7px 7px 0 rgba(13,18,21,.07);transform:none; }
.blog-feature-art { background-color:#101514;background-image:radial-gradient(rgba(255,255,255,.2) .8px,transparent .8px);background-size:11px 11px; }
.blog-feature-copy { background:var(--panel); }
.news-section { background:#ecece7; }.news-card:hover { border-color:var(--signal);box-shadow:5px 5px 0 rgba(106,76,255,.1);transform:none; }
.news-controls button { border-radius:3px; }.news-art::after { border-radius:3px;inset:17%; }
.art-one { background:var(--signal); }.art-two { background:#dce2ff; }.art-three { background:#101514; }.art-four { background:#dcefe6; }
.closing-section { background-color:var(--paper);background-image:radial-gradient(rgba(13,18,21,.12) .8px,transparent .8px);background-size:13px 13px;border-top:1px solid var(--line); }
.closing-glow { display:none; }.closing-inner h2 { font-weight:590; }

.site-footer { padding:70px 0 24px;color:#ececf0;background:#111216; }.footer-grid { display:grid;grid-template-columns:1fr 1.2fr .55fr .55fr;gap:60px;align-items:start; }.footer-brand { display:block;width:190px;margin-top:-34px;text-decoration:none; }.footer-brand img { width:100%; }.footer-grid > p { max-width:350px;margin:0;color:#94939d;font-size:.88rem;line-height:1.6; }.footer-links { display:grid;gap:10px; }.footer-links a { color:#b4b2bc;font-size:.82rem;text-decoration:none; }.footer-links a:hover { color:#fff; }.footer-bottom { display:flex;justify-content:space-between;margin-top:70px;padding-top:18px;color:#74737c;border-top:1px solid rgba(255,255,255,.13);font-size:.68rem; }

.js .reveal { opacity:0;transform:translateY(28px);transition:opacity .7s cubic-bezier(.2,.7,.2,1),transform .7s cubic-bezier(.2,.7,.2,1); }.js .reveal.in-view { opacity:1;transform:none; }.workflow-card:nth-child(2),.team-grid .person-card:nth-child(2) { transition-delay:.08s; }.workflow-card:nth-child(3),.team-grid .person-card:nth-child(3) { transition-delay:.16s; }.workflow-card:nth-child(4),.team-grid .person-card:nth-child(4) { transition-delay:.24s; }.team-grid .person-card:nth-child(5) { transition-delay:.32s; }.team-grid .person-card:nth-child(6) { transition-delay:.4s; }

@media (max-width: 1050px) {
  .site-nav { gap:18px; }.site-nav > a { font-size:.82rem; }.nav-login { display:none; }
  .hero-stage { grid-template-columns:1fr;gap:64px;min-height:auto; }.hero-intro { max-width:880px; }.system-field { width:min(100%,820px);min-height:540px; }
  .product-window { margin-inline:20px; }.eve-demo-topbar,.eve-demo-body { grid-template-columns:52px minmax(0,1fr) minmax(380px,46%); }
  .control-grid { grid-template-columns:repeat(2,1fr); }.control-card:last-child { grid-column:1/-1;min-height:410px; }.control-card:last-child h3 { max-width:560px; }.deployment-module { grid-template-columns:1fr; }.deployment-copy { min-height:520px;border-right:0;border-bottom:1px solid rgba(255,255,255,.14); }
  .workflow-grid { grid-template-columns:repeat(2,1fr); }.workflow-card { border-bottom:1px solid var(--line); }.workflow-card:nth-child(2) { border-right:0; }.workflow-card:nth-child(3),.workflow-card:nth-child(4) { border-bottom:0; }
  .journey-track { grid-template-columns:repeat(2,1fr);gap:1px; }.journey-track::before,.journey-track::after { display:none; }.journey-stage { min-height:350px;border-right:1px solid rgba(255,255,255,.17); }.journey-stage.is-active { transform:none; }
  .product-panel { grid-template-columns:1fr; }.product-copy { padding:50px; }.product-visual { min-height:500px; }.product-panels,.product-panel { min-height:auto; }
  .os-stack { grid-template-columns:1fr;max-width:840px; }.os-stack-copy { border-right:0;border-bottom:1px solid rgba(255,255,255,.15); }.os-copy-panel { min-height:460px; }.os-stack-visual { min-height:610px; }
  .team-grid { grid-template-columns:repeat(2,1fr); }.footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 800px) {
  :root { --shell:min(100% - 32px,1280px);--radius:3px; }
  html { scroll-padding-top:78px; }
  .site-header,.site-header.scrolled { padding:14px 0;backdrop-filter:none;-webkit-backdrop-filter:none; }.content-site .site-header { background:rgba(247,247,244,.96); }.brand { transform:scale(.9);transform-origin:left center; }
  .menu-toggle { position:relative;z-index:102;display:grid;width:44px;height:44px;place-items:center;background:#fff;border:1px solid var(--line);border-radius:3px;cursor:pointer; }
  .menu-toggle span:not(.sr-only) { position:absolute;width:17px;height:1.5px;background:#111;transition:transform .2s ease; }.menu-toggle span:nth-child(2) { transform:translateY(-3px); }.menu-toggle span:nth-child(3) { transform:translateY(3px); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform:rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform:rotate(-45deg); }
  .site-nav { position:fixed;inset:0;z-index:101;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:80px 32px;background:rgba(247,247,244,.97);backdrop-filter:blur(18px);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-100vh);transition:transform .35s cubic-bezier(.2,.8,.2,1),opacity .25s ease,visibility 0s linear .35s; }.site-nav.open { opacity:1;visibility:visible;pointer-events:auto;transform:none;transition-delay:0s; }.site-nav > a { font-size:clamp(1.8rem,8vw,3rem);letter-spacing:-.05em; }.site-nav .nav-login { display:block;margin:0; }.site-nav .nav-cta { margin-top:10px;color:#fff;font-size:1rem;letter-spacing:0; }
  .hero { min-height:auto;padding:112px 0 70px; }.hero h1 { font-size:clamp(3.5rem,15vw,5.8rem); }.hero-copy { margin-top:26px; }.hero-stage { gap:54px; }.system-field { min-height:500px;box-shadow:6px 6px 0 rgba(13,18,21,.05); }.system-node { width:155px;padding:10px 12px; }.product-window { margin:65px 0 0; }
  .eve-demo-topbar { grid-template-columns:50px minmax(0,1fr); }.eve-demo-brand { grid-column:1;grid-row:1; }.eve-demo-project { grid-column:2;grid-row:1; }.eve-artifact-tabs { grid-column:1/-1;grid-row:2;min-height:52px;border-top:1px solid var(--eve-line);border-left:0; }
  .eve-demo-body { grid-template-columns:50px minmax(0,1fr); }.eve-demo-rail { grid-column:1;grid-row:1; }.eve-thread-pane { grid-column:2;grid-row:1;min-height:480px;border-right:0; }.eve-artifact-pane { grid-column:1/-1;grid-row:2;border-top:1px solid var(--eve-line); }.eve-artifact-idle,.eve-artifact-panel { min-height:570px; }.eve-viewer { min-height:345px; }.protein-video,.molecule-stage { height:345px; }
  .support-strip { padding:34px 0; }.support-inner { grid-template-columns:1fr;gap:22px; }.support-inner>p br { display:none; }.logo-row { width:calc(100% + 16px);margin-right:-16px;mask-image:linear-gradient(90deg,#000 0,#000 88%,transparent);-webkit-mask-image:linear-gradient(90deg,#000 0,#000 88%,transparent); }.logo-track { animation-duration:32s; }.logo-sequence { --support-gap:34px; }.logo-row img { flex-basis:112px;width:112px;height:48px;max-height:48px; }.logo-row .support-logo-cnrs { transform:scale(1.2); }.logo-row .support-logo-nvidia { transform:scale(1.12); }
  .section { padding:68px 0; }.section-heading,.research-heading,.mission-card,.people-heading,.sovereignty-heading { grid-template-columns:1fr;gap:28px; }.section-heading .eyebrow { margin-bottom:0; }.section-heading { margin-bottom:42px; }.section-heading h2,.research-heading h2,.mission-card h2,.sovereignty-heading h2 { font-size:clamp(2.7rem,11vw,4.2rem); }.sovereignty-heading { margin-bottom:42px; }.control-grid { grid-template-columns:1fr; }.control-card,.control-card:last-child { grid-column:auto;min-height:420px; }.deployment-copy { min-height:auto; }.deployment-console { padding:14px; }
  .product-tabs { border-radius:3px; }.product-tabs button { flex-direction:column;gap:0;min-height:56px;border-radius:0; }.product-copy { padding:36px 28px; }.product-visual { min-height:410px; }.product-panel { border-radius:3px; }.orbit-one { width:320px;height:320px; }.orbit-two { width:205px;height:205px; }.node-center { width:105px;height:105px; }.agent-node:not(.node-center) { width:82px;height:65px; }.lab-visual { grid-template-columns:repeat(2,120px);gap:30px; }.lab-track { width:290px;height:260px; }
  .os-copy-panel { min-height:430px;padding:34px 28px; }.os-stack-visual { min-height:590px;padding:15px; }.os-layer { grid-template-columns:30px 1fr; }.os-layer-modules { display:none; }
  .journey-console { box-shadow:6px 6px 0 rgba(106,76,255,.12); }.journey-stage { min-height:330px; }.journey-visual { margin-top:34px; }
  .research-heading { margin-bottom:45px; }.research-row { grid-template-columns:55px 1fr 20px;gap:12px;min-height:115px; }.research-row>span:nth-child(3) { display:none; }
  .mission-card { padding:34px 26px; }.people-heading { margin:75px 0 32px; }.team-grid { grid-template-columns:1fr; }.advisor-grid { grid-template-columns:1fr; }.advisors summary { padding:20px; }.summary-action { font-size:0; }.summary-action i { font-size:1.2rem; }
  .blog-heading { align-items:start;flex-direction:column;gap:22px; }.blog-feature { grid-template-columns:1fr; }.blog-feature-art { min-height:390px; }.blog-feature-copy { min-height:400px; }
  .news-track { grid-auto-columns:min(83vw,360px); }.news-controls { display:none; }
  .footer-grid { grid-template-columns:1fr;gap:30px; }.footer-bottom { flex-direction:column;gap:6px;margin-top:45px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size:3.55rem; }.hero-actions { flex-direction:column;align-items:stretch; }.hero-actions .button { width:100%; }.hero-proof { display:grid;grid-template-columns:1fr 1fr; }.system-field { min-height:430px; }.system-field-head { font-size:.48rem; }.system-field-head span:first-child { max-width:180px; }.system-node { width:116px;padding:8px 9px; }.system-node strong { font-size:.72rem; }.system-node span { display:none; }.system-node-eve { top:15%;left:50%; }.system-node-pcp { bottom:13%;left:3%; }.system-node-lab { right:3%;bottom:13%; }.system-ledger { justify-content:flex-start;gap:13px;font-size:.43rem; }.system-ledger span:nth-child(2) { display:none; }.system-ledger-model i { width:17px;height:17px; }.product-window { border-radius:3px; }
  .eve-demo-project { padding:0 11px; }.eve-demo-project > span { display:none; }.eve-artifact-tabs button { gap:4px;padding-inline:4px;font-size:.53rem; }.eve-artifact-tabs button span { font-size:.68rem; }
  .eve-demo-body { grid-template-columns:1fr; }.eve-demo-rail { display:none; }.eve-thread-pane { grid-column:1;min-height:500px;padding:14px; }.eve-user-prompt { margin-left:20px; }.eve-agent-summary p { font-size:.49rem; }.eve-task-list button { grid-template-columns:auto 1fr; }.eve-task-list button > i { display:none; }.eve-artifact-pane { grid-column:1; }.eve-artifact-idle,.eve-artifact-panel { min-height:540px; }.eve-artifact-idle { padding:28px 20px; }.eve-viewer { min-height:300px; }.protein-video,.molecule-stage { height:300px; }.molecule-detail-grid > div,.structure-summary > div { padding:10px 8px; }.workflow-map-shell { height:620px; }.workflow-map-desktop { display:none; }.workflow-map-mobile { display:block; }.workflow-viewer { min-height:620px; }
  .control-card { min-height:390px;padding:24px; }.model-router,.context-ledger { margin-top:36px; }.model-symbol { min-height:72px; }.deployment-tabs { grid-template-columns:1fr; }.deployment-tabs button { border-left:1px solid rgba(255,255,255,.18); }.deployment-frame { min-height:620px;padding:12px; }.deployment-scene { min-height:590px; }.deployment-cloud-grid,.airgap-local-grid { grid-template-columns:repeat(2,1fr); }.deployment-boundary { grid-template-columns:1fr;gap:7px; }.deployment-boundary i { width:1px;height:15px;margin:auto; }.deployment-boundary i::after { right:-2px;bottom:-1px;top:auto; }.workflow-grid { grid-template-columns:1fr; }.workflow-card { min-height:310px;border-right:0;border-bottom:1px solid var(--line)!important; }.workflow-card:last-child { border-bottom:0!important; }.workflow-icon { margin-top:40px; }
  .product-tabs button span { display:none; }.product-visual { min-height:350px; }.orbit-one { width:280px;height:280px; }.node-one { top:10%;left:7%; }.node-two { top:16%;right:5%; }.node-three { bottom:13%;left:7%; }.node-four { bottom:8%;right:7%; }.protocol-core { width:140px;height:140px; }.protocol-node { width:65px;height:65px;border-radius:17px; }.lab-visual { grid-template-columns:repeat(2,105px);gap:25px; }.lab-track { width:250px;height:235px; }.lab-step { height:96px; }
  .os-layer-tabs button { min-height:70px;padding:9px 7px; }.os-layer-tabs button small { display:none; }.os-copy-panel { min-height:450px;padding:30px 24px; }.os-stack { box-shadow:6px 6px 0 rgba(106,76,255,.12); }.os-stack-visual { min-height:560px;padding:11px; }.os-stack-head { font-size:.4rem; }.os-stack-inputs span { font-size:.37rem; }.os-layer { min-height:78px;padding:10px; }.os-layer-title small { font-size:.49rem; }.os-flow-link { padding-left:25px; }.os-flow-link small { width:90px;font-size:.31rem; }.os-stack-console strong { font-size:.42rem; }
  .journey-track { grid-template-columns:1fr;padding:11px; }.journey-stage { min-height:300px;border-right:1px solid rgba(255,255,255,.17); }.journey-console-head { font-size:.42rem; }.journey-console-foot { grid-template-columns:auto 1fr; }.journey-console-foot small { display:none; }.journey-loop small { font-size:.34rem; }
  .person-avatar { width:58px;height:58px; }.person-card { padding:14px; }.news-card { min-height:500px; }.news-art { height:210px; }
  .blog-feature,.blog-feature-art { min-height:330px; }.blog-feature-copy { min-height:390px;padding:32px 25px; }.blog-feature-art::before { width:62%; }.blog-feature-art::after { width:92%; }.blog-feature-art b { right:22px;bottom:22px; }.blog-feature-art small { top:22px;left:22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important; }
  .js .reveal { opacity:1;transform:none; }
  .logo-row { overflow-x:auto;mask-image:none;-webkit-mask-image:none;scrollbar-width:thin; }
  .logo-track { animation:none!important;transform:none!important; }
  .logo-sequence[aria-hidden="true"] { display:none; }
}
