:root {
  --ink: #101114;
  --ink-soft: #5f626b;
  --paper: #f7f7f4;
  --white: #fff;
  --line: rgba(16, 17, 20, .12);
  --line-strong: rgba(16, 17, 20, .2);
  --violet: #7b5cff;
  --blue: #55c9f4;
  --pink: #f08fc5;
  --mint: #b6f0d8;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(34, 31, 72, .12);
  --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(--violet); }

.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: 99px;
  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(247, 247, 244, .82);
  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(--violet); }
.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: 999px;
  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(-2px); }
.button-dark { color: #fff; background: #101114; box-shadow: 0 8px 26px rgba(16, 17, 20, .13); }
.button-dark:hover { box-shadow: 0 12px 34px rgba(16, 17, 20, .22); }
.button-light { color: var(--ink); background: rgba(255, 255, 255, .7); border-color: var(--line); }
.button-light:hover { background: #fff; border-color: var(--line-strong); }
.nav-cta { min-height: 42px; padding-inline: 18px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 30%, rgba(255, 255, 255, .92), transparent 27%),
    linear-gradient(140deg, #edf9fc 0%, #f8f7f5 33%, #f8eff9 68%, #f2f0fb 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 52vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
  transform: translate3d(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 18px), 0);
  transition: transform .2s linear;
}
.hero-glow-one { top: -31vw; left: -15vw; background: #97e4ff; }
.hero-glow-two { top: -34vw; right: -18vw; background: #eda7ef; transform: translate3d(calc(var(--mx, 0) * -18px), calc(var(--my, 0) * -18px), 0); }
.hero-inner { position: relative; z-index: 1; text-align: center; }
.eyebrow {
  margin: 0 0 22px;
  color: #5e5d66;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(4rem, 7.4vw, 7.25rem);
  font-weight: 520;
  line-height: .91;
  letter-spacing: -.075em;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(94deg, #4fbcdf 10%, #795cff 47%, #d46fab 90%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy {
  max-width: 700px;
  margin: 34px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.product-window {
  position: relative;
  max-width: 1100px;
  margin: 86px auto 0;
  text-align: left;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(16, 17, 20, .12);
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(64, 48, 100, .18), 0 3px 8px rgba(20, 18, 30, .05);
  backdrop-filter: blur(24px);
}
.window-chrome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; background: #c9c9cd; border-radius: 50%; }
.window-address {
  min-width: 270px;
  padding: 6px 16px;
  color: #6a6970;
  background: rgba(235, 235, 238, .8);
  border-radius: 99px;
  font-size: .78rem;
  text-align: center;
}
.window-status { justify-self: end; display: flex; align-items: center; gap: 7px; color: #696970; font-size: .72rem; }
.window-status i { width: 7px; height: 7px; background: #63c991; border-radius: 50%; box-shadow: 0 0 0 4px rgba(99, 201, 145, .14); }
.workspace-preview { display: flex; min-height: 490px; }
.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  padding: 16px 0;
  gap: 12px;
  background: rgba(245, 245, 247, .88);
  border-right: 1px solid var(--line);
  border-radius: 0 0 0 22px;
}
.preview-mini-mark { margin-bottom: 10px; color: var(--violet); font-size: 1.15rem; font-weight: 800; }
.sidebar-item, .sidebar-avatar { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: #76757d; font-size: .82rem; }
.sidebar-item.active { color: #654ad8; background: #ebe7ff; }
.sidebar-spacer { flex: 1; }
.sidebar-avatar { color: #fff; background: #16171a; font-size: .58rem; font-weight: 700; }
.preview-main { flex: 1; min-width: 0; padding: 22px; }
.preview-topline { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.preview-topline > div { display: grid; gap: 4px; }
.preview-topline strong { font-size: .96rem; }
.preview-kicker { color: #8a8990; font-size: .56rem; letter-spacing: .13em; }
.preview-topline button { padding: 8px 12px; color: #73727a; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: .67rem; }
.preview-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; padding-top: 18px; }
.agent-thread, .result-panel { min-width: 0; min-height: 385px; padding: 16px; background: rgba(249, 249, 250, .9); border: 1px solid var(--line); border-radius: 14px; }
.thread-heading, .result-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: #696870; font-size: .68rem; }
.agent-count { color: #634bd2; }
.message { padding: 12px 13px; border-radius: 10px; font-size: .69rem; line-height: 1.4; }
.user-message { margin-left: 35px; background: #eeebff; }
.agent-message { display: flex; gap: 10px; margin-top: 12px; background: #fff; border: 1px solid var(--line); }
.message-avatar { display: grid; flex: 0 0 25px; width: 25px; height: 25px; place-items: center; color: #fff; background: linear-gradient(140deg, #61c9e8, #8063e8); border-radius: 7px; font-weight: 700; }
.message p { margin: 3px 0 0; color: #717078; }
.task-list { display: grid; gap: 7px; margin-top: 14px; }
.task-list > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; padding: 9px; background: #fff; border: 1px solid var(--line); border-radius: 9px; font-size: .59rem; }
.task-list p { display: grid; margin: 0; }
.task-list small { color: #929098; }
.task-state { width: 16px; height: 16px; border: 1px solid #d3d2d8; border-radius: 50%; }
.task-state.done { display: grid; place-items: center; color: #fff; background: #5fc68c; border-color: #5fc68c; font-size: .48rem; }
.task-state.live { border: 4px solid #dcd6ff; background: #7659ee; }
.result-panel { background: linear-gradient(150deg, #fbfbff, #f8f4fb); }
.molecule-stage { display: grid; height: 195px; place-items: center; color: #33323a; background: radial-gradient(circle at center, rgba(128, 99, 232, .09), transparent 58%); }
.molecule-stage svg { width: min(100%, 380px); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.metric-grid > div { display: grid; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 9px; }
.metric-grid span, .metric-grid small { color: #929098; font-size: .5rem; }
.metric-grid strong { font-size: .84rem; }
.result-note { margin-top: 10px; padding: 9px 10px; color: #684ecb; background: #eeebff; border-radius: 8px; font-size: .57rem; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 15px; background: rgba(255,255,255,.88); border: 1px solid rgba(16,17,20,.1); border-radius: 14px; box-shadow: 0 14px 38px rgba(43,35,75,.14); backdrop-filter: blur(14px); font-size: .69rem; }
.floating-card-left { left: -58px; bottom: 82px; }
.floating-card-left span { display: grid; width: 28px; height: 28px; place-items: center; color: #624bd0; background: #ede9ff; border-radius: 50%; font-size: .56rem; }
.floating-card-right { right: -58px; top: 120px; }
.floating-card-right i { width: 9px; height: 9px; background: #65ce93; border-radius: 50%; box-shadow: 0 0 0 5px rgba(101,206,147,.15); }

.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 { display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: clamp(22px, 4vw, 62px); }
.logo-row img { width: 100%; max-height: 38px; object-fit: contain; filter: grayscale(1); opacity: .48; transition: filter .2s ease, opacity .2s ease; }
.logo-row img:hover { filter: grayscale(0); opacity: .85; }

.section { padding: clamp(92px, 11vw, 156px) 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; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.workflow-card { position: relative; min-height: 390px; padding: 28px; background: #fbfbf9; border-right: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.workflow-card:last-child { border-right: 0; }
.workflow-card:hover { z-index: 1; background: linear-gradient(150deg, #fff, #f5f0ff); transform: translateY(-8px); box-shadow: var(--shadow); border-radius: 20px; }
.workflow-number { color: #919096; font-size: .65rem; }
.workflow-icon { display: grid; width: 68px; height: 68px; margin-top: 75px; place-items: center; font-size: 1.5rem; background: linear-gradient(145deg, #edfaff, #f4eaff); border: 1px solid rgba(123,92,255,.12); border-radius: 20px; }
.workflow-card h3 { margin: 32px 0 10px; font-size: 1.38rem; letter-spacing: -.035em; }
.workflow-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.6; }

.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 } }

.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; }

.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(110px,14vw,190px) 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; }

.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; }
  .floating-card { display:none; }.product-window { margin-inline:20px; }
  .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; }
  .product-panel { grid-template-columns:1fr; }.product-copy { padding:50px; }.product-visual { min-height:500px; }.product-panels,.product-panel { min-height:auto; }
  .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:22px; }
  html { scroll-padding-top:78px; }
  .site-header { padding:14px 0; }.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:50%;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);transform:translateY(-105%);transition:transform .35s cubic-bezier(.2,.8,.2,1); }.site-nav.open { transform:none; }.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:125px 0 70px; }.hero::after { inset:6px;border-radius:24px; }.hero h1 { font-size:clamp(3.5rem,15vw,5.8rem); }.hero-copy { margin-top:26px; }.product-window { margin:65px 0 0; }.window-status { display:none; }.window-chrome { grid-template-columns:1fr auto; }.window-address { min-width:0; }.workspace-preview { min-height:430px; }.preview-sidebar { width:50px; }.preview-main { padding:14px; }.preview-grid { grid-template-columns:1fr; }.result-panel { display:none; }.agent-thread { min-height:350px; }
  .support-inner { grid-template-columns:1fr;gap:28px; }.support-inner>p br { display:none; }.logo-row { grid-template-columns:repeat(3,1fr);gap:30px; }.logo-row img { max-height:30px; }
  .section { padding:85px 0; }.section-heading,.research-heading,.mission-card,.people-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 { font-size:clamp(2.7rem,11vw,4.2rem); }
  .product-tabs { border-radius:20px; }.product-tabs button { flex-direction:column;gap:0;min-height:56px;border-radius:16px; }.product-copy { padding:36px 28px; }.product-visual { min-height:410px; }.product-panel { border-radius:24px; }.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; }
  .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; }
  .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%; }.product-window { border-radius:16px; }.window-chrome { min-height:46px;padding:0 10px; }.window-address { font-size:.65rem; }.workspace-preview { min-height:395px; }.preview-sidebar { display:none; }.preview-topline button { display:none; }.message { font-size:.64rem; }.task-list>div { grid-template-columns:auto 1fr; }.task-list>div>span:last-child { display:none; }
  .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; }
  .person-avatar { width:58px;height:58px; }.person-card { padding:14px; }.news-card { min-height:500px; }.news-art { height:210px; }
}

@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; }
}
